/* Breadcrumb */

.breadcrumb {
  padding: 13px 0;
  background: rgba(250, 243, 232, .9);
  border-bottom: 1px solid #ead8c5;
}

.breadcrumb .content {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: var(--text-meta);
  line-height: var(--leading-meta);
}

.breadcrumb .content > span {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumb-separator,
.breadcrumb .content > span:not(:last-child) {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.breadcrumb-separator i,
.breadcrumb .content > span:not(:last-child) i {
  font-size: .75rem;
}

.breadcrumb a,
.breadcrumb span:last-child,
.breadcrumb .breadcrumb_last {
  color: var(--red);
  font-weight: var(--weight-medium);
}

/* Page Hero */

.page-hero {
  position: relative;
  height: 280px;
  border-bottom: 1px solid #ead9c9;
  background:
    url("../hero-left.png") left bottom / 300px 280px no-repeat,
    url("../hero-right.png") right top / 360px 245px no-repeat,
    linear-gradient(90deg, rgba(247, 235, 215, .95), rgba(248, 241, 228, .72)),
    #f6ecdc;
}

.page-hero--lo-trinh-hoc {
  background:
    url("../pages/roadmap-hero-left.webp") left bottom / 300px 280px no-repeat,
    url("../pages/roadmap-hero-right.webp") right top / 360px 245px no-repeat,
    linear-gradient(90deg, rgba(247, 235, 215, .95), rgba(248, 241, 228, .72)),
    #f6ecdc;
}

.page-hero--thu-vien {
  background:
    url("../pages/library-hero-left.webp") left bottom / 300px 280px no-repeat,
    url("../pages/library-hero-right.webp") right top / 360px 245px no-repeat,
    linear-gradient(90deg, rgba(247, 235, 215, .95), rgba(248, 241, 228, .72)),
    #f6ecdc;
}

.page-hero--tin-tuc {
  background:
    url("../pages/news-hero-left.webp") left bottom / 300px 280px no-repeat,
    url("../pages/news-hero-right.webp") right top / 360px 245px no-repeat,
    linear-gradient(90deg, rgba(247, 235, 215, .95), rgba(248, 241, 228, .72)),
    #f6ecdc;
}

.page-hero .container {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero .content {
  max-width: 560px;
}

.page-hero h1 {
  margin: 0 0 10px;
  color: var(--red);
  font-size: var(--text-h1);
  font-weight: var(--weight-bold);
  line-height: var(--leading-h1);
  letter-spacing: .025em;
  text-transform: uppercase;
}

.page-hero h2 {
  margin: 0 0 10px;
  font-size: var(--text-h4);
  line-height: var(--leading-h4);
}

.page-hero p {
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--leading-body);
}

.intro-hero {
  height: 345px;
  border-bottom: 1px solid #ead9c9;
}

.intro-hero::before,
.intro-hero::after {
  position: absolute;
  z-index: 1;
  width: 170px;
  height: 125px;
  pointer-events: none;
  content: "";
}

.intro-hero::before {
  top: 0;
  left: 0;
  background: radial-gradient(circle at 28% 18%, rgba(145, 28, 29, .3), transparent 8%), linear-gradient(135deg, rgba(145, 28, 29, .22), transparent 58%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  opacity: .45;
}

.intro-hero::after {
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 72% 82%, rgba(145, 28, 29, .25), transparent 8%), linear-gradient(315deg, rgba(145, 28, 29, .18), transparent 58%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: .38;
}

.intro-hero .hero-background {
  object-fit: cover;
  opacity: .68;
}

.intro-hero .content {
  justify-content: center;
  padding-bottom: 0;
  text-align: center;
}

.intro-hero .hero-copy {
  width: min(620px, 100%);
  margin: 0;
}

.intro-hero .primary-btn {
  display: none;
}

/* Shared Page Primitives */

.pill {
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--text-meta);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-button);
  background: transparent;
  border-radius: 0;
}

.pill::before {
  position: absolute;
  top: 0;
  right: -40%;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url("../img/brush.webp") center / 100% 100% no-repeat;
  pointer-events: none;
  content: "";
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 42px;
}

.feature-card,
.value-card {
  background: rgba(255, 250, 240, .72);
  border: 1px solid #dfc2ad;
  border-radius: 6px;
}

.feature-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  align-items: start;
  border: 0;
  background: transparent;
}

.feature-card h3,
.value-card h3 {
  margin: 0 0 8px;
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-h4);
}

.feature-card p,
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-meta);
  line-height: var(--leading-meta);
}

.split-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
}

.split-layout img {
  width: 100%;
  object-fit: cover;
}

/* Intro About */

.intro-about {
  position: relative;
  overflow: hidden;
  padding-top: 34px;
  padding-bottom: 34px;
}

.intro-about .split-layout {
  grid-template-columns: 36% 1fr;
  gap: 56px;
}

.intro-about .about-image img {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  max-width: none;
  height: 360px;
  padding: 0;
  transform: none;
  object-fit: cover;
  border: 3px solid #c58b79;
  border-radius: 48% 48% 12px 12px;
  box-shadow: 0 14px 30px rgba(95, 44, 30, .14);
}

.intro-about .about-image::before,
.intro-about .about-image::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.intro-about .about-image::before {
  right: 8px;
  bottom: -18px;
  width: 180px;
  height: 80px;
  background:
    radial-gradient(ellipse at 35% 75%, rgba(80, 72, 66, .24), transparent 54%),
    radial-gradient(ellipse at 65% 70%, rgba(80, 72, 66, .18), transparent 60%);
}

.intro-about .about-image::after {
  bottom: 12px;
  left: -16px;
  width: 96px;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(217, 170, 105, .34), transparent 68%);
}

.intro-about-copy {
  min-width: 0;
}

.intro-about-copy .pill {
  justify-self: start;
  min-height: 0;
  padding: 0;
  font-size: 1.2rem;
  line-height: var(--leading-h4);
}

.intro-about-copy .section-heading {
  margin-bottom: 16px;
}

.intro-about-copy .des p {
  max-width: 690px;
  color: #4b3b32;
}

.intro-about .feature-grid {
  gap: 18px 34px;
  margin-top: 22px;
}

.intro-about .feature-card {
  grid-template-columns: 48px 1fr;
}

.intro-about .feature-card .icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(145, 28, 29, .05);
}

/* Intro Values */

.intro-values {
  position: relative;
  z-index: 1;
  padding: 20px 0 12px;
  margin-top: 0;
}

.intro-values .container {
  position: relative;
  padding: 5px;
  border: 2px solid var(--red);
  border-radius: 5px;
  background-color: var(--paper);
}

.intro-values .container::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url(https://hannhi.panda.id.vn/wp-content/uploads/2026/05/pattern.webp);
  opacity: .2;
  pointer-events: none;
  content: "";
}

.intro-values > .container > .head {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
}

.intro-values .benefits-decor-image {
  position: absolute;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.intro-values .benefits-decor-image-top-left {
  top: 2px;
  left: 2px;
  transform: rotate(90deg);
}

.intro-values .benefits-decor-image-top-right {
  top: 2px;
  right: 2px;
  transform: rotate(180deg);
}

.intro-values .benefits-decor-image-bottom-left {
  bottom: 2px;
  left: 2px;
}

.intro-values .benefits-decor-image-bottom-right {
  right: 2px;
  bottom: 2px;
  transform: rotate(-90deg);
}

.intro-values .content {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.intro-values .benefit-item {
  padding: 1rem 2rem;
  text-align: center;
  border-right: 1px solid #d7a992;
}

.intro-values .benefit-item:last-child {
  border-right: 0;
}

.intro-values .benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
  color: var(--red);
  font-size: var(--text-h4);
  line-height: 1;
  border: 1px solid #c58b79;
  border-radius: 50%;
}

.intro-values .benefit-item h3 {
  margin: 0 0 6px;
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-h4);
  text-transform: uppercase;
}

.intro-values .benefit-item strong {
  display: block;
  margin: 0 0 7px;
  color: var(--red);
  font-size: var(--text-meta);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-meta);
}

.intro-values .benefit-item p {
  max-width: 300px;
  margin: 0 auto;
  color: #6d5b50;
  font-size: var(--text-meta);
  line-height: var(--leading-meta);
}

.roadmap-outcomes {
  padding-top: 18px;
}

.roadmap-outcomes .container {
  padding: 8px 10px 12px;
}

.roadmap-outcomes .benefit-heading {
  position: relative;
  z-index: 2;
  padding: 4px 80px 6px;
  text-align: center;
}

.roadmap-outcomes .benefit-heading h2 {
  margin: 0;
  color: #2b211d;
  font-size: var(--text-h4);
  font-weight: var(--weight-bold);
  line-height: var(--leading-h4);
  text-transform: uppercase;
}

.roadmap-outcomes .content {
  padding: 20px 48px 8px;
}

.roadmap-outcomes .benefit-icon {
  color: #fff8ee;
  background: var(--red);
  border-color: var(--red);
}

/* Value Cards */

.value-strip {
  position: relative;
  padding: 5px;
  border: 2px solid var(--red);
  border-radius: 5px;
  background:
    linear-gradient(rgba(248, 241, 228, .78), rgba(248, 241, 228, .78)),
    url(https://i.pinimg.com/736x/1f/83/4d/1f834d6a7ea6ceb981fd0781af70f6ef.jpg) center / 500px repeat,
    var(--paper);
}

.value-strip::before {
  position: absolute;
  inset: 6px;
  z-index: 1;
  background:
    linear-gradient(var(--red) 0 0) left top / 58px 2px no-repeat,
    linear-gradient(var(--red) 0 0) left top / 2px 58px no-repeat,
    linear-gradient(var(--red) 0 0) left 10px top 10px / 32px 2px no-repeat,
    linear-gradient(var(--red) 0 0) left 10px top 10px / 2px 32px no-repeat,
    linear-gradient(var(--red) 0 0) left 10px top 20px / 18px 2px no-repeat,
    linear-gradient(var(--red) 0 0) left 20px top 10px / 2px 18px no-repeat,
    linear-gradient(var(--red) 0 0) right top / 58px 2px no-repeat,
    linear-gradient(var(--red) 0 0) right top / 2px 58px no-repeat,
    linear-gradient(var(--red) 0 0) right 10px top 10px / 32px 2px no-repeat,
    linear-gradient(var(--red) 0 0) right 10px top 10px / 2px 32px no-repeat,
    linear-gradient(var(--red) 0 0) right 10px top 20px / 18px 2px no-repeat,
    linear-gradient(var(--red) 0 0) right 20px top 10px / 2px 18px no-repeat,
    linear-gradient(var(--red) 0 0) left bottom / 58px 2px no-repeat,
    linear-gradient(var(--red) 0 0) left bottom / 2px 58px no-repeat,
    linear-gradient(var(--red) 0 0) left 10px bottom 10px / 32px 2px no-repeat,
    linear-gradient(var(--red) 0 0) left 10px bottom 10px / 2px 32px no-repeat,
    linear-gradient(var(--red) 0 0) left 10px bottom 20px / 18px 2px no-repeat,
    linear-gradient(var(--red) 0 0) left 20px bottom 10px / 2px 18px no-repeat,
    linear-gradient(var(--red) 0 0) right bottom / 58px 2px no-repeat,
    linear-gradient(var(--red) 0 0) right bottom / 2px 58px no-repeat,
    linear-gradient(var(--red) 0 0) right 10px bottom 10px / 32px 2px no-repeat,
    linear-gradient(var(--red) 0 0) right 10px bottom 10px / 2px 32px no-repeat,
    linear-gradient(var(--red) 0 0) right 10px bottom 20px / 18px 2px no-repeat,
    linear-gradient(var(--red) 0 0) right 20px bottom 10px / 2px 18px no-repeat;
  opacity: .86;
  pointer-events: none;
  content: "";
}

.value-strip .content,
.why-grid,
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-strip .content {
  position: relative;
  z-index: 2;
  gap: 0;
}

.value-card {
  position: relative;
  padding: 22px;
  text-align: center;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.value-card::after {
  position: absolute;
  top: 18px;
  right: -11px;
  bottom: 18px;
  width: 1px;
  background: #d8b5a0;
  content: "";
}

.value-strip .value-card::after {
  top: 1rem;
  right: 0;
  bottom: 1rem;
  background: #d7a992;
}

.value-card:last-child::after,
.value-card:nth-child(3n)::after {
  display: none;
}

.value-card .icon-circle {
  margin-bottom: 12px;
}

.value-strip .value-card {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 1rem 2rem;
}

.value-card-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

.value-strip .icon-circle {
  width: 40px;
  height: 40px;
  margin: 0;
  color: #f8eadb;
  font-size: var(--text-h4);
  background: var(--red);
  border-color: var(--red);
}

.value-strip .value-card h3 {
  margin: 0;
  color: #2b211d;
  line-height: 1;
  text-transform: uppercase;
}

.value-strip .value-card strong {
  display: block;
  margin-top: 2px;
  color: var(--red);
  font-size: var(--text-meta);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-meta);
  text-align: center;
}

.value-strip .value-card p {
  max-width: 300px;
  text-align: center;
}

.why-grid .value-card {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.why-grid .icon-circle {
  width: 58px;
  height: 58px;
  color: var(--red);
  background: rgba(145, 28, 29, .04);
}

.roadmap-section {
  overflow: hidden;
}

.roadmap-section .section-heading {
  margin-bottom: 30px;
}

.roadmap-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.roadmap-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
  padding: 16px 14px 18px;
  text-align: center;
  border: 1px solid #dfc2ad;
  border-radius: 8px;
  background: rgba(255, 250, 240, .76);
  box-shadow: 0 12px 28px rgba(96, 43, 22, .06);
}

.roadmap-step-number {
  position: absolute;
  top: 12px;
  left: 12px;
  color: rgba(145, 28, 29, .18);
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: var(--weight-bold);
  line-height: 1;
}

.roadmap-step-icon {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}

.roadmap-step .icon-circle {
  width: 48px;
  height: 48px;
  color: #f8eadb;
  background: var(--red);
  border-color: var(--red);
}

.roadmap-step-body {
  display: grid;
  gap: 8px;
}

.roadmap-step-meta {
  margin: 0;
  color: var(--red);
  font-size: var(--text-meta);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-meta);
}

.roadmap-step h3 {
  margin: 0;
  color: #2b211d;
  text-transform: uppercase;
}

.roadmap-step p {
  margin: 0;
}

.roadmap-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  min-height: 30px;
  margin-top: 4px;
  padding: 0 14px;
  color: #fff;
  font-size: var(--text-meta);
  line-height: var(--leading-button);
  background: var(--red);
  border-radius: 4px;
}

.roadmap-goal-section .section-heading {
  margin-bottom: 28px;
}

.roadmap-goal-layout {
  display: grid;
  grid-template-columns: minmax(280px, 40%) 1fr;
  gap: 42px;
  align-items: center;
}

.roadmap-goal-image {
  position: relative;
}

.roadmap-goal-image::after {
  position: absolute;
  right: -18px;
  bottom: -16px;
  width: 170px;
  height: 76px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 35% 75%, rgba(80, 72, 66, .18), transparent 58%),
    radial-gradient(ellipse at 65% 70%, rgba(80, 72, 66, .12), transparent 62%);
  content: "";
}

.roadmap-goal-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 3px solid #c58b79;
  border-radius: 8px 48% 8px 48%;
  box-shadow: 0 14px 30px rgba(95, 44, 30, .14);
}

.roadmap-goal-card {
  padding: 28px;
  border: 1px solid #dfc2ad;
  border-radius: 8px;
  background: rgba(255, 250, 240, .76);
  box-shadow: 0 12px 28px rgba(96, 43, 22, .06);
}

.roadmap-goal-card h3 {
  margin: 0 0 18px;
  color: var(--red);
  text-transform: uppercase;
}

.roadmap-goal-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.roadmap-goal-list li {
  position: relative;
  padding-left: 28px;
}

.roadmap-goal-list li::before {
  position: absolute;
  top: .45em;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--red);
  border: 3px solid #f7e6d2;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(145, 28, 29, .28);
  content: "";
}

.roadmap-goal-list strong {
  color: var(--red);
}

/* CTA */

.cta-band {
  position: relative;
  overflow: hidden;
  background: #f8eee4;
  text-transform: uppercase;
}

.cta-band .content {
  position: relative;
  padding: 2.5rem 0;
  text-align: center;
}

.cta-band-image {
  position: absolute;
  top: 0;
  width: 38%;
  height: 100%;
  pointer-events: none;
}

.cta-band-image-left {
  left: 0;
}

.cta-band-image-right {
  right: 0;
}

.cta-band h2 {
  margin: 0 0 6px;
  color: var(--red-dark);
  font-size: var(--text-h2);
  line-height: var(--leading-h2);
}

.cta-band p {
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--leading-body);
}

.cta-band .primary-btn {
  min-height: 41px;
  padding: 0 9px 0 17px;
  color: #fff;
  font-size: .82rem;
  font-weight: var(--weight-bold);
  line-height: 1;
  text-transform: uppercase;
  background: var(--red);
  border: 1px solid rgba(255, 218, 160, .36);
  box-shadow: 0 2px 0 rgba(0, 0, 0, .16);
}

.cta-band-button span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: .72rem;
  line-height: 1;
  background: #f8d28d;
  border-radius: 50%;
}
