/* Generated by tools/build-theme-css.py. Do not edit directly. */
.cb-course-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: livePulse 2s ease infinite;
}

/* Prototype-matched inner page sections */
.sub-hero {
  background: var(--navy-deep);
  padding: 72px 32px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(184, 41, 45, 0.06), transparent 50%);
}

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    linear-gradient(rgba(255, 255, 255, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 1px, transparent 1px);
  background-size: 40px 40px;
}

.sub-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 500;
  animation: hStag 0.6s var(--ease-out) 0.1s both;
}

.sub-hero h1 .ri {
  color: var(--red);
  font-style: italic;
  font-weight: 600;
}

.sub-hero > p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.4);
  font-size: 15px;
  line-height: 1.7;
  animation: hStag 0.6s var(--ease-out) 0.2s both;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.c-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(27, 38, 85, 0.04);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: all 0.4s var(--ease-spring);
}

.c-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-strong);
}

.c-thumb {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.c-thumb.has-image {
  overflow: hidden;
  padding: 0;
  font-size: 0;
}

.c-thumb.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.c-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
}

.ct1 { background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid)); }
.ct2 { background: linear-gradient(135deg, #1a3d35, #2d7a5e); }
.ct3 { background: linear-gradient(135deg, #5a1520, var(--red)); }

.c-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.c-body h3 {
  margin: 0 0 5px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
}

.c-title-link {
  color: inherit;
  text-decoration: none;
}

.c-title-link:hover {
  color: var(--red);
}

.c-sub {
  margin-bottom: 10px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.c-body > p {
  margin: 0 0 14px;
  color: var(--stone);
  font-size: 13.5px;
  line-height: 1.6;
}

.c-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}

.c-tag {
  padding: 3px 9px;
  border-radius: 4px;
  background: var(--cream);
  color: var(--stone);
  font-size: 11px;
  font-weight: 500;
  transition: all 0.2s;
}

.c-tag:hover {
  background: var(--red-glow);
  color: var(--red);
}

.c-details-link {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
}

.c-details-link:hover {
  color: var(--navy);
}

.c-foot {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 14px;
  margin-top: auto;
  border-top: 1px solid rgba(27, 38, 85, 0.05);
}

.c-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  border-radius: var(--radius-md);
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  transition: all 0.3s var(--ease-spring);
}

.c-enroll:hover {
  background: var(--red);
  transform: scale(1.05);
}

.cb-blog-single .article-hero {
  text-align: left;
  padding: 72px 32px 64px;
}

.cb-blog-single .article-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}

.cb-blog-single .article-hero-copy {
  padding-right: 10px;
}

.cb-blog-single .article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-spring);
}

.cb-blog-single .article-back:hover {
  border-color: rgba(184, 41, 45, 0.5);
  color: #fff;
  background: rgba(184, 41, 45, 0.12);
  transform: translateY(-2px);
}

.cb-blog-single .article-hero .blog-meta {
  margin: 0 0 18px;
}

.cb-blog-single .article-hero .blog-meta span {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.cb-blog-single .article-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 16px;
  text-align: left;
}

.cb-blog-single .article-intro {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  line-height: 1.72;
}

.cb-blog-single .article-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cb-blog-single .article-hero-actions .cta-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.cb-blog-single .article-hero-actions .cta-ghost:hover {
  border-color: var(--red);
  color: #fff;
}

.cb-blog-single .article-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: var(--navy-deep);
  box-shadow: var(--shadow-soft);
}

.cb-blog-single .article-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cb-blog-single .article-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 28, 0.08) 0%, rgba(8, 12, 28, 0.14) 34%, rgba(8, 12, 28, 0.78) 100%);
}

.cb-blog-single .article-hero-card {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px;
  display: flex;
  align-items: flex-end;
}

.cb-blog-single .article-hero-copybox {
  max-width: 430px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(8, 12, 28, 0.44);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cb-blog-single .article-hero-copybox .blog-feature-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(184, 41, 45, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cb-blog-single .article-hero-copybox h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.26;
  font-weight: 500;
}

.cb-blog-single .article-hero-copybox p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
}

.cb-blog-single .article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 30px;
  align-items: start;
}

.cb-blog-single .article-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 46px 54px 56px;
  border: 1px solid rgba(27, 38, 85, 0.06);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.cb-blog-single .article-summary-grid {
  display: none;
}

.cb-blog-single .article-summary-card {
  display: none;
}

.cb-blog-single .article-summary-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

.cb-blog-single .article-summary-card span {
  display: block;
  color: var(--stone);
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

.cb-blog-single .article-lead {
  position: relative;
  max-width: 690px;
  margin: 0 0 34px;
  padding-top: 22px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.8;
}

.cb-blog-single .article-lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
}

.cb-blog-single .article-prose {
  max-width: 690px;
  color: var(--stone);
}

.cb-blog-single .article-prose > *:first-child {
  margin-top: 0;
}

.cb-blog-single .article-prose h2 {
  position: relative;
  margin: 46px 0 14px;
  padding-top: 22px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
}

.cb-blog-single .article-prose h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 1px;
  background: rgba(184, 41, 45, 0.55);
}

.cb-blog-single .article-prose h3 {
  margin: 30px 0 10px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 600;
}

.cb-blog-single .article-prose h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 600;
}

.cb-blog-single .article-prose p {
  margin: 0 0 20px;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.86;
}

.cb-blog-single .article-prose strong {
  color: var(--navy);
}

.cb-blog-single .article-prose ul,
.cb-blog-single .article-prose ol,
.cb-blog-single .article-prose blockquote,
.cb-blog-single .article-prose figure {
  margin: 0 0 24px;
}

.cb-blog-single .article-prose ul,
.cb-blog-single .article-prose ol {
  margin-left: 20px;
  padding: 0;
}

.cb-blog-single .article-prose li {
  padding-left: 6px;
  font-size: 14px;
  line-height: 1.86;
}

.cb-blog-single .article-prose a {
  color: var(--red);
  text-decoration-color: rgba(184, 41, 45, 0.3);
  text-underline-offset: 3px;
}

.cb-blog-single .article-prose blockquote {
  margin: 34px 0;
  padding: 26px 28px;
  border-left: 4px solid var(--red);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #fff, rgba(248, 245, 240, 0.92));
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.55;
  box-shadow: var(--shadow-soft);
}

.cb-blog-single .article-prose img {
  width: 100%;
  height: 340px;
  display: block;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

.cb-blog-single .article-prose figure {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  border: 1px solid rgba(27, 38, 85, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.cb-blog-single .article-prose figure.wp-block-image {
  display: none;
}

.cb-blog-single .article-prose figcaption {
  margin-top: 0;
  padding: 12px 16px 14px;
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}


.cb-blog-single .article-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cb-blog-single .article-side-card {
  padding: 22px;
  border: 1px solid rgba(27, 38, 85, 0.05);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.cb-blog-single .article-side-card h4 {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.cb-blog-single .article-side-card p {
  margin: 0 0 12px;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.75;
}

.cb-blog-single .article-toc {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cb-blog-single .article-toc a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--navy);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s var(--ease-spring);
}

.cb-blog-single .article-toc a:hover {
  background: var(--red-glow);
  color: var(--red);
  transform: translateX(4px);
}

.cb-blog-single .article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cb-blog-single .article-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  background: var(--cream);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s var(--ease-spring);
}

.cb-blog-single .article-share a:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.cb-blog-single .article-side-cta h4 {
  margin-bottom: 8px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.cb-blog-single .article-side-cta p {
  margin-bottom: 16px;
}

.cb-blog-single .article-side-cta .cta-main,
.cb-blog-single .article-side-cta .cta-ghost {
  width: 100%;
  justify-content: center;
}

.cb-blog-single .article-side-cta .cta-ghost {
  margin-top: 10px;
  border-color: rgba(27, 38, 85, 0.1);
  color: var(--navy);
}

.cb-blog-single .article-side-cta .cta-ghost:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-glow);
}

.cb-blog-single .article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}


.cb-blog-single .blog-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.cb-blog-single .blog-section-head .sec-h2 {
  margin: 0;
  text-align: left;
}

.cb-blog-single .blog-section-head a {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: letter-spacing 0.2s ease;
}

.cb-blog-single .blog-section-head a:hover {
  letter-spacing: 1.2px;
}

.cb-blog-single .news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(27, 38, 85, 0.04);
  border-radius: var(--radius-xl);
  background: var(--white);
  transition: all 0.4s var(--ease-spring);
}

.cb-blog-single .news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}

.cb-blog-single .n-thumb {
  position: relative;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 40px;
  background: rgba(27, 38, 85, 0.05);
  text-decoration: none;
}

.cb-blog-single .n-thumb-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 24, 63, 0.04) 0%, rgba(15, 24, 63, 0.28) 100%);
  pointer-events: none;
}

.cb-blog-single .n-thumb-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.cb-blog-single .news-card:hover .n-thumb-photo img {
  transform: scale(1.05);
}

.cb-blog-single .n-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cb-blog-single .n-date {
  margin-bottom: 7px;
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.cb-blog-single .n-body h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;
}

.cb-blog-single .n-body h3 a {
  color: inherit;
  text-decoration: none;
}

.cb-blog-single .n-body p {
  margin: 0;
  color: var(--stone);
  font-size: 13px;
  line-height: 1.6;
}

.cb-blog-single .n-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
}

.cb-blog-single .n-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--red-glow);
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cb-blog-single .blog-read-line {
  margin-top: auto;
  padding-top: 16px;
}

.cb-blog-single .blog-readmore {
  color: var(--red);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .sub-hero {
    padding: 64px 24px 48px;
  }
}

@media (max-width: 1024px) {
  .cb-blog-single .article-hero-inner,
  .cb-blog-single .article-shell {
    grid-template-columns: 1fr;
  }

  .cb-blog-single .article-sidebar {
    position: static;
  }

  .cb-blog-single .article-summary-grid,
  .cb-blog-single .article-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cb-blog-single .article-hero-copy h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .cb-blog-single .article-hero,
  .cb-blog-single .article-shell {
    padding-left: 0;
    padding-right: 0;
  }

  .cb-blog-single .article-hero-inner,
  .cb-blog-single .article-summary-grid,
  .cb-blog-single .article-related-grid {
    grid-template-columns: 1fr;
  }

  .cb-blog-single .article-hero-visual {
    min-height: 380px;
  }

  .cb-blog-single .article-hero-card,
  .cb-blog-single .article-main,
  .cb-blog-single .article-side-card {
    padding: 22px;
  }

  .cb-blog-single .article-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cb-blog-single .article-hero-actions .cta-main,
  .cb-blog-single .article-hero-actions .cta-ghost {
    width: 100%;
    justify-content: center;
  }

  .cb-blog-single .article-lead {
    font-size: 17px;
    padding-top: 18px;
  }

  .cb-blog-single .article-main {
    padding: 30px 24px 34px;
  }

  .cb-blog-single .article-prose img {
    height: 240px;
  }
}
