/* Sunny Du học Hàn Quốc — Theme */
:root {
  --sunny-primary: #f5891f;
  --sunny-primary-dark: #d9770f;
  --sunny-primary-light: #fdba74;
  --sunny-dark: #000000;
  --sunny-muted: #000000;
  --sunny-bg-soft: #fff7ed;
  --sunny-border: rgba(245, 137, 31, 0.2);
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

/* Swiper — easing mượt, fade & slide (truong-kookmin + trang chủ) */
.uni-showcase-swiper.swiper-fade .swiper-slide,
.hero-video-swiper.swiper-fade .swiper-slide {
  transition-timing-function: cubic-bezier(0.28, 0.85, 0.38, 1) !important;
}

.uni-news-feature__swiper .swiper-wrapper,
.visa-swiper .swiper-wrapper,
.hoat-dong-swiper .swiper-wrapper,
.tin-tuc-swiper .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.33, 1, 0.68, 1) !important;
}

@media (prefers-reduced-motion: reduce) {
  .uni-showcase-swiper.swiper-fade .swiper-slide,
  .hero-video-swiper.swiper-fade .swiper-slide {
    transition-timing-function: ease !important;
  }

  .uni-news-feature__swiper .swiper-wrapper,
  .visa-swiper .swiper-wrapper,
  .hoat-dong-swiper .swiper-wrapper,
  .tin-tuc-swiper .swiper-wrapper {
    transition-timing-function: ease !important;
  }
}

/* Lazy-load: khi bật JS (class html.js), ảnh loading=lazy hiện dần; không JS vẫn xem bình thường */
html.js img[loading="lazy"] {
  background: linear-gradient(118deg, #ebeef2 0%, #e4e8ef 50%, #ebeef2 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  vertical-align: middle;
}

html.js img[loading="lazy"].img-loaded {
  opacity: 1;
  background: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js img[loading="lazy"] {
    opacity: 1;
    background: none;
    transition: none;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Google Sans Flex", "Segoe UI", system-ui, sans-serif;
  color: var(--sunny-dark);
  overflow-x: hidden;
}

.text-primary-sunny {
  color: var(--sunny-primary) !important;
}

.bg-primary-sunny {
  background-color: var(--sunny-primary) !important;
}

.fw-bold,
.fw-bolder {
  font-weight: 600 !important;
}

.btn-sunny {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--sunny-primary);
  --bs-btn-border-color: var(--sunny-primary);
  --bs-btn-hover-bg: var(--sunny-primary-dark);
  --bs-btn-hover-border-color: var(--sunny-primary-dark);
  --bs-btn-active-bg: var(--sunny-primary-dark);
  --bs-btn-active-border-color: var(--sunny-primary-dark);
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 0.5rem;
}

/* CTA navbar + nút pulse nội dung: ring không bị cắt */
.navbar-sunny .btn-sunny-pulse,
.btn-sunny.btn-sunny-pulse {
  overflow: visible;
}

.btn-sunny-pulse {
  position: relative;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  border-radius: 0.45rem;
  transform-origin: center center;
  animation: sunny-tilt 3.5s ease-in-out infinite;
}

.btn-sunny-pulse::before,
.btn-sunny-pulse::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: sunny-ring-pulse 2.4s ease-out infinite;
}

.btn-sunny-pulse::after {
  animation-delay: 1.2s;
}

@keyframes sunny-ring-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 137, 31, 0.55);
  }
  65% {
    box-shadow: 0 0 0 12px rgba(245, 137, 31, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 137, 31, 0);
  }
}

@keyframes sunny-tilt {
  0%,
  100% {
    transform: rotate(-1.4deg);
  }
  50% {
    transform: rotate(1.4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-sunny-pulse::before,
  .btn-sunny-pulse::after {
    animation: none;
  }

  .btn-sunny-pulse {
    animation: none;
    transform: none;
    box-shadow: 0 0 0 2px rgba(245, 137, 31, 0.35);
  }
}

.btn-outline-sunny {
  --bs-btn-color: var(--sunny-primary);
  --bs-btn-border-color: var(--sunny-primary);
  --bs-btn-hover-bg: var(--sunny-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: var(--sunny-primary);
  font-weight: 600;
}

/* Navbar */
.navbar-sunny {
  background: #fff;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.06);
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Trang chủ (video): không nền / không đổ bóng trên thanh bar */
.navbar-sunny.navbar-sunny--no-bg {
  background: transparent;
  background-color: transparent;
  box-shadow: none;
}

/* Trang chủ + menu sáng: chuyển mượt từ trong suốt → nền trắng + chữ tối khi cuộn */
.navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light {
  border-bottom: 1px solid transparent;
  transition:
    background 0.5s cubic-bezier(0.33, 0.1, 0.14, 1),
    background-color 0.5s cubic-bezier(0.33, 0.1, 0.14, 1),
    box-shadow 0.5s cubic-bezier(0.33, 0.1, 0.14, 1),
    border-bottom-color 0.45s ease,
    border-color 0.4s ease;
}

.navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light .nav-link {
  transition:
    color 0.5s cubic-bezier(0.33, 0.1, 0.14, 1),
    background 0.45s cubic-bezier(0.33, 0.1, 0.14, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

@media (min-width: 992px) {
  .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light .nav-link.active:not(.dropdown-toggle)::after {
    transition: background 0.45s ease, box-shadow 0.45s ease, opacity 0.45s ease;
  }
}

@media (max-width: 991.98px) {
  .navbar-sunny.navbar-sunny--no-bg .navbar-collapse {
    margin-top: 0.5rem;
    padding: 0.75rem 0.5rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 28px rgba(26, 26, 46, 0.08);
  }
}

/* Trang chủ: chữ menu trắng trên video; cuộn xuống dưới hero → nền trắng + chữ tối như các trang khác */
@media (min-width: 992px) {
  .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light:not(.navbar-sunny--scrolled) .nav-link {
    color: #fff !important;
  }

  .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light:not(.navbar-sunny--scrolled) .nav-link:hover:not(.active) {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.14);
  }

  .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light:not(.navbar-sunny--scrolled) .nav-link.active {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.3) inset,
      0 4px 16px rgba(0, 0, 0, 0.25);
  }

  .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light:not(.navbar-sunny--scrolled)
    .nav-link.active:not(.dropdown-toggle)::after {
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.7));
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  }

  @media (hover: hover) {
    .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light:not(.navbar-sunny--scrolled)
      .nav-item.dropdown:hover
      > .nav-link.dropdown-toggle {
      color: #fff !important;
      background: rgba(255, 255, 255, 0.14);
    }
  }

  .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light:not(.navbar-sunny--scrolled) .navbar-sunny__search {
    color: #fff;
  }

  .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light:not(.navbar-sunny--scrolled) .navbar-sunny__search:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
  }
}

/* Cuộn xuống: nền trắng đặc + chữ tối (trùng cảm giác trang nội bộ) */
.navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light.navbar-sunny--scrolled {
  background: #fff !important;
  background-color: #fff !important;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.08) !important;
  border-bottom-color: rgba(26, 26, 46, 0.1);
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light.navbar-sunny--scrolled .navbar-sunny__search {
  color: var(--sunny-dark);
}

.navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light.navbar-sunny--scrolled .nav-link:not(.active) {
  color: var(--sunny-dark) !important;
}

.navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light.navbar-sunny--scrolled .nav-link:hover:not(.active) {
  color: var(--sunny-primary) !important;
  background: var(--sunny-bg-soft) !important;
}

.navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light.navbar-sunny--scrolled
  .nav-link.active:not(.dropdown-toggle)::after {
  background: linear-gradient(90deg, var(--sunny-primary), var(--sunny-primary-light)) !important;
  box-shadow: 0 1px 4px rgba(245, 137, 31, 0.45) !important;
}

@media (min-width: 992px) and (hover: hover) {
  .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light.navbar-sunny--scrolled
    .nav-item.dropdown:hover
    > .nav-link.dropdown-toggle {
    color: var(--sunny-primary) !important;
    background: var(--sunny-bg-soft) !important;
  }
}

/* Mobile: icon menu sáng trên video, tối lại khi đã cuộn */
@media (max-width: 991.98px) {
  .navbar-sunny.navbar-sunny--nav-light .navbar-toggler {
    transition: border-color 0.45s ease, background-color 0.4s ease;
  }

  .navbar-sunny.navbar-sunny--nav-light .navbar-toggler-icon {
    transition: filter 0.5s cubic-bezier(0.33, 0.1, 0.14, 1), opacity 0.4s ease;
  }

  .navbar-sunny.navbar-sunny--nav-light:not(.navbar-sunny--scrolled) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.45);
  }

  .navbar-sunny.navbar-sunny--nav-light:not(.navbar-sunny--scrolled) .navbar-toggler-icon {
    filter: brightness(0) invert(1);
  }

  .navbar-sunny.navbar-sunny--nav-light.navbar-sunny--scrolled .navbar-toggler {
    border-color: rgba(26, 26, 46, 0.15);
  }

  .navbar-sunny.navbar-sunny--nav-light.navbar-sunny--scrolled .navbar-toggler-icon {
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light,
  .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light .nav-link,
  .navbar-sunny.navbar-sunny--no-bg.navbar-sunny--nav-light .nav-link.active:not(.dropdown-toggle)::after,
  .navbar-sunny.navbar-sunny--nav-light .navbar-toggler,
  .navbar-sunny.navbar-sunny--nav-light .navbar-toggler-icon {
    transition-duration: 0.01ms !important;
  }
}

/* Luôn trên nội dung cuộn (sticky/fixed); dưới modal BS (~1055) và nút gọi nổi (1040) */
.navbar.navbar-sunny {
  z-index: 1045;
}

/* Header: nội dung gần sát hai mép màn (bỏ giới hạn max-width của .container) */
.navbar-sunny .navbar-sunny-inner.container {
  max-width: 100%;
  width: 100%;
  padding-left: calc(max(0px, env(safe-area-inset-left, 0px)) + clamp(2.5rem, 5.2vw, 3.35rem));
  padding-right: calc(max(0px, env(safe-area-inset-right, 0px)) + clamp(2.5rem, 5.2vw, 3.35rem));
}

@media (min-width: 992px) {
  .navbar-sunny .navbar-sunny-collapse {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
  }
}

.navbar-sunny .navbar-brand {
  color: var(--sunny-dark) !important;
}

.navbar-sunny .navbar-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
}

/* Icon tìm kiếm cạnh nút Đăng ký tư vấn (button) */
.navbar-sunny__search {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  font: inherit;
  line-height: 1;
  background: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  color: var(--sunny-dark);
  font-size: 1.2rem;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.navbar-sunny__search:hover {
  color: var(--sunny-primary);
  background: var(--sunny-bg-soft);
}

.navbar-sunny__search:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 137, 31, 0.35);
}

/* —— Thanh tìm kiếm dưới header (top do JS) —— */
.navbar-search-panel[hidden] {
  display: none !important;
}

.navbar-search-panel {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 1043;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 55%, #f1f4f8 100%);
  border-bottom: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.08);
}

.navbar-search-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sunny-primary-dark) 0%, var(--sunny-primary) 38%, var(--sunny-primary-light) 100%);
  opacity: 0.9;
  pointer-events: none;
}

.navbar-search-panel__form {
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Vùng panel cao hơn (ghi đè py-3 của Bootstrap) */
.navbar-search-panel .container.navbar-sunny-inner {
  padding-top: 1.4rem !important;
  padding-bottom: 1.5rem !important;
}

.navbar-search-panel__kicker {
  margin: 0 0 0.6rem;
  text-align: center;
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  line-height: 1.4;
}

.navbar-search-panel__kicker::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0.5rem auto 0;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, var(--sunny-primary), transparent);
  opacity: 0.5;
}

.navbar-search-panel__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.65rem;
  max-width: min(40.5rem, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 0.5rem 0.5rem 0.5rem 0.6rem;
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.1);
  border-radius: 0.9rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 18px rgba(26, 26, 46, 0.06);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.navbar-search-panel__row:focus-within {
  border-color: rgba(245, 137, 31, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 0 0 3px rgba(245, 137, 31, 0.14),
    0 8px 28px rgba(245, 137, 31, 0.12);
}

.navbar-search-panel__input {
  flex: 1 1 10rem;
  min-width: 0;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 500;
  /* Chiều cao + line-height cùng giá trị → chữ/placeholder cân giữa theo trục dọc */
  height: 2.9rem;
  line-height: 2.9rem;
  color: var(--sunny-dark);
  background: transparent;
  border: 0 !important;
  border-radius: 0.65rem 0 0 0.65rem;
  padding: 0 0.5rem 0 0.55rem;
  box-shadow: none !important;
  box-sizing: border-box;
}

.navbar-search-panel__input::placeholder {
  color: rgba(26, 26, 46, 0.42);
  font-weight: 400;
}

.navbar-search-panel__input:focus,
.navbar-search-panel__input:focus-visible {
  background: rgba(255, 247, 237, 0.35);
  color: var(--sunny-dark);
  outline: none;
  border: 0 !important;
  box-shadow: none !important;
}

/* Ẩn dấu X mặc định của search trên WebKit, style lại nếu có */
.navbar-search-panel__input::-webkit-search-decoration,
.navbar-search-panel__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.navbar-search-panel__submit {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 2.9rem;
  padding: 0 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: #fff !important;
  text-decoration: none;
  border: 0;
  border-radius: 0.65rem;
  cursor: pointer;
  background: linear-gradient(150deg, var(--sunny-primary) 0%, var(--sunny-primary-dark) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 4px 16px rgba(245, 137, 31, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.navbar-search-panel__submit:hover {
  color: #fff !important;
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 6px 20px rgba(245, 137, 31, 0.42);
}

.navbar-search-panel__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(245, 137, 31, 0.55);
}

.navbar-search-panel__submit-text {
  margin-left: 0.2rem;
}

@media (max-width: 575.98px) {
  .navbar-search-panel .container.navbar-sunny-inner {
    padding-top: 1.2rem !important;
    padding-bottom: 1.3rem !important;
  }

  .navbar-search-panel__kicker {
    font-size: 0.7rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }

  .navbar-search-panel__kicker::after {
    margin-top: 0.4rem;
  }

  .navbar-search-panel__row {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 0.5rem 0.5rem;
    border-radius: 0.8rem;
  }

  .navbar-search-panel__input {
    width: 100%;
    height: 3rem;
    line-height: 3rem;
    border-radius: 0.6rem;
    padding: 0 0.6rem;
    background: rgba(248, 250, 252, 0.9);
    border: 1px solid rgba(26, 26, 46, 0.08);
  }

  .navbar-search-panel__input:focus,
  .navbar-search-panel__input:focus-visible {
    background: #fff;
    border: 0 !important;
    box-shadow: none !important;
  }

  .navbar-search-panel__submit {
    width: 100%;
    align-self: stretch;
    min-height: 2.9rem;
    justify-content: center;
    border-radius: 0.6rem;
    padding: 0.55rem 1rem;
  }
}

.navbar-sunny .nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sunny-dark) !important;
  padding: 0.5rem 0.82rem !important;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

@media (min-width: 992px) {
  .navbar-sunny .navbar-nav {
    gap: 0 !important;
    column-gap: 0.1875rem !important;
  }

  .navbar-sunny .nav-link {
    padding: 0.5rem 0.58rem !important;
    letter-spacing: 0.04em;
  }
}

.navbar-sunny .nav-link:hover:not(.active) {
  color: var(--sunny-primary) !important;
  background: var(--sunny-bg-soft);
}

.navbar-sunny .nav-link.active {
  color: var(--sunny-primary) !important;
  font-weight: 600;
  background: linear-gradient(
    155deg,
    rgba(255, 247, 237, 0.98) 0%,
    rgba(245, 137, 31, 0.14) 48%,
    rgba(255, 247, 237, 0.75) 100%
  );
  border-color: rgba(245, 137, 31, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 4px 14px rgba(245, 137, 31, 0.15);
}

/* Gạch dưới trạng thái active — không áp vào dropdown-toggle (để giữ mũi tên ::after của BS) */
.navbar-sunny .nav-link.active:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  transform: translateX(-50%);
  width: 40%;
  min-width: 1.75rem;
  max-width: 3rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sunny-primary), var(--sunny-primary-light));
  box-shadow: 0 1px 4px rgba(245, 137, 31, 0.45);
}

/* Mũi tên xuống cho menu có sub (đồng bộ Chương trình Du học & Tin tức) */
.navbar-sunny .nav-link.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}

.navbar-sunny .nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.35em;
  vertical-align: 0.2em;
  border-top: 0.32em solid;
  border-right: 0.28em solid transparent;
  border-bottom: 0;
  border-left: 0.28em solid transparent;
  opacity: 0.85;
}

.navbar-sunny .nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 137, 31, 0.35);
}

.navbar-sunny .dropdown-menu {
  border: 1px solid rgba(26, 26, 46, 0.08);
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
  border-radius: 0.75rem;
  padding: 0.5rem;
  min-width: 12.5rem;
  margin-top: 0.35rem !important;
  z-index: 1060;
}

.navbar-sunny .dropdown-item {
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

.navbar-sunny .dropdown-item:hover {
  background: var(--sunny-bg-soft);
  color: var(--sunny-primary);
}

/* Mục sub-menu đang active — màu cam SUNNY (thay mặc định xanh Bootstrap) */
.navbar-sunny .dropdown-item.active,
.navbar-sunny .dropdown-item:active {
  background: linear-gradient(
    155deg,
    rgba(255, 247, 237, 0.98) 0%,
    rgba(245, 137, 31, 0.2) 48%,
    rgba(255, 247, 237, 0.88) 100%
  );
  color: var(--sunny-primary-dark) !important;
  font-weight: 600;
}

.navbar-sunny .dropdown-item.active:hover,
.navbar-sunny .dropdown-item.active:focus {
  background: rgba(245, 137, 31, 0.14);
  color: var(--sunny-primary-dark) !important;
}

.navbar-sunny .dropdown-item:focus-visible {
  outline: 2px solid rgba(245, 137, 31, 0.45);
  outline-offset: 1px;
}

/* Desktop: hover mở sub-menu — chỉ bổ sung display, không ghi đè .dropdown-menu.show */
@media (min-width: 992px) and (hover: hover) {
  .navbar-sunny .nav-item.dropdown {
    position: relative;
  }

  /* Bỏ khoảng hở giữa toggle và panel — tránh mất :hover khi di chuột xuống */
  .navbar-sunny .nav-item.dropdown > .dropdown-menu {
    margin-top: 0 !important;
  }

  /* Cầu nối vô hình phía trên panel: vẫn thuộc .dropdown-menu nên giữ hover trên .nav-item.dropdown */
  .navbar-sunny .nav-item.dropdown > .dropdown-menu::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 0.75rem;
  }

  .navbar-sunny .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }

  .navbar-sunny .nav-item.dropdown:hover > .nav-link.dropdown-toggle {
    color: var(--sunny-primary) !important;
    background: var(--sunny-bg-soft);
  }

  .navbar-sunny .nav-item.dropdown:hover > .nav-link.dropdown-toggle:not(.active) {
    border-color: transparent;
  }
}

/* Hero banner — full width, chiều cao theo tỉ lệ ảnh gốc */
.hero-banner {
  line-height: 0;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

/* Hero video fullscreen — cần height xác định (không chỉ min-height) để % cao của swiper/video tính đúng, đặc biệt mobile WebKit */
.hero-video-root {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
}

.hero-video-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hero-video-swiper .swiper-wrapper,
.hero-video-swiper .swiper-slide {
  height: 100%;
}

.hero-video-slide {
  position: relative;
}

.hero-video-swiper-pagination.swiper-pagination-bullets {
  --swiper-pagination-bottom: auto;
  bottom: calc(
    max(env(safe-area-inset-bottom, 0px), 0px) + clamp(0.9rem, 2.5vh, 1.5rem) + 2.4rem + 0.5rem
  );
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
}

.hero-video-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.42);
  opacity: 1;
}

.hero-video-swiper-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Lớp phủ mờ đồng đều toàn bộ vùng video (đọc nội dung phía dưới, giảm chói) */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(10, 12, 28, 0.28);
}

/* UTM Avo: ưu tiên nếu cài sẵn trên máy; nếu có file woff/woff2, thêm @font-face với src url tới fonts/ */
@font-face {
  font-family: "UTM Avo";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("UTM Avo"), local("UTMAvo"), local("UTM Avo Regular");
}

@font-face {
  font-family: "UTM Avo";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("UTM Avo Bold"), local("UTM AvoBold"), local("UTMAvo Bold");
}

/* Tagline video — giữa ngang, phía trên nút pause (cùng khoảng cách dưới với .hero-video-toggle) */
.hero-brand-kicker {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
  padding-left: max(0.75rem, env(safe-area-inset-left, 0px));
  padding-right: max(0.75rem, env(safe-area-inset-right, 0px));
  /* bottom: offset nút + chiều cao nút 2.4rem + slider video + khe cách tới chữ */
  padding-bottom: calc(
    max(env(safe-area-inset-bottom, 0px), 0px) + clamp(0.9rem, 2.5vh, 1.5rem) + 2.4rem + 1.15rem +
      0.85rem
  );
  padding-top: clamp(3.5rem, 10vh, 4.5rem);
  pointer-events: none;
}

.hero-brand-kicker__inner {
  width: 100%;
  max-width: min(46rem, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-brand-kicker__text {
  display: block;
  margin: 0;
  width: 100%;
  max-width: 100%;
  color: transparent;
  -webkit-text-stroke: 1.05px #fff;
  text-shadow: none;
  font-family: "UTM Avo", "Quicksand", "Google Sans Flex", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.9rem, 4.1vw, 3.1rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: none;
}

@supports not ((-webkit-text-stroke: 1px)) {
  .hero-brand-kicker__text {
    color: rgba(255, 255, 255, 0.9);
  }
}

/* Mobile: tagline «Du học Hàn Quốc SUNNY» — một dòng, to vừa màn, căn giữa */
@media (max-width: 575.98px) {
  .hero-brand-kicker__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-brand-kicker__text {
    box-sizing: border-box;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 0.25rem;
    font-size: clamp(1rem, 5.1vw, 1.55rem);
    letter-spacing: 0.016em;
    line-height: 1.15;
    white-space: nowrap;
    text-align: center;
    -webkit-text-stroke: 0.82px #fff;
  }

  .hero-brand-kicker__sub {
    text-align: center;
    width: 100%;
  }
}

.hero-brand-kicker__sub {
  display: block;
  margin: 0.45em 0 0;
  width: 100%;
  color: #fff;
  font-family: "UTM Avo", "Quicksand", "Google Sans Flex", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.08rem, 2.15vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-brand-kicker a.hero-brand-kicker__link {
  pointer-events: auto;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 0.2em;
  transition:
    text-decoration-color 0.2s ease,
    opacity 0.2s ease;
}

.hero-brand-kicker a.hero-brand-kicker__link:visited,
.hero-brand-kicker a.hero-brand-kicker__link:active {
  color: #fff;
}

.hero-brand-kicker a.hero-brand-kicker__link:hover {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.95);
}

.hero-brand-kicker a.hero-brand-kicker__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
  border-radius: 2px;
  color: #fff;
}

/* Nút tạm dừng / phát — nhỏ, giữa dưới cùng vùng video */
.hero-video-toggle {
  position: absolute;
  left: 50%;
  bottom: clamp(0.9rem, 2.5vh, 1.5rem);
  z-index: 3;
  transform: translateX(-50%);
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.hero-video-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.hero-video-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

/* Gradient mờ: từ đáy lên + từ trái ra + nhấn góc trái dưới */
.hero-video-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 130% 85% at 0% 100%, rgba(245, 137, 31, 0.18) 0%, transparent 52%),
    linear-gradient(
      to top,
      rgba(10, 12, 26, 0.92) 0%,
      rgba(10, 12, 26, 0.55) 32%,
      rgba(10, 12, 26, 0.18) 55%,
      transparent 78%
    ),
    linear-gradient(to right, rgba(8, 10, 22, 0.75) 0%, rgba(8, 10, 22, 0.28) 42%, transparent 72%);
}

.hero-banner.hero-banner--video {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  line-height: normal;
  padding-top: clamp(5.5rem, 12vh, 7rem);
  padding-bottom: clamp(2rem, 6vw, 3.5rem);
}

.hero-video-intro {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-video-intro-content {
  max-width: min(42rem, 100%);
}

.hero-video-title {
  color: #fff !important;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}

.hero-video-title .text-primary-sunny {
  text-shadow: 0 2px 22px rgba(245, 137, 31, 0.55);
}

/* Hero video — chữ nổi trên video, không phủ kín khung hình */
.hero-video-copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 40rem;
}

.hero-video-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 0 24px rgba(0, 0, 0, 0.45);
}

.hero-video-headline {
  margin: 0;
  font-family: "Google Sans Flex", "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.hero-video-headline__kicker {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(0.98rem, 2.35vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.96);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 4px 20px rgba(0, 0, 0, 0.55);
}

.hero-video-headline__brand {
  display: block;
  position: relative;
  margin: 0.1rem 0 0.2rem;
  font-size: clamp(2.65rem, 9.5vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-indent: 0.06em;
  text-transform: uppercase;
  line-height: 0.98;
  color: #fff;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.95),
    0 6px 28px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(0, 0, 0, 0.35);
}

.hero-video-headline__brand::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin-top: 0.55rem;
  margin-bottom: 0.15rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sunny-primary), var(--sunny-primary-light));
  opacity: 0.95;
}

.hero-video-headline__sub {
  display: block;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.88),
    0 3px 18px rgba(0, 0, 0, 0.5);
}

.hero-video-lead--on-video {
  margin-top: 1.1rem;
  padding: 0;
  border: none;
  font-size: clamp(0.875rem, 1.65vw, 0.98rem);
  line-height: 1.72;
  font-weight: 450;
  color: rgba(255, 255, 255, 0.94);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.88),
    0 4px 22px rgba(0, 0, 0, 0.5);
  max-width: none;
}

@media (max-width: 575.98px) {
  .hero-video-headline__brand::after {
    width: 2.5rem;
    margin-top: 0.45rem;
  }
}

/* Tiêu đề thương hiệu — Cormorant (section Giới thiệu) */
.sunny-brand-title {
  font-family: "Cormorant Garamond", "Times New Roman", Times, serif;
  font-weight: 600;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.sunny-brand-title__line {
  display: block;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.06em;
  line-height: 1.22;
}

.sunny-brand-title__brand {
  display: block;
  margin-top: 0.18em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-indent: 0.12em;
  text-transform: uppercase;
  line-height: 1.06;
}

.sunny-brand-title--section {
  font-size: clamp(1.55rem, 3.5vw, 2.15rem);
  line-height: 1.12;
}

.section-title.sunny-brand-title--section {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.sunny-brand-title--section .sunny-brand-title__line {
  color: var(--sunny-dark);
  text-shadow: none;
  font-size: 0.95em;
}

.sunny-brand-title--section .sunny-brand-title__brand {
  margin-top: 0.1em;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  letter-spacing: 0.22em;
  background: linear-gradient(
    108deg,
    #9a3412 0%,
    #ea580c 38%,
    #f5891f 72%,
    #c2410c 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .sunny-brand-title--section .sunny-brand-title__brand {
    color: var(--sunny-primary);
  }
}

.hero-video-lead {
  font-size: clamp(0.92rem, 1.75vw, 1.05rem);
  line-height: 1.68;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42);
  max-width: 38rem;
}

@media (max-width: 575.98px) {
  .hero-banner.hero-banner--video {
    padding-bottom: 2rem;
  }

  .hero-video-intro-content {
    max-width: none;
  }
}

/* Menu trong suốt / mờ để lộ video; khi cuộn xuống chuyển nền đặc */
.navbar-sunny.navbar-sunny--over-video {
  --sunny-nav-glass: rgba(255, 255, 255, 0.26);
  background: var(--sunny-nav-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 4px 20px rgba(26, 26, 46, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.navbar-sunny.navbar-sunny--over-video.navbar-sunny--scrolled {
  --sunny-nav-glass: #fff;
  background: #fff;
  background-color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.06);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

.navbar-sunny.navbar-sunny--over-video:not(.navbar-sunny--scrolled) .nav-link:hover:not(.active) {
  background: rgba(255, 255, 255, 0.42);
}

.navbar-sunny.navbar-sunny--over-video:not(.navbar-sunny--scrolled) .nav-link.active {
  background: rgba(255, 247, 237, 0.82);
  border-color: rgba(245, 137, 31, 0.3);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 3px 14px rgba(245, 137, 31, 0.12);
}

@media (max-width: 991.98px) {
  .navbar-sunny.navbar-sunny--over-video:not(.navbar-sunny--scrolled) .navbar-collapse {
    margin-top: 0.5rem;
    padding: 0.75rem 0.5rem 1rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(26, 26, 46, 0.08);
  }

  .navbar-sunny.navbar-sunny--over-video.navbar-sunny--scrolled .navbar-collapse {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 8px 28px rgba(26, 26, 46, 0.06);
  }
}

/* Tagline giới thiệu */
.sunny-tagline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 0 0 1rem;
  padding: 0.85rem 1.15rem 0.85rem 1.25rem;
  position: relative;
  border-radius: 0.75rem;
  background: linear-gradient(
    115deg,
    rgba(245, 137, 31, 0.1) 0%,
    rgba(255, 247, 237, 0.65) 45%,
    rgba(255, 255, 255, 0.4) 100%
  );
  border: 1px solid var(--sunny-border);
  box-shadow: 0 6px 28px rgba(245, 137, 31, 0.09);
}

.sunny-tagline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  bottom: 0.65rem;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--sunny-primary), var(--sunny-primary-light));
}

.sunny-tagline__part {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--sunny-dark);
}

.sunny-tagline__part--accent {
  background: linear-gradient(120deg, var(--sunny-primary) 0%, var(--sunny-primary-dark) 55%, #c2410c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--sunny-primary);
}

@supports not (background-clip: text) {
  .sunny-tagline__part--accent {
    -webkit-text-fill-color: unset;
    color: var(--sunny-primary);
    background: none;
  }
}

.sunny-tagline__sep {
  display: inline-block;
  width: 1.75rem;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 137, 31, 0.45), var(--sunny-primary), rgba(245, 137, 31, 0.45), transparent);
  flex-shrink: 0;
}

@media (max-width: 575.98px) {
  .sunny-tagline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .sunny-tagline__sep {
    width: 2.5rem;
    margin: 0.1rem 0;
  }
}

/* Giới thiệu: khung ảnh nền — hẹp hơn cột, căn giữa */
.intro-section-bg {
  width: 100%;
  max-width: 78%;
  margin-left: auto;
  margin-right: auto;
  height: clamp(300px, 36vw, 400px);
  min-height: 300px;
  background-color: var(--sunny-bg-soft);
  background-image: url("../img/gioi-thieu.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.intro-ceo-block {
  max-width: 78%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem 1.25rem;
  text-align: center;
  border-radius: 0.85rem;
  background: linear-gradient(
    145deg,
    rgba(255, 247, 237, 0.95) 0%,
    rgba(255, 255, 255, 0.88) 50%,
    rgba(245, 137, 31, 0.06) 100%
  );
  border: 1px solid var(--sunny-border);
  box-shadow: 0 8px 28px rgba(245, 137, 31, 0.08);
}

.intro-ceo-label {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sunny-primary);
}

.intro-ceo-line {
  width: 3rem;
  height: 2px;
  margin: 0 auto 0.75rem;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--sunny-primary), var(--sunny-primary-light), transparent);
  opacity: 0.85;
}

.intro-ceo-name {
  margin: 0;
  font-size: clamp(1.08rem, 2.1vw, 1.38rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--sunny-dark);
  text-rendering: optimizeLegibility;
}

/* Watermark SUNNY — nền mờ phần giới thiệu */
.intro-sunny-section {
  position: relative;
  overflow: hidden;
}

.intro-sunny-section > .container {
  position: relative;
  z-index: 1;
}

.intro-sunny-watermark {
  position: absolute;
  left: 48%;
  bottom: clamp(0.75rem, 7vw, 3.25rem);
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  font-family: "UTM Avo", "Quicksand", "Google Sans Flex", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(3.25rem, 17vw, 10.5rem);
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 0.88;
  text-transform: uppercase;
  color: #fff;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: clamp(1.5px, 0.22vw, 2.5px) rgba(26, 26, 46, 0.14);
  text-shadow: none;
  paint-order: stroke fill;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

@media (max-width: 767.98px) {
  .intro-sunny-watermark {
    display: none;
  }
}

@media (min-width: 992px) {
  .intro-sunny-watermark {
    font-size: clamp(5.5rem, 16vw, 11rem);
    left: 44%;
    bottom: clamp(1.25rem, 9vh, 4rem);
    -webkit-text-stroke: clamp(2px, 0.18vw, 3px) rgba(26, 26, 46, 0.12);
  }
}

/* Section titles */
.section-title {
  font-weight: 600;
  font-size: clamp(1.38rem, 2.75vw, 1.95rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: var(--sunny-dark);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.section-title .text-primary-sunny {
  text-shadow: none;
}

.section-sub {
  color: var(--sunny-muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.title-line {
  width: 64px;
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--sunny-primary) 0%, var(--sunny-primary-light) 55%, rgba(253, 186, 116, 0.85) 100%);
  box-shadow: 0 2px 14px rgba(245, 137, 31, 0.38);
}

/* Vì sao chọn SUNNY — lưới số liệu */
.why-sunny-intro {
  max-width: 42rem;
  margin: 0.75rem auto 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--sunny-muted);
  font-weight: 400;
}

@media (min-width: 768px) {
  .why-sunny-intro {
    font-size: 0.95rem;
  }
}

.why-sunny-content {
  width: 98%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.why-stat-card {
  --why-card-ease: cubic-bezier(0.33, 1, 0.68, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(26, 26, 46, 0.07);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  isolation: isolate;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 4px rgba(26, 26, 46, 0.03),
    0 12px 36px rgba(26, 26, 46, 0.06);
  transition:
    transform 0.5s var(--why-card-ease),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.why-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--sunny-primary) 0%,
    var(--sunny-primary-light) 45%,
    rgba(253, 186, 116, 0.65) 100%
  );
  opacity: 0.92;
  z-index: 2;
  transform-origin: left;
  transition: transform 0.5s var(--why-card-ease), opacity 0.35s ease;
}

.why-stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    120% 80% at 50% -20%,
    rgba(245, 137, 31, 0.14) 0%,
    transparent 65%
  );
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.why-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 137, 31, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 24px rgba(245, 137, 31, 0.12),
    0 20px 50px rgba(26, 26, 46, 0.08);
}

.why-stat-card:hover::before {
  transform: scaleX(1.02);
  opacity: 1;
}

.why-stat-card:hover::after {
  opacity: 1;
}

.why-stat-card:focus-within {
  outline: none;
  border-color: rgba(245, 137, 31, 0.4);
  box-shadow:
    0 0 0 3px rgba(245, 137, 31, 0.2),
    0 12px 36px rgba(26, 26, 46, 0.08);
}

.why-stat-card__num-wrap {
  position: relative;
  z-index: 1;
  padding: 1.4rem 1.5rem 1.15rem;
  background: linear-gradient(
    165deg,
    rgba(255, 247, 237, 0.99) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.92) 100%
  );
  border-bottom: 1px solid rgba(245, 137, 31, 0.12);
  transition: background 0.45s ease, border-color 0.35s ease;
}

.why-stat-card:hover .why-stat-card__num-wrap {
  background: linear-gradient(
    165deg,
    rgba(255, 247, 237, 1) 0%,
    rgba(245, 137, 31, 0.08) 40%,
    rgba(255, 255, 255, 0.98) 100%
  );
  border-bottom-color: rgba(245, 137, 31, 0.2);
}

.why-stat-card__num {
  margin: 0;
  font-size: clamp(1.65rem, 3.8vw, 2.15rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--sunny-primary);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.45s var(--why-card-ease), color 0.3s ease;
}

.why-stat-card:hover .why-stat-card__num {
  transform: scale(1.04);
  color: var(--sunny-primary-dark);
}

.why-stat-card__body {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem 1.5rem;
  transition: transform 0.45s var(--why-card-ease);
}

.why-stat-card:hover .why-stat-card__body {
  transform: translateY(-1px);
}

.why-stat-card__title {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  line-height: 1.35;
  transition: color 0.3s ease;
}

.why-stat-card:hover .why-stat-card__title {
  color: #000;
}

.why-stat-card__desc {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--sunny-muted);
  transition: opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
  .why-stat-card,
  .why-stat-card::before,
  .why-stat-card::after,
  .why-stat-card__num-wrap,
  .why-stat-card__num,
  .why-stat-card__body {
    transition: none;
  }

  .why-stat-card:hover {
    transform: none;
  }

  .why-stat-card:hover .why-stat-card__num {
    transform: none;
  }

  .why-stat-card:hover .why-stat-card__body {
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .why-sunny-content .col-md-6:nth-child(1) .why-stat-card {
    animation: why-stat-card-in 0.65s var(--why-card-ease) backwards;
  }

  .why-sunny-content .col-md-6:nth-child(2) .why-stat-card {
    animation: why-stat-card-in 0.65s var(--why-card-ease) 0.06s backwards;
  }

  .why-sunny-content .col-md-6:nth-child(3) .why-stat-card {
    animation: why-stat-card-in 0.65s var(--why-card-ease) 0.12s backwards;
  }

  .why-sunny-content .col-md-6:nth-child(4) .why-stat-card {
    animation: why-stat-card-in 0.65s var(--why-card-ease) 0.18s backwards;
  }

  .why-sunny-content .col-md-6:nth-child(5) .why-stat-card {
    animation: why-stat-card-in 0.65s var(--why-card-ease) 0.24s backwards;
  }

  .why-sunny-content .col-md-6:nth-child(6) .why-stat-card {
    animation: why-stat-card-in 0.65s var(--why-card-ease) 0.3s backwards;
  }
}

@keyframes why-stat-card-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cards & features */
.feature-card {
  border: 1px solid var(--sunny-border);
  border-radius: 1rem;
  padding: 1.75rem;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
  background: #fff;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(245, 137, 31, 0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: var(--sunny-bg-soft);
  color: var(--sunny-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Cảm nhận học sinh */
.testimonial-video-wrap {
  padding-bottom: 0.5rem;
}

.testimonial-video-card {
  position: relative;
  height: 100%;
  border-radius: 1.125rem;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 46, 0.07);
  background: #fff;
  box-shadow:
    0 2px 8px rgba(26, 26, 46, 0.04),
    0 16px 40px rgba(26, 26, 46, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-video-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 24px rgba(245, 137, 31, 0.12),
    0 20px 48px rgba(26, 26, 46, 0.08);
}

.testimonial-video-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.4rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(
    135deg,
    var(--sunny-primary-dark) 0%,
    var(--sunny-primary) 48%,
    var(--sunny-primary-light) 100%
  );
  box-shadow:
    0 4px 16px rgba(245, 137, 31, 0.42),
    0 2px 8px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.testimonial-video-badge i {
  color: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 1px 1px rgba(180, 83, 9, 0.35));
}

.testimonial-video-frame {
  position: relative;
  background: #1a1a2e;
}

.testimonial-video-poster {
  margin: 0;
  padding: 0;
  border: 0;
  background: #1a1a2e;
  cursor: pointer;
  overflow: hidden;
}

.testimonial-video-poster:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 2px;
}

.testimonial-video-poster img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.testimonial-video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
  transition: background 0.25s ease;
}

.testimonial-video-poster:hover img {
  transform: scale(1.03);
}

.testimonial-video-poster:hover::after {
  background: rgba(0, 0, 0, 0.28);
}

.testimonial-yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
  transition: transform 0.2s ease;
  pointer-events: none;
}

.testimonial-video-poster:hover .testimonial-yt-play {
  transform: translate(-50%, -50%) scale(1.06);
}

.testimonial-yt-play-icon {
  display: block;
  width: clamp(56px, 14vw, 72px);
  height: auto;
}

.testimonial-video-modal .ratio iframe,
.testimonial-video-modal-iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

/* Modal video cảm nhận — khung rộng, chủ đạo cam */
.testimonial-video-modal__dialog {
  max-width: min(96vw, 1320px);
  width: 100%;
}

.testimonial-video-modal__content {
  background: #0c0c0f;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.5),
    0 0 0 3px var(--sunny-primary),
    0 0 56px rgba(245, 137, 31, 0.22);
}

.testimonial-video-modal__header {
  background: linear-gradient(
    118deg,
    var(--sunny-primary-dark) 0%,
    var(--sunny-primary) 44%,
    var(--sunny-primary-light) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.testimonial-video-modal .modal-title {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.testimonial-video-modal__header .btn-close {
  padding: 0.65rem;
  opacity: 0.92;
  filter: brightness(0) invert(1);
}

.testimonial-video-modal__header .btn-close:hover {
  opacity: 1;
}

.testimonial-video-modal .modal-body .ratio {
  background: #000;
}

body.modal-open:has(.testimonial-video-modal.show) .modal-backdrop {
  --bs-backdrop-bg: rgba(55, 28, 10, 0.62);
  background-color: rgba(55, 28, 10, 0.62) !important;
}

.testimonial-video-body {
  padding: 1.25rem 1.35rem 1.4rem;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.testimonial-video-quote {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--sunny-dark);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sunny-primary), var(--sunny-primary-dark));
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(245, 137, 31, 0.35);
}

.testimonial-text-wrap {
  padding-top: 0.25rem;
}

.testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(245, 137, 31, 0.15);
  border-radius: 1.125rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 36px rgba(26, 26, 46, 0.07);
  padding: 1.75rem 1.5rem 1.6rem;
  height: 100%;
  background: linear-gradient(165deg, #fff 0%, rgba(255, 247, 237, 0.35) 100%);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-text-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 137, 31, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 44px rgba(245, 137, 31, 0.12);
}

.testimonial-card-icon {
  position: absolute;
  top: 1.1rem;
  right: 1.25rem;
  font-size: 1.75rem;
  color: rgba(245, 137, 31, 0.25);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card-text {
  position: relative;
  z-index: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--sunny-dark);
}

.testimonial-card .stars {
  position: relative;
  z-index: 1;
  color: var(--sunny-primary);
  letter-spacing: 0.05em;
}

/* Các hệ du học */
.section-he-du-hoc {
  position: relative;
  background: linear-gradient(180deg, #f5f6f9 0%, #fff 40%, #f9fafb 100%);
  overflow: hidden;
}

.section-he-du-hoc::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -25%;
  right: -12%;
  width: min(52vw, 26rem);
  height: min(52vw, 26rem);
  background: radial-gradient(circle at 50% 50%, rgba(245, 137, 31, 0.09) 0%, transparent 68%);
  z-index: 0;
}

.section-he-du-hoc .container {
  position: relative;
  z-index: 1;
}

.section-he-du-hoc__head {
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .section-he-du-hoc__head {
    margin-bottom: 3rem;
  }
}

.section-he-du-hoc__accent {
  width: 3rem;
  height: 4px;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--sunny-primary), var(--sunny-primary-light));
}

.section-he-du-hoc__title {
  font-size: clamp(1.38rem, 3.25vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sunny-dark);
  margin: 0 0 0.75rem;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

.section-he-du-hoc__lead {
  max-width: 38rem;
  font-size: clamp(0.94rem, 1.85vw, 1.02rem);
  line-height: 1.65;
  color: var(--sunny-muted);
  margin: 0;
}

.he-program-card {
  --hp-accent: var(--sunny-primary);
  --hp-accent-mid: var(--sunny-primary-light);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #fff 0%, #fcfcfd 55%, #fafafa 100%);
  border: 1px solid rgba(26, 26, 46, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 36px rgba(26, 26, 46, 0.07);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.section-he-du-hoc__grid .col-md-6:nth-child(1) .he-program-card {
  --hp-accent: #ea580c;
  --hp-accent-mid: #fb923c;
}

.section-he-du-hoc__grid .col-md-6:nth-child(2) .he-program-card {
  --hp-accent: #c2410c;
  --hp-accent-mid: #fdba74;
}

.section-he-du-hoc__grid .col-md-6:nth-child(3) .he-program-card {
  --hp-accent: #d97706;
  --hp-accent-mid: #fbbf24;
}

.section-he-du-hoc__grid .col-md-6:nth-child(4) .he-program-card {
  --hp-accent: #f5891f;
  --hp-accent-mid: #fed7aa;
}

.he-program-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--hp-accent) 0%, var(--hp-accent-mid) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
  pointer-events: none;
}

.he-program-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 137, 31, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 20px 50px rgba(245, 137, 31, 0.11),
    0 10px 28px rgba(26, 26, 46, 0.08);
}

.he-program-card:hover::after {
  opacity: 1;
}

.he-program-card:focus-within {
  border-color: rgba(245, 137, 31, 0.28);
  box-shadow:
    0 0 0 3px rgba(245, 137, 31, 0.14),
    0 12px 36px rgba(26, 26, 46, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .he-program-card,
  .he-program-card__media img,
  .he-program-card__cta,
  .he-program-card__cta-icon {
    transition: none !important;
  }

  .he-program-card:hover {
    transform: none;
  }

  .he-program-card:hover .he-program-card__media img {
    transform: none;
  }

  .he-program-card__cta:hover {
    transform: none;
  }
}

.he-program-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e4e6ec;
}

.he-program-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 14, 28, 0) 25%,
    rgba(12, 14, 28, 0.35) 65%,
    rgba(12, 14, 28, 0.62) 100%
  );
  opacity: 1;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.he-program-card:hover .he-program-card__media::after {
  opacity: 0.88;
}

.he-program-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.he-program-card:hover .he-program-card__media img {
  transform: scale(1.07);
}

.he-program-card__tag {
  margin: 0;
  padding: 0.4rem 0.9rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-radius: 999px;
}

.he-program-card__media > .he-program-card__tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

@supports not (backdrop-filter: blur(10px)) {
  .he-program-card__media > .he-program-card__tag {
    background: rgba(26, 26, 46, 0.65);
  }
}

.he-program-card__body > .he-program-card__tag {
  align-self: flex-start;
  margin-bottom: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--sunny-primary-dark);
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 0.4rem;
}

.he-program-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.45rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
}

.he-program-card__title {
  font-size: clamp(1.08rem, 2.15vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--sunny-dark);
  margin: 0 0 0.55rem;
  line-height: 1.28;
}

.he-program-card__text {
  font-size: 0.9125rem;
  line-height: 1.65;
  color: var(--sunny-muted);
  margin: 0;
  flex-grow: 1;
}

.he-program-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 1.3rem;
  padding: 0.62rem 1.1rem;
  align-self: stretch;
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--hp-accent);
  text-decoration: none;
  border-radius: 0.65rem;
  border: 1px solid rgba(245, 137, 31, 0.32);
  background: linear-gradient(180deg, rgba(255, 252, 248, 1) 0%, rgba(255, 243, 230, 0.65) 100%);
  transition:
    color 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}

.he-program-card__cta:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--hp-accent) 0%, var(--sunny-primary-dark) 100%);
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(245, 137, 31, 0.32);
  transform: translateY(-1px);
}

.he-program-card__cta-icon {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.he-program-card__cta:hover .he-program-card__cta-icon {
  transform: translateX(4px);
}

.he-program-card__cta:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 2px;
}

/* Đại học hàng đầu — đối tác */
.section-uni-partners {
  position: relative;
  background: linear-gradient(165deg, #fffefb 0%, var(--sunny-bg-soft) 45%, #fff7ed 100%);
}

.section-uni-partners__head {
  margin-bottom: 2.25rem;
}

@media (min-width: 992px) {
  .section-uni-partners__head {
    margin-bottom: 2.75rem;
  }
}

.section-uni-partners__accent {
  width: 3rem;
  height: 4px;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--sunny-primary), var(--sunny-primary-light));
}

.section-uni-partners__title {
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin: 0 0 0.65rem;
}

.section-uni-partners__lead {
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 500;
  color: var(--sunny-dark);
  margin: 0;
}

.section-uni-partners__foot {
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .section-uni-partners__foot {
    margin-top: 2.5rem;
  }
}

.section-uni-partners__btn {
  font-weight: 600;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
}

.section-uni-partners__btn.btn-sunny-pulse::before,
.section-uni-partners__btn.btn-sunny-pulse::after {
  border-radius: inherit;
}

.uni-partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  padding: 1.25rem 0.9rem 1.2rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow: 0 4px 22px rgba(26, 26, 46, 0.05);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

.uni-partner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sunny-primary), var(--sunny-primary-light));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.uni-partner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 137, 31, 0.28);
  box-shadow:
    0 14px 40px rgba(245, 137, 31, 0.12),
    0 6px 18px rgba(26, 26, 46, 0.06);
}

.uni-partner-card:hover::before {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .uni-partner-card {
    transition: none !important;
  }

  .uni-partner-card:hover {
    transform: none;
  }
}

.uni-partner-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.25rem;
  margin-bottom: 0.9rem;
  padding: 0.65rem 0.5rem;
  border-radius: 0.65rem;
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
  border: 1px solid rgba(26, 26, 46, 0.06);
}

.uni-partner-card__logo img {
  max-height: 52px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.uni-partner-card:hover .uni-partner-card__logo img {
  transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
  .uni-partner-card__logo img {
    transition: none !important;
  }

  .uni-partner-card:hover .uni-partner-card__logo img {
    transform: none;
  }
}

.uni-partner-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.uni-partner-card__abbr {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin: 0 0 0.2rem;
  line-height: 1.25;
}

.uni-partner-card__name {
  font-size: 0.6875rem;
  line-height: 1.4;
  color: var(--sunny-dark);
  margin: 0;
}

/* Chúc mừng Visa — slider */
.section-visa {
  background: linear-gradient(180deg, #fafbfc 0%, #fff 35%, #fffefb 100%);
}

.section-visa__accent {
  width: 3rem;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--sunny-primary), var(--sunny-primary-light));
}

.section-visa__title {
  font-size: clamp(1.35rem, 3.2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
}

.section-visa__lead {
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--sunny-dark);
}

/* Slider full chiều ngang container; nút prev/next chồng lên dải thẻ */
.visa-swiper-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.visa-swiper {
  overflow: hidden;
  padding-bottom: 2.65rem;
  border-radius: 0;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-color: var(--sunny-primary);
  --swiper-pagination-bullet-inactive-color: rgba(26, 26, 46, 0.2);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bottom: 0;
}

.visa-swiper-pagination.swiper-pagination-bullets {
  bottom: 0 !important;
}

/* Nút trong shell, căn theo dải thẻ (không bọc khung ngoài) */
.visa-swiper-btn {
  position: absolute;
  top: 42%;
  z-index: 12;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, #fff 0%, #fff7ed 100%);
  color: var(--sunny-primary);
  font-size: 1.2rem;
  line-height: 1;
  box-shadow:
    0 2px 8px rgba(26, 26, 46, 0.1),
    0 0 0 1px rgba(245, 137, 31, 0.28);
  transform: translateY(-50%);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.visa-swiper-btn:hover {
  background: linear-gradient(145deg, var(--sunny-primary) 0%, var(--sunny-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(245, 137, 31, 0.45);
  transform: translateY(-50%) scale(1.06);
}

.visa-swiper-btn:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 3px;
}

.visa-swiper-btn--prev {
  left: 0.65rem;
}

.visa-swiper-btn--next {
  right: 0.65rem;
}

@media (max-width: 575.98px) {
  .visa-swiper-btn {
    width: 2.2rem;
    height: 2.2rem;
    font-size: 1.05rem;
  }

  .visa-swiper-btn--prev {
    left: 0.4rem;
  }

  .visa-swiper-btn--next {
    right: 0.4rem;
  }
}

.visa-celebrate-card {
  position: relative;
  height: 100%;
  border-radius: 1.05rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 28px rgba(26, 26, 46, 0.07);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.swiper-slide .visa-celebrate-card {
  margin-bottom: 0.15rem;
}

.visa-celebrate-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 137, 31, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 44px rgba(245, 137, 31, 0.14),
    0 6px 16px rgba(26, 26, 46, 0.08);
}

.visa-celebrate-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, #e8eaef 0%, #f4f5f7 100%);
}

.visa-celebrate-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(26, 26, 46, 0.35) 100%);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s ease;
}

.visa-celebrate-card:hover .visa-celebrate-card__media::after {
  opacity: 0.4;
}

.visa-celebrate-card__media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.visa-celebrate-card:hover .visa-celebrate-card__media img {
  transform: scale(1.06);
}

.visa-celebrate-card__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 2;
  padding: 0.3rem 0.6rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary-dark) 0%, var(--sunny-primary) 55%, var(--sunny-primary-light) 160%);
  border-radius: 0.4rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.visa-celebrate-card__body {
  position: relative;
  z-index: 2;
  padding: 1.05rem 1.15rem 1.2rem;
  background: linear-gradient(180deg, #fffefb 0%, #fff 55%);
}

.visa-celebrate-card__name {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sunny-dark);
  margin: 0 0 0.25rem;
  line-height: 1.25;
}

.visa-celebrate-card__meta {
  font-size: 0.8125rem;
  color: var(--sunny-dark);
  margin: 0 0 0.55rem;
  line-height: 1.45;
}

.visa-celebrate-card__note {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--sunny-primary-dark);
  margin: 0;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(245, 137, 31, 0.2);
}

.visa-celebrate-card__note::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sunny-primary);
  box-shadow: 0 0 0 3px rgba(245, 137, 31, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .visa-celebrate-card,
  .visa-celebrate-card__media img {
    transition: none !important;
  }

  .visa-celebrate-card:hover {
    transform: none;
  }

  .visa-celebrate-card:hover .visa-celebrate-card__media img {
    transform: none;
  }
}

/* Hoạt động Sunny — cột trái + slider thẻ tin */
.section-hoat-dong {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 100% 0%, rgba(253, 186, 116, 0.18) 0%, transparent 52%),
    radial-gradient(ellipse 100% 70% at 0% 100%, rgba(245, 137, 31, 0.1) 0%, transparent 48%),
    linear-gradient(180deg, #fffdfb 0%, var(--sunny-bg-soft) 38%, #fff9f0 100%);
  border-top: 1px solid rgba(245, 137, 31, 0.1);
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

@media (min-width: 992px) {
  .section-hoat-dong__row {
    min-height: 22rem;
  }

  .section-hoat-dong__aside {
    min-height: 100%;
  }
}

.section-hoat-dong__title {
  text-align: left;
}

.section-hoat-dong .title-line {
  box-shadow: 0 2px 18px rgba(245, 137, 31, 0.42);
}

.section-hoat-dong__lead {
  color: #000000;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.6;
  max-width: none;
}

.hoat-dong-filter {
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  color: #000000;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.hoat-dong-filter:hover {
  border-color: rgba(26, 26, 46, 0.35);
}

.hoat-dong-filter.is-active {
  background: #0f172a;
  border-color: #0f172a;
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
}

.hoat-dong-filter:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 2px;
}

.hoat-dong-nav-btn {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  border-radius: 50%;
  background: #fff;
  color: #333;
  font-size: 1rem;
  line-height: 1;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.hoat-dong-nav-btn:hover {
  border-color: var(--sunny-primary);
  color: var(--sunny-primary);
  box-shadow: 0 2px 10px rgba(245, 137, 31, 0.2);
}

.hoat-dong-nav-btn:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 2px;
}

.hoat-dong-slide--hidden {
  display: none !important;
}

.section-hoat-dong__slider-col {
  min-width: 0;
}

.hoat-dong-swiper {
  overflow: hidden;
  padding: 0.25rem 0 0.65rem;
}

.hoat-dong-swiper .swiper-slide {
  width: min(300px, 82vw);
  height: auto;
}

@media (min-width: 1200px) {
  .hoat-dong-swiper .swiper-slide {
    width: 320px;
  }
}

.hoat-dong-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.05);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hoat-dong-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(145deg, #e8eaef 0%, #f0f2f5 100%);
}

.hoat-dong-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hoat-dong-card:hover .hoat-dong-card__media img {
  transform: scale(1.06);
}

.hoat-dong-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.25rem 1.15rem;
}

.hoat-dong-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 137, 31, 0.35);
  box-shadow: 0 14px 36px rgba(26, 26, 46, 0.08);
}

.hoat-dong-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hoat-dong-card__badge {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
}

.hoat-dong-card__badge--sun {
  background: linear-gradient(145deg, var(--sunny-primary-dark), var(--sunny-primary));
}

.hoat-dong-card__badge--violet {
  background: linear-gradient(145deg, #6366f1, #8b5cf6);
}

.hoat-dong-card__badge--teal {
  background: linear-gradient(145deg, #0d9488, #14b8a6);
}

.hoat-dong-card__dateblock {
  text-align: right;
  line-height: 1.05;
}

.hoat-dong-card__day {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #888;
}

.hoat-dong-card__ym {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #888;
  margin-top: 0.15rem;
}

.hoat-dong-card__title {
  margin: 0 0 0.55rem;
  font-size: clamp(0.98rem, 1.35vw, 1.0625rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.38;
}

.hoat-dong-card__title a {
  color: #000;
  transition: color 0.2s ease;
}

.hoat-dong-card:hover .hoat-dong-card__title a {
  color: var(--sunny-primary);
}

.hoat-dong-card__desc {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #666;
  flex: 1;
}

.hoat-dong-card__foot {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid #eee;
  font-size: 0.75rem;
  font-weight: 500;
  color: #888;
}

@media (prefers-reduced-motion: reduce) {
  .hoat-dong-card {
    transition: none !important;
  }

  .hoat-dong-card:hover {
    transform: none;
  }

  .hoat-dong-card:hover .hoat-dong-card__media img {
    transform: none;
  }
}

/* Trang Tin tức — neo cuộn dưới navbar khi vào danh sách bài viết */
.news-list-section {
  scroll-margin-top: 5.5rem;
}

/* Tin tức — chữ nền + tin nổi bật + swiper */
.section-tin-tuc {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fafbfd 55%, #ffffff 100%);
  border-top: 1px solid rgba(26, 26, 46, 0.07);
}

.section-tin-tuc__decor {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 72rem;
  text-align: center;
  font-size: clamp(4.5rem, 18vw, 12rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(26, 26, 46, 0.07);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

@supports not (-webkit-text-stroke: 1px black) {
  .section-tin-tuc__decor {
    color: rgba(26, 26, 46, 0.04);
    -webkit-text-stroke: 0;
  }
}

.section-tin-tuc .container {
  z-index: 1;
}

.section-tin-tuc__display-title {
  position: relative;
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #000;
}

.section-tin-tuc__lead {
  color: #000000;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.55;
  max-width: 28rem;
}

.tin-tuc-toolbar__btn {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background: #fff;
  color: #374151;
  font-size: 1.1rem;
  line-height: 1;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.tin-tuc-toolbar__btn--arrow:hover {
  border-color: var(--sunny-primary);
  color: var(--sunny-primary);
}

.tin-tuc-toolbar__btn--all {
  border-color: #1e3a5f;
  background: #1e3a5f;
  color: #fff !important;
}

.tin-tuc-toolbar__btn--all:hover {
  background: #172554;
  border-color: #172554;
  color: #fff !important;
}

.tin-tuc-toolbar__btn:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 2px;
}

.tin-tuc-featured {
  position: relative;
  z-index: 1;
  height: 100%;
}

.tin-tuc-featured__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

@media (min-width: 576px) {
  .tin-tuc-featured__inner {
    flex-direction: row;
    align-items: stretch;
    gap: 0;
  }
}

.tin-tuc-featured__photos {
  display: flex;
  gap: 0.45rem;
  flex: 0 0 auto;
}

@media (min-width: 576px) {
  .tin-tuc-featured__photos {
    flex: 1 1 48%;
    max-width: 52%;
  }
}

.tin-tuc-featured__shot {
  flex: 1;
  min-width: 0;
  border-radius: 0.65rem;
  overflow: hidden;
  background: #e5e7eb;
  box-shadow: 0 10px 32px rgba(26, 26, 46, 0.12);
}

.tin-tuc-featured__shot img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.tin-tuc-featured__panel {
  flex: 1;
  min-width: 0;
  margin-top: 0;
  padding: 1.35rem 1.4rem 1.4rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #1d4ed8 0%, #1e40af 45%, #172554 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 14px 40px rgba(30, 64, 175, 0.35);
}

@media (min-width: 576px) {
  .tin-tuc-featured__panel {
    margin-left: -2rem;
    align-self: center;
    z-index: 2;
  }
}

.tin-tuc-featured__tag {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e0e7ff;
  background: rgba(15, 23, 42, 0.45);
  border-radius: 999px;
}

.tin-tuc-featured__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.tin-tuc-featured__dot {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.4rem;
  vertical-align: 0.15em;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.35);
}

.tin-tuc-featured__sum {
  margin: 0 0 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.tin-tuc-featured__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
}

.tin-tuc-featured__when {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
}

.tin-tuc-featured__when .bi {
  opacity: 0.9;
}

.tin-tuc-featured__go {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.tin-tuc-featured__go:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
}

.tin-tuc-swiper {
  overflow: hidden;
  padding-bottom: 0.25rem;
}

.tin-tuc-swiper .swiper-slide {
  width: min(260px, 78vw);
  height: auto;
}

@media (min-width: 1200px) {
  .tin-tuc-swiper .swiper-slide {
    width: 280px;
  }
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.3rem;
  overflow: hidden;
  background: linear-gradient(168deg, rgba(255, 251, 246, 0.98) 0%, #ffffff 45%, #fffdfb 100%);
  border: 1px solid rgba(245, 137, 31, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 2px 8px rgba(33, 37, 41, 0.04),
    0 20px 44px rgba(33, 37, 41, 0.07),
    0 0 0 1px rgba(255, 252, 248, 0.85) inset;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.42s ease,
    border-color 0.38s ease;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 1.3rem 0 0 1.3rem;
  background: linear-gradient(
    180deg,
    var(--sunny-primary) 0%,
    var(--sunny-primary-dark) 55%,
    rgba(245, 137, 31, 0.15) 100%
  );
  opacity: 0;
  transition: opacity 0.38s ease;
  z-index: 5;
  pointer-events: none;
}

.news-card:hover:not(.news-card--muted)::before {
  opacity: 1;
}

.news-card--compact::before,
.news-card--muted::before {
  display: none;
}

.news-card:focus-within:not(.news-card--muted) {
  border-color: rgba(245, 137, 31, 0.32);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 0 0 3px rgba(245, 137, 31, 0.18),
    0 20px 44px rgba(33, 37, 41, 0.08);
}

.news-card:hover:not(.news-card--muted) {
  transform: translateY(-8px);
  border-color: rgba(245, 137, 31, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 8px 24px rgba(245, 137, 31, 0.1),
    0 28px 56px rgba(33, 37, 41, 0.11),
    0 0 0 1px rgba(255, 248, 240, 0.9) inset;
}

.news-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: linear-gradient(150deg, #e6e9f0 0%, #f5f6f9 52%, #edeef3 100%);
  isolation: isolate;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center bottom;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-card:hover:not(.news-card--muted) .news-card__media img {
  transform: scale(1.05);
}

.news-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    168deg,
    rgba(245, 137, 31, 0.09) 0%,
    transparent 42%,
    transparent 58%,
    rgba(33, 37, 41, 0.1) 78%,
    rgba(33, 37, 41, 0.48) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.news-card--compact .news-card__media::after {
  display: none;
}

.news-card--compact .news-card__body {
  padding: 1rem 1rem 1.15rem;
}

.news-card--compact .news-card__title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  line-height: 1.35;
}

.news-card--compact .news-card__meta {
  margin-top: 0.3rem;
  margin-bottom: 0;
  font-size: inherit;
}

.news-card--compact .news-card__meta time,
.news-card--compact .news-card__meta .news-card__date {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(33, 37, 41, 0.72);
  text-transform: none;
}

.news-card--compact {
  border-radius: 1.12rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 2px 5px rgba(33, 37, 41, 0.03),
    0 14px 32px rgba(33, 37, 41, 0.055),
    0 0 0 1px rgba(255, 252, 248, 0.92) inset;
}

.news-card--compact:hover:not(.news-card--muted) {
  transform: translateY(-5px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 6px 18px rgba(245, 137, 31, 0.08),
    0 20px 42px rgba(33, 37, 41, 0.09),
    0 0 0 1px rgba(255, 248, 240, 0.92) inset;
}

.news-card--compact:focus-within:not(.news-card--muted) {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 0 0 3px rgba(245, 137, 31, 0.16),
    0 14px 34px rgba(33, 37, 41, 0.06),
    0 0 0 1px rgba(255, 252, 248, 0.92) inset;
}

.news-card__date {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(33, 37, 41, 0.72);
}

.news-card__cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.42rem 0.9rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.085em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary-dark) 0%, var(--sunny-primary) 48%, #ffb347 138%);
  border-radius: 999px;
  box-shadow:
    0 2px 14px rgba(33, 37, 41, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.22) inset;
}

.news-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.48rem 1.55rem;
  background: linear-gradient(185deg, rgba(255, 252, 248, 0.55) 0%, rgba(255, 255, 255, 0.98) 38%, #ffffff 100%);
}

.news-card--compact .news-card__body {
  background: #fff;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  width: 100%;
  margin-bottom: 0.62rem;
  font-size: 0.7175rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(73, 80, 87, 0.78);
}

.news-card__meta time {
  color: inherit;
  text-transform: none;
  letter-spacing: 0.04em;
}

/* Nhãn dạng "Đại học · Sau ĐH" (không bọc class riêng) */
.news-card__meta > span:not(.news-card__views):not(.news-card__soon) {
  text-transform: none;
  letter-spacing: 0.035em;
}

.news-card__views {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  margin-left: auto;
  flex-shrink: 0;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(90, 98, 108, 0.88);
  white-space: nowrap;
}

.news-card__views .bi {
  font-size: 1.02rem;
  opacity: 0.62;
  line-height: 1;
}

.news-card:focus-within:not(.news-card--muted) .news-card__views,
.news-card:hover:not(.news-card--muted) .news-card__views {
  color: rgba(229, 90, 0, 0.95);
}

.news-card:focus-within:not(.news-card--muted) .news-card__views .bi,
.news-card:hover:not(.news-card--muted) .news-card__views .bi {
  opacity: 0.92;
}

.news-card__views--empty .bi {
  opacity: 0.48 !important;
}

.news-card:hover:not(.news-card--muted) .news-card__views--empty,
.news-card:focus-within:not(.news-card--muted) .news-card__views--empty {
  color: rgba(90, 98, 108, 0.72);
}

.news-card--muted .news-card__views {
  color: rgba(90, 98, 108, 0.58);
}

.news-card--muted .news-card__views .bi {
  opacity: 0.5;
}

.news-card__meta > .news-card__meta-plain {
  flex: 1 1 auto;
  min-width: 0;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 700;
}

.news-card__meta .news-card__date {
  letter-spacing: 0.02em;
  text-transform: none;
  display: inline-flex;
  align-items: center;
}

.news-card__title {
  margin: 0 0 0.68rem;
  font-size: clamp(1.025rem, 1.42vw, 1.14rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.37;
}

.news-card__title a {
  color: var(--sunny-dark);
  transition:
    color 0.26s ease,
    text-underline-offset 0.26s ease;
}

.news-card:hover:not(.news-card--muted) .news-card__title a {
  color: var(--sunny-primary);
}

.news-card:not(.news-card--muted):focus-within .news-card__title a {
  color: var(--sunny-primary);
  outline: none;
}

.news-card__excerpt {
  margin: 0 0 0.92rem;
  font-size: 0.8925rem;
  line-height: 1.64;
  color: rgba(33, 37, 41, 0.78);
  flex: 1;
}

.news-card__more {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0.48rem 0.92rem;
  font-size: 0.7825rem;
  font-weight: 700;
  letter-spacing: 0.038em;
  text-transform: uppercase;
  border-radius: 999px;
  color: var(--sunny-primary-dark);
  background: rgba(245, 137, 31, 0.1);
  border: 1px solid transparent;
  transition:
    transform 0.28s ease,
    color 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.news-card:hover:not(.news-card--muted) .news-card__more {
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary) 0%, var(--sunny-primary-dark) 92%);
  border-color: rgba(245, 137, 31, 0.35);
  box-shadow: 0 8px 20px rgba(245, 137, 31, 0.22);
}

.news-card:focus-within:not(.news-card--muted) .news-card__more {
  border-color: rgba(245, 137, 31, 0.45);
}

.news-card:hover:not(.news-card--muted) .news-card__more .bi {
  transform: translateX(5px);
}

.news-card__more .bi {
  display: inline-block;
  font-size: 1rem;
  transition: transform 0.28s ease;
}

@media (prefers-reduced-motion: reduce) {
  .news-card,
  .news-card::before,
  .news-card__media img,
  .news-card__more .bi {
    transition: none !important;
  }

  .news-card:hover:not(.news-card--muted) {
    transform: none;
  }

  .news-card:hover:not(.news-card--muted) .news-card__media img {
    transform: none;
  }

  .news-card:hover:not(.news-card--muted) .news-card__more .bi {
    transform: none;
  }
}

.news-card--muted {
  cursor: default;
  background: linear-gradient(175deg, #f8f9fc 0%, #ffffff 38%, #fcfcfd 100%);
  border-color: rgba(33, 37, 41, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 6px 22px rgba(33, 37, 41, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.news-card--muted:hover {
  transform: none;
  border-color: rgba(33, 37, 41, 0.085);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 32px rgba(33, 37, 41, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset;
}

.news-card--muted .news-card__media img {
  filter: saturate(0.9) brightness(1.03);
}

.news-card--muted:hover .news-card__media img {
  transform: none;
  filter: saturate(0.9) brightness(1.03);
}

.news-card--muted .news-card__media::after {
  background: linear-gradient(
    180deg,
    transparent 42%,
    rgba(248, 249, 251, 0.45) 100%
  );
}

.news-card--muted .news-card__body {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.35) 0%, #ffffff 55%);
}

.news-card--muted .news-card__cat:not(.event-badge) {
  background: linear-gradient(135deg, #5c6570 0%, #858e99 108%);
  box-shadow:
    0 2px 12px rgba(33, 37, 41, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.news-card--muted .news-card__meta {
  color: rgba(90, 98, 108, 0.72);
}

.news-card--muted .news-card__title {
  color: rgba(33, 37, 41, 0.88);
}

.news-card--muted .news-card__excerpt {
  color: rgba(52, 58, 64, 0.75);
}

.news-card__soon {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.58rem;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--sunny-primary-dark);
  background: rgba(245, 137, 31, 0.14);
  border: 1px solid rgba(245, 137, 31, 0.26);
  border-radius: 999px;
}

.news-card--muted .news-card__soon {
  color: rgba(73, 80, 87, 0.9);
  background: rgba(33, 37, 41, 0.06);
  border-color: rgba(33, 37, 41, 0.1);
}

/* Chuyên mục bài viết (CMS): card danh sách — bo góc nhỏ, không thanh cam trái khi hover */
.post-category-news-grid .news-card {
  border-radius: 0.45rem;
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.92) inset;
}

.post-category-news-grid .news-card::before {
  display: none !important;
}

.post-category-news-grid .news-card__media {
  aspect-ratio: 32 / 19;
}

/* Zoom ảnh khi hover: thời gian dài + easing rất mượt, đồng bộ với nâng thẻ */
.post-category-news-grid .news-card__media img {
  transform: translateZ(0);
  transform-origin: 50% 50%;
  transition: transform 1.85s cubic-bezier(0.19, 1, 0.22, 1);
  backface-visibility: hidden;
}

.post-category-news-grid .news-card:hover:not(.news-card--muted) .news-card__media img,
.post-category-news-grid .news-card:focus-within:not(.news-card--muted) .news-card__media img {
  transform: translateZ(0) scale(1.035);
}

.post-category-news-grid .news-card {
  transition:
    transform 1.85s cubic-bezier(0.19, 1, 0.22, 1),
    box-shadow 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.95s ease;
}

.post-category-news-grid .news-card:hover:not(.news-card--muted),
.post-category-news-grid .news-card:focus-within:not(.news-card--muted) {
  transform: translateY(-3px);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow:
    0 6px 20px rgba(15, 23, 42, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.98) inset;
}

.post-category-news-grid .news-card:focus-within:not(.news-card--muted) {
  outline: none;
  box-shadow:
    0 0 0 2px rgba(15, 23, 42, 0.12),
    0 6px 20px rgba(15, 23, 42, 0.07);
}

.post-category-news-grid .news-card--muted:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.post-category-news-grid .news-card__body {
  padding: 1rem 1.05rem 1.1rem;
  background: #fff;
}

.post-category-news-grid .news-card__title {
  margin-bottom: 0.25rem;
}

.post-category-news-grid .news-card__more {
  margin-top: 0.35rem;
  padding: 0;
  color: #000;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.post-category-news-grid .news-card:hover:not(.news-card--muted) .news-card__more,
.post-category-news-grid .news-card:focus-within:not(.news-card--muted) .news-card__more {
  color: #000;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.post-category-news-grid .news-card--muted .news-card__more,
.post-category-news-grid .news-card--muted:hover .news-card__more,
.post-category-news-grid .news-card--muted:focus-within .news-card__more {
  color: #000;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.post-category-news-grid .news-card__more .bi {
  color: inherit;
}

/* Chuyên mục CMS: tiêu đề hero nhỏ hơn một chút */
.tpl--post.tpl--category .about-intro-hero__title {
  font-size: clamp(1.3rem, 2.75vw, 1.88rem);
  line-height: 1.2;
}

/* Tin tức — nội dung bài chi tiết */
.news-article__lead {
  font-size: clamp(1.05rem, 1.2vw, 1.125rem);
  line-height: 1.65;
  max-width: 40rem;
}

.news-article h2 {
  font-size: 1.1875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin: 2rem 0 0.75rem;
}

.news-article h2:first-child {
  margin-top: 0;
}

.news-article p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

.news-article ul {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.news-article li {
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.4rem;
  color: #1a1a2e;
}

.news-article__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-article h3 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin: 1.5rem 0 0.65rem;
}

.news-article h3:first-child {
  margin-top: 0;
}

.news-article .uni-detail-note.small {
  font-size: 0.9375rem;
}

/* Bài viết chi tiết — layout 2 cột (mục lục trái) */
.news-detail-body {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 12%, #fff 100%);
}

.news-detail-article {
  min-width: 0;
}

.news-detail-section {
  scroll-margin-top: 5.5rem;
}

/* Tiêu đề mục (01 + tiêu đề): cùng một hàng — cột chữ minmax(0,1fr) để xuống dòng đúng */
.news-article .news-detail-section > h2.news-detail-h2.d-flex {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: 0.5rem;
}
.news-article .news-detail-section > h2.news-detail-h2 > span:first-child {
  line-height: 1.15;
}

/* Mục mở đầu bài hướng dẫn — khối tổng quan (lộ trình, ba lớp xét, checklist) */
.news-section-opener__shell {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(248, 250, 252, 0.99) 42%,
    rgba(255, 247, 237, 0.65) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.04),
    0 20px 40px -22px rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
  .news-section-opener__shell {
    padding: 1.6rem 1.65rem 1.75rem;
  }
}

.news-section-opener__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.news-section-opener__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  height: 2.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary) 0%, #e06910 100%);
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.32);
}

.news-section-opener__head-text {
  min-width: 0;
}

.news-section-opener__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.16rem, 2.15vw, 1.38rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--sunny-dark);
  line-height: 1.28;
}

.news-section-opener__kicker {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: rgba(26, 26, 46, 0.74);
  font-weight: 500;
}

.news-section-opener__flow {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
}

@media (min-width: 768px) {
  .news-section-opener__flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

.news-section-opener__flow-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.news-section-opener__flow-ico {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: rgba(245, 137, 31, 0.14);
  color: var(--sunny-primary-dark);
  font-size: 1.05rem;
}

.news-section-opener__flow-title {
  margin: 0 0 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  color: var(--sunny-dark);
}

.news-section-opener__flow-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #1a1a2e;
}

.news-section-opener__subheading {
  margin: 1.35rem 0 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
}

.news-section-opener__subheading--tight-top {
  margin-top: 0.85rem;
}

.news-section-opener__checklist {
  margin: 0 0 0.25rem;
  padding-left: 1.2rem;
}

.news-section-opener__checklist li {
  margin-bottom: 0.45rem;
}

.news-section-opener__note {
  margin-top: 1.2rem;
  margin-bottom: 0 !important;
}

/* Mục học vấn theo bậc — timeline visa D-4 → D-2-3 */
.news-level-section__shell {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(
    152deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(241, 245, 249, 0.97) 40%,
    rgba(255, 249, 242, 0.55) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.04),
    0 20px 40px -22px rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
  .news-level-section__shell {
    padding: 1.6rem 1.65rem 1.75rem;
  }
}

.news-section-opener + .news-level-section .news-level-section__shell {
  margin-top: 2.35rem;
}

.news-section-opener + .news-finance-section .news-finance-section__shell {
  margin-top: 2.35rem;
}

.news-level-section__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.news-level-section__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  height: 2.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary) 0%, #e06910 100%);
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.32);
}

.news-level-section__head-text {
  min-width: 0;
}

.news-level-section__intro {
  margin: 0 0 1.2rem;
  font-size: 1rem;
  line-height: 1.68;
  color: #1a1a2e;
}

.news-level-section__track {
  position: relative;
  margin: 0;
  padding: 0 0 0 0.15rem;
  list-style: none;
  counter-reset: level-step;
}

.news-level-section__track::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 0.65rem;
  bottom: 0.65rem;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(245, 137, 31, 0.45) 0%, rgba(15, 23, 42, 0.1) 100%);
}

@media (max-width: 575.98px) {
  .news-level-section__track::before {
    left: 0.95rem;
  }
}

.news-level-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 0.9rem;
  align-items: start;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.news-level-card:last-child {
  margin-bottom: 0;
}

.news-level-card__dot {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sunny-primary);
  box-shadow: 0 0 0 4px rgba(245, 137, 31, 0.12);
  position: relative;
  z-index: 1;
  margin-top: 0.35rem;
  margin-left: 0.15rem;
  flex-shrink: 0;
}

.news-level-card__body {
  min-width: 0;
  padding: 0.95rem 1.05rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

.news-level-card__row-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.75rem;
  margin-bottom: 0.5rem;
}

.news-level-card__visa {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  background: rgba(245, 137, 31, 0.14);
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.news-level-card__title {
  margin: 0;
  font-size: clamp(1.02rem, 1.85vw, 1.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  line-height: 1.3;
}

.news-article .news-level-card .news-level-card__title {
  margin: 0;
  font-size: clamp(1.02rem, 1.85vw, 1.1rem);
}

.news-level-card__title a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.news-level-card__title a:hover {
  color: var(--sunny-primary-dark);
  border-bottom-color: rgba(245, 137, 31, 0.45);
}

.news-level-card__body > p {
  margin: 0 0 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1a1a2e;
}

.news-level-card__body > p:last-child {
  margin-bottom: 0;
}

.news-level-card__list {
  margin: 0.15rem 0 0;
  padding-left: 1.15rem;
}

.news-level-card__list li {
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: #1a1a2e;
}

.news-level-card__list li:last-child {
  margin-bottom: 0;
}

.news-level-section__note {
  margin-top: 1.2rem;
  margin-bottom: 0 !important;
}

/* Mục ngôn ngữ — hai track (TOPIK / tiếng Anh) + lộ trình bù ngưỡng */
.news-lang-section__shell {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(
    148deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(238, 242, 255, 0.52) 38%,
    rgba(255, 247, 237, 0.58) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.04),
    0 20px 40px -22px rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
  .news-lang-section__shell {
    padding: 1.6rem 1.65rem 1.75rem;
  }
}

.news-level-section + .news-lang-section .news-lang-section__shell {
  margin-top: 2.35rem;
}

.news-finance-section + .news-lang-section .news-lang-section__shell {
  margin-top: 2.35rem;
}

.news-lang-section__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.news-lang-section__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  height: 2.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary) 0%, #e06910 100%);
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.32);
}

.news-lang-section__head-text {
  min-width: 0;
}

.news-lang-section__intro {
  margin: 0 0 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.68;
  color: #1a1a2e;
}

.news-lang-section__dual {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.35rem;
}

@media (min-width: 768px) {
  .news-lang-section__dual {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    align-items: stretch;
  }
}

.news-lang-panel {
  position: relative;
  padding: 1.1rem 1.15rem 1.15rem;
  padding-top: 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.news-lang-panel--ko::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, #a21caf 0%, var(--sunny-primary) 100%);
}

.news-lang-panel--en::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, #1d4ed8 0%, #0ea5e9 100%);
}

.news-lang-panel__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.55rem;
  font-size: clamp(1rem, 1.65vw, 1.06rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  line-height: 1.3;
}

.news-article .news-lang-panel .news-lang-panel__title {
  margin: 0 0 0.55rem;
}

.news-lang-panel__ico {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  background: rgba(245, 137, 31, 0.14);
  color: var(--sunny-primary-dark);
  font-size: 1rem;
}

.news-lang-panel--en .news-lang-panel__ico {
  background: rgba(29, 78, 216, 0.12);
  color: #1d4ed8;
}

.news-lang-panel > p {
  margin: 0 0 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1a1a2e;
}

.news-lang-panel > p:last-of-type {
  margin-bottom: 0;
}

.news-lang-panel__list {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.news-lang-panel__list li {
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: #1a1a2e;
}

.news-lang-panel__list li:last-child {
  margin-bottom: 0;
}

.news-lang-section__subheading {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
}

.news-article .news-lang-section .news-lang-section__subheading {
  margin: 0 0 0.75rem;
}

.news-lang-section__path {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 0.25rem;
}

@media (min-width: 768px) {
  .news-lang-section__path {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

.news-lang-path-step {
  padding: 0.88rem 0.95rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.news-lang-path-step__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  margin-bottom: 0.3rem;
}

.news-lang-path-step__title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sunny-dark);
  line-height: 1.35;
}

.news-lang-path-step p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #1a1a2e;
}

.news-lang-section__note {
  margin-top: 1.2rem;
  margin-bottom: 0 !important;
}

/* Mục tài chính & bảo lãnh — kênh chứng minh và nguyên tắc nhất quán */
.news-finance-section__shell {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(236, 253, 245, 0.55) 36%,
    rgba(255, 247, 237, 0.62) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.04),
    0 20px 40px -22px rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
  .news-finance-section__shell {
    padding: 1.6rem 1.65rem 1.75rem;
  }
}

.news-lang-section + .news-finance-section .news-finance-section__shell {
  margin-top: 2.35rem;
}

.news-finance-section__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.news-finance-section__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  height: 2.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary) 0%, #e06910 100%);
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.32);
}

.news-finance-section__head-text {
  min-width: 0;
}

.news-finance-section__intro {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.68;
  color: #1a1a2e;
}

.news-finance-section__bridge {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.68;
  color: #1a1a2e;
}

.news-finance-section__sources {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
}

@media (min-width: 576px) {
  .news-finance-section__sources {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.news-finance-source {
  position: relative;
  padding: 1.05rem 1.1rem 1.1rem;
  padding-top: 1.15rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.news-finance-source--savings::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, #059669 0%, #34d399 100%);
}

.news-finance-source--income::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, #1d4ed8 0%, #38bdf8 100%);
}

.news-finance-source--sponsor::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, #c2410c 0%, var(--sunny-primary) 100%);
}

.news-finance-source--award::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, #7c3aed 0%, #a78bfa 100%);
}

.news-finance-source__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.news-finance-source__ico {
  flex-shrink: 0;
  width: 2.05rem;
  height: 2.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  font-size: 1rem;
}

.news-finance-source--savings .news-finance-source__ico {
  background: rgba(5, 150, 105, 0.12);
  color: #047857;
}

.news-finance-source--income .news-finance-source__ico {
  background: rgba(29, 78, 216, 0.12);
  color: #1d4ed8;
}

.news-finance-source--sponsor .news-finance-source__ico {
  background: rgba(245, 137, 31, 0.14);
  color: var(--sunny-primary-dark);
}

.news-finance-source--award .news-finance-source__ico {
  background: rgba(124, 58, 237, 0.12);
  color: #6d28d9;
}

.news-finance-source__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  line-height: 1.3;
}

.news-article .news-finance-source .news-finance-source__title {
  margin: 0;
}

.news-finance-source > p {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #1a1a2e;
}

.news-finance-source > p:last-child {
  margin-bottom: 0;
}

.news-finance-source__list {
  margin: 0.35rem 0 0;
  padding-left: 1.05rem;
}

.news-finance-source__list li {
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #1a1a2e;
}

.news-finance-source__list li:last-child {
  margin-bottom: 0;
}

.news-finance-section__subheading {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
}

.news-article .news-finance-section .news-finance-section__subheading {
  margin: 0 0 0.55rem;
}

.news-finance-section__principles {
  margin: 0 0 1.15rem;
  padding-left: 1.15rem;
}

.news-finance-section__principles li {
  margin-bottom: 0.45rem;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: #1a1a2e;
}

.news-finance-section__principles li:last-child {
  margin-bottom: 0;
}

.news-finance-section__audit {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 0.2rem;
}

@media (min-width: 768px) {
  .news-finance-section__audit {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

.news-finance-audit-card {
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.news-finance-audit-card__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #047857;
  margin-bottom: 0.3rem;
}

.news-finance-audit-card__title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sunny-dark);
  line-height: 1.35;
}

.news-finance-audit-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #1a1a2e;
}

.news-finance-section__note {
  margin-top: 1.2rem;
  margin-bottom: 0 !important;
}

/* Mục sức khỏe & lý lịch — hai trụ + giai đoạn nộp */
.news-health-section__shell {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(
    152deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(240, 253, 250, 0.52) 35%,
    rgba(255, 241, 242, 0.45) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.04),
    0 20px 40px -22px rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
  .news-health-section__shell {
    padding: 1.6rem 1.65rem 1.75rem;
  }
}

.news-finance-section + .news-health-section .news-health-section__shell {
  margin-top: 2.35rem;
}

.news-lang-section + .news-health-section .news-health-section__shell {
  margin-top: 2.35rem;
}

.news-health-section + .news-lang-section .news-lang-section__shell {
  margin-top: 2.35rem;
}

.news-health-section + .news-finance-section .news-finance-section__shell {
  margin-top: 2.35rem;
}

.news-health-section__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.news-health-section__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  height: 2.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary) 0%, #e06910 100%);
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.32);
}

.news-health-section__head-text {
  min-width: 0;
}

.news-health-section__intro {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.68;
  color: #1a1a2e;
}

.news-health-section__dual {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.35rem;
}

@media (min-width: 768px) {
  .news-health-section__dual {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    align-items: stretch;
  }
}

.news-health-panel {
  position: relative;
  padding: 1.1rem 1.15rem 1.15rem;
  padding-top: 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.news-health-panel--body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, #0d9488 0%, #2dd4bf 100%);
}

.news-health-panel--legal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, #475569 0%, #94a3b8 100%);
}

.news-health-panel__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.55rem;
  font-size: clamp(1rem, 1.65vw, 1.06rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  line-height: 1.3;
}

.news-article .news-health-panel .news-health-panel__title {
  margin: 0 0 0.55rem;
}

.news-health-panel__ico {
  flex-shrink: 0;
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  font-size: 1rem;
}

.news-health-panel--body .news-health-panel__ico {
  background: rgba(13, 148, 136, 0.14);
  color: #0f766e;
}

.news-health-panel--legal .news-health-panel__ico {
  background: rgba(71, 85, 105, 0.14);
  color: #334155;
}

.news-health-panel > p {
  margin: 0 0 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1a1a2e;
}

.news-health-panel > p:last-of-type {
  margin-bottom: 0;
}

.news-health-panel__list {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.news-health-panel__list li {
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: #1a1a2e;
}

.news-health-panel__list li:last-child {
  margin-bottom: 0;
}

.news-health-section__subheading {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
}

.news-article .news-health-section .news-health-section__subheading {
  margin: 0 0 0.75rem;
}

.news-health-section__phases {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}

@media (min-width: 768px) {
  .news-health-section__phases {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
  }
}

.news-health-phase {
  padding: 0.88rem 0.95rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.news-health-phase__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: #0f766e;
  margin-bottom: 0.3rem;
}

.news-health-phase__title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--sunny-dark);
  line-height: 1.35;
}

.news-health-phase p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #1a1a2e;
}

.news-health-section__principles {
  margin: 0 0 0.2rem;
  padding-left: 1.15rem;
}

.news-health-section__principles li {
  margin-bottom: 0.45rem;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: #1a1a2e;
}

.news-health-section__principles li:last-child {
  margin-bottom: 0;
}

.news-health-section__note {
  margin-top: 1.2rem;
  margin-bottom: 0 !important;
}

/* Mục visa D-2 / D-4 & mốc thời gian */
.news-visa-section__shell {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(
    148deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(238, 242, 255, 0.58) 38%,
    rgba(255, 247, 237, 0.55) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.04),
    0 20px 40px -22px rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
  .news-visa-section__shell {
    padding: 1.6rem 1.65rem 1.75rem;
  }
}

.news-health-section + .news-visa-section .news-visa-section__shell {
  margin-top: 2.35rem;
}

.news-lang-section + .news-visa-section .news-visa-section__shell {
  margin-top: 2.35rem;
}

.news-finance-section + .news-visa-section .news-visa-section__shell {
  margin-top: 2.35rem;
}

.news-visa-section__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.news-visa-section__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  height: 2.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary) 0%, #e06910 100%);
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.32);
}

.news-visa-section__head-text {
  min-width: 0;
}

.news-visa-section__intro {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.68;
  color: #1a1a2e;
}

.news-visa-section__dual {
  display: grid;
  gap: 1rem;
  margin: 0 0 1.35rem;
}

@media (min-width: 768px) {
  .news-visa-section__dual {
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
    align-items: stretch;
  }
}

.news-visa-card {
  position: relative;
  padding: 1.1rem 1.15rem 1.15rem;
  padding-top: 1.2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
  overflow: hidden;
}

.news-visa-card--d4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, #ea580c 0%, var(--sunny-primary) 100%);
}

.news-visa-card--d2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
}

.news-visa-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.45rem;
}

.news-visa-card--d4 .news-visa-card__badge {
  color: var(--sunny-primary-dark);
  background: rgba(245, 137, 31, 0.14);
}

.news-visa-card--d2 .news-visa-card__badge {
  color: #1d4ed8;
  background: rgba(29, 78, 216, 0.12);
}

.news-visa-card__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1rem, 1.65vw, 1.06rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  line-height: 1.3;
}

.news-article .news-visa-card .news-visa-card__title {
  margin: 0 0 0.5rem;
}

.news-visa-card__title a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.15s ease,
    border-color 0.15s ease;
}

.news-visa-card__title a:hover {
  color: var(--sunny-primary-dark);
  border-bottom-color: rgba(245, 137, 31, 0.45);
}

.news-visa-card--d2 .news-visa-card__title a:hover {
  color: #1d4ed8;
  border-bottom-color: rgba(29, 78, 216, 0.4);
}

.news-visa-card > p {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1a1a2e;
}

.news-visa-card > p:last-of-type {
  margin-bottom: 0;
}

.news-visa-card__list {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.news-visa-card__list li {
  margin-bottom: 0.4rem;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: #1a1a2e;
}

.news-visa-card__list li:last-child {
  margin-bottom: 0;
}

.news-visa-section__subheading {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
}

.news-article .news-visa-section .news-visa-section__subheading {
  margin: 0 0 0.75rem;
}

.news-visa-section__flow {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 1.2rem;
  counter-reset: visa-flow;
}

@media (min-width: 768px) {
  .news-visa-section__flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .news-visa-section__flow {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-visa-flow-step {
  position: relative;
  padding: 0.88rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.06);
  counter-increment: visa-flow;
}

.news-visa-flow-step::before {
  content: counter(visa-flow, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.65rem;
  height: 1.65rem;
  margin-bottom: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #4338ca 0%, #6366f1 100%);
  border-radius: 0.45rem;
}

.news-visa-flow-step__title {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sunny-dark);
  line-height: 1.35;
}

.news-visa-flow-step p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.52;
  color: #1a1a2e;
}

.news-visa-section__tips {
  margin: 0 0 0.2rem;
  padding-left: 1.15rem;
}

.news-visa-section__tips li {
  margin-bottom: 0.45rem;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: #1a1a2e;
}

.news-visa-section__tips li:last-child {
  margin-bottom: 0;
}

.news-visa-section__note {
  margin-top: 1.2rem;
  margin-bottom: 0 !important;
}

/* Mục FAQ — thẻ câu hỏi */
.news-faq-section__shell {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(
    154deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(250, 250, 252, 0.98) 45%,
    rgba(255, 243, 230, 0.5) 100%
  );
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.04),
    0 20px 40px -22px rgba(15, 23, 42, 0.12);
}

@media (min-width: 768px) {
  .news-faq-section__shell {
    padding: 1.6rem 1.65rem 1.75rem;
  }
}

.news-visa-section + .news-finance-section .news-finance-section__shell {
  margin-top: 2.35rem;
}

.news-finance-section + .news-faq-section .news-faq-section__shell {
  margin-top: 2.35rem;
}

.news-visa-section + .news-faq-section .news-faq-section__shell {
  margin-top: 2.35rem;
}

.news-faq-section__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.news-faq-section__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  height: 2.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary) 0%, #e06910 100%);
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.32);
}

.news-faq-section__head-text {
  min-width: 0;
}

.news-faq-section__lead {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.65;
  color: #1a1a2e;
}

.news-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-faq-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem 1rem;
  align-items: start;
  margin: 0;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

@media (hover: hover) {
  .news-faq-item:hover {
    border-color: rgba(245, 137, 31, 0.22);
    box-shadow: 0 6px 20px -12px rgba(245, 137, 31, 0.2);
  }
}

.news-faq-item__num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 2.35rem;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(145deg, #334155 0%, #64748b 100%);
  border-radius: 0.65rem;
}

.news-faq-item:first-child .news-faq-item__num {
  background: linear-gradient(135deg, var(--sunny-primary) 0%, #e06910 100%);
}

.news-faq-item__body {
  min-width: 0;
}

.news-faq-item__question {
  margin: 0 0 0.5rem;
  font-size: clamp(1rem, 1.7vw, 1.06rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  line-height: 1.35;
}

.news-article .news-faq-item .news-faq-item__question {
  margin: 0 0 0.5rem;
}

.news-faq-item__answer p {
  margin: 0 0 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1a1a2e;
}

.news-faq-item__answer p:last-child {
  margin-bottom: 0;
}

.news-faq-item__answer ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}

.news-faq-item__answer li {
  margin-bottom: 0.35rem;
  font-size: 0.9375rem;
  line-height: 1.58;
  color: #1a1a2e;
}

.news-faq-item__answer li:last-child {
  margin-bottom: 0;
}

.news-faq-section__note {
  margin-top: 1.2rem;
  margin-bottom: 0 !important;
}

/* Mục kết luận — checklist & CTA */
.news-conclusion-section__shell {
  padding: 1.35rem 1.25rem 1.5rem;
  border-radius: 1.15rem;
  background: linear-gradient(
    156deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 247, 237, 0.75) 38%,
    rgba(254, 243, 199, 0.35) 100%
  );
  border: 1px solid rgba(245, 137, 31, 0.14);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.05),
    0 22px 44px -20px rgba(245, 137, 31, 0.18);
}

@media (min-width: 768px) {
  .news-conclusion-section__shell {
    padding: 1.6rem 1.65rem 1.75rem;
  }
}

.news-faq-section + .news-conclusion-section .news-conclusion-section__shell {
  margin-top: 2.35rem;
}

.news-conclusion-section__head {
  display: flex;
  align-items: flex-start;
  gap: 1rem 1.25rem;
  margin-bottom: 1.35rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.news-conclusion-section__step-num {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  height: 2.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary) 0%, #e06910 100%);
  border-radius: 0.75rem;
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.32);
}

.news-conclusion-section__head-text {
  min-width: 0;
}

.news-conclusion-section__lead {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.68;
  color: #1a1a2e;
}

.news-conclusion-section__body {
  margin: 0 0 1.15rem;
  font-size: 1rem;
  line-height: 1.68;
  color: #1a1a2e;
}

.news-conclusion-section__subheading {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
}

.news-article .news-conclusion-section .news-conclusion-section__subheading {
  margin: 0 0 0.75rem;
}

.news-conclusion-section__grid {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.25rem;
}

@media (min-width: 576px) {
  .news-conclusion-section__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 992px) {
  .news-conclusion-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-conclusion-card {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.07);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    transform 0.15s ease;
}

@media (hover: hover) {
  .news-conclusion-card:hover {
    border-color: rgba(245, 137, 31, 0.28);
    box-shadow: 0 8px 24px -14px rgba(245, 137, 31, 0.35);
    transform: translateY(-1px);
    color: inherit;
  }
}

.news-conclusion-card__ico {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: rgba(245, 137, 31, 0.14);
  color: var(--sunny-primary-dark);
  font-size: 1rem;
}

.news-conclusion-card__text {
  min-width: 0;
}

.news-conclusion-card__title {
  display: block;
  margin: 0 0 0.2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--sunny-dark);
}

.news-conclusion-card__hint {
  display: block;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(26, 26, 46, 0.68);
}

.news-conclusion-card__go {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
}

.news-conclusion-section__cta {
  padding: 1.1rem 1.15rem;
  margin: 0 0 1.1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px dashed rgba(245, 137, 31, 0.35);
  text-align: center;
}

.news-conclusion-section__cta p {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #1a1a2e;
}

.news-conclusion-section__cta .btn {
  font-weight: 600;
}

.news-conclusion-section__note {
  margin: 0;
}

/* Khi từng mục nằm trong <section>, mọi h2 đều là :first-child — cách khoảng bằng adjacent sibling */
.news-article .news-detail-section + .news-detail-section h2 {
  margin-top: 2.35rem;
}

.news-article .news-detail-section + .news-detail-section .news-section-opener__title {
  margin-top: 0;
}

.news-detail-figure {
  position: relative;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.06),
    0 20px 40px -12px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.news-detail-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 50%, rgba(15, 23, 42, 0.08) 100%);
}

.news-detail-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-toc {
  position: sticky;
  top: 5.5rem;
  z-index: 2;
  padding: 1.15rem 1.15rem 1.1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 28px -8px rgba(15, 23, 42, 0.1);
}

.news-detail-toc__title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  margin: 0 0 0.9rem;
}

.news-detail-toc__title .bi {
  font-size: 0.85rem;
  color: var(--sunny-primary);
}

.news-detail-toc__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-detail-toc__list li + li {
  margin-top: 0.2rem;
}

.news-detail-toc__list a {
  display: block;
  padding: 0.55rem 0.55rem 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  color: #334155;
  text-decoration: none;
  border-radius: 0.5rem;
  border-left: 3px solid transparent;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.news-detail-toc__list a:hover {
  color: var(--sunny-primary-dark);
  background: rgba(245, 137, 31, 0.08);
}

.news-detail-toc__list a.is-active {
  color: var(--sunny-primary-dark);
  background: linear-gradient(90deg, rgba(245, 137, 31, 0.12) 0%, rgba(255, 255, 255, 0) 100%);
  border-left-color: var(--sunny-primary);
  font-weight: 600;
}

.news-detail-toc__foot {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.news-detail-toc__back,
.news-detail-toc__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 0.65rem;
  padding: 0.5rem 0.75rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.news-detail-toc__back {
  color: var(--sunny-primary-dark);
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.news-detail-toc__back:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.news-detail-toc__cta {
  margin-top: 0.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--sunny-primary) 0%, var(--sunny-primary-dark) 100%);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.35);
}

.news-detail-toc__cta:hover {
  color: #fff;
  filter: brightness(1.04);
}

.news-detail-toc--mobile {
  display: block;
  margin-bottom: 1.25rem;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  position: static;
  top: auto;
}

@media (min-width: 992px) {
  .news-detail-toc--mobile {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .news-detail-toc--desktop {
    display: none;
  }
}

.news-detail-toc--mobile .accordion-item {
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 0.85rem !important;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px -6px rgba(15, 23, 42, 0.1);
}

.news-detail-toc--mobile .accordion-button {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0.9rem 1rem;
  box-shadow: none !important;
}

.news-detail-toc--mobile .accordion-button:not(.collapsed) {
  background: rgba(245, 137, 31, 0.08);
  color: var(--sunny-primary-dark);
}

.news-detail-toc--mobile .accordion-body {
  padding: 0 0.5rem 0.85rem 0.5rem;
}

.news-detail-toc--mobile .news-detail-toc {
  position: static;
  border: 0;
  box-shadow: none;
  padding: 0 0.5rem 0.4rem;
}

.news-detail-keypoints {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 575.98px) {
  .news-detail-keypoints {
    grid-template-columns: 1fr;
  }
}

.news-detail-key {
  display: flex;
  gap: 0.6rem;
  padding: 0.75rem 0.8rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.news-detail-key__icon {
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: linear-gradient(145deg, rgba(255, 247, 237, 0.95) 0%, #fff 100%);
  color: var(--sunny-primary);
  font-size: 1.05rem;
  border: 1px solid rgba(245, 137, 31, 0.15);
}

.news-detail-key__text strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.news-detail-key__text span {
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 600;
  color: #1e293b;
}

.news-related {
  position: relative;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.news-related::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 137, 31, 0.35), transparent);
}

.news-related__title {
  font-size: clamp(1.2rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 0.25rem;
}

.news-related__lead {
  color: #64748b;
  font-size: 0.95rem;
  max-width: 36rem;
  margin-bottom: 0;
}

.event-detail-meta {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1a1a2e;
}

.event-detail-meta li {
  margin-bottom: 0.4rem;
}

.event-detail-meta-card {
  padding: 1.2rem 1.35rem 1.3rem;
  margin-bottom: 1.75rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(245, 137, 31, 0.38);
  background: linear-gradient(160deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 247, 237, 0.88) 55%, rgba(255, 252, 246, 0.95) 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 10px 32px -18px rgba(245, 137, 31, 0.35);
}

.event-detail-meta-card .event-detail-meta {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.65;
}

.event-detail-meta-card .event-detail-meta li {
  margin-bottom: 0.55rem;
}

.event-detail-meta-card .event-detail-meta li:last-child {
  margin-bottom: 0;
}

.event-detail-meta-card .event-detail-meta .bi {
  font-size: 1.15em;
  vertical-align: -0.12em;
  opacity: 0.95;
}

@media (min-width: 768px) {
  .event-detail-meta-card {
    padding: 1.45rem 1.6rem 1.5rem;
    border-radius: 1.15rem;
  }

  .event-detail-meta-card .event-detail-meta {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

.event-signup-wrap {
  max-width: 42rem;
}

/* Chi tiết sự kiện — 2 cột: nội dung | form */
.event-detail-upcoming__intro {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.register-section.register-section--inline {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: transparent !important;
}

.event-signup-wrap--aside {
  max-width: 100%;
}

/* Form cạnh nội dung: kích thước tự nhiên, sticky trong phạm vi hàng (tới cuối nội dung trái) */
@media (min-width: 992px) {
  .event-detail-sticky-form {
    position: sticky;
    top: 5.75rem;
    z-index: 2;
    align-self: flex-start;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .event-detail-sticky-form {
    position: static;
    top: auto;
  }
}

/* Trang chi tiết sự kiện — cỡ chữ nội dung chi tiết lớn hơn một chút */
.page-su-kien-chi-tiet .event-detail-upcoming__intro .section-title {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
}

.page-su-kien-chi-tiet #chi-tiet-da-dien-ra header.page-about-hero .section-title {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
}

.page-su-kien-chi-tiet .news-article p,
.page-su-kien-chi-tiet .news-article li {
  font-size: 1.0625rem;
  line-height: 1.74;
}

.page-su-kien-chi-tiet .news-article h3 {
  font-size: 1.1875rem;
  margin-top: 1.65rem;
}

.page-su-kien-chi-tiet .news-article blockquote {
  font-size: 1.0625rem;
}

.page-su-kien-chi-tiet #tong-ket .section-title.h4 {
  font-size: 1.4rem;
}

.page-su-kien-chi-tiet #tong-ket .event-recap-stat .small {
  font-size: 1rem;
  line-height: 1.55;
}

.page-su-kien-chi-tiet #chi-tiet-da-dien-ra .uni-detail-note {
  font-size: 1rem;
  line-height: 1.6;
}

.page-su-kien-chi-tiet #chi-tiet-da-dien-ra figcaption.small {
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .page-su-kien-chi-tiet .news-article p,
  .page-su-kien-chi-tiet .news-article li {
    font-size: 1.075rem;
  }

  .page-su-kien-chi-tiet .news-article h3 {
    font-size: 1.25rem;
  }
}

.event-recap-stat__num {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sunny-primary-dark);
}

.event-badge--upcoming {
  background: linear-gradient(135deg, #198754 0%, #20c997 100%) !important;
}

.event-badge--past {
  background: linear-gradient(135deg, #5c636a 0%, #adb5bd 100%) !important;
}

/* Trang Sự kiện — hai khối danh sách */
.event-section {
  scroll-margin-top: 5.5rem;
  position: relative;
}

.event-section--upcoming {
  background: transparent;
}

.event-section--past {
  background: linear-gradient(165deg, rgba(255, 247, 237, 0.95) 0%, var(--sunny-bg-soft) 48%, #fff7ed 100%);
  border-top: 1px solid rgba(245, 137, 31, 0.12);
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  box-sizing: border-box;
}

.event-section__head {
  position: relative;
}

.event-section__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.event-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid transparent;
}

.event-section__badge .bi {
  font-size: 0.95rem;
  opacity: 0.9;
}

.event-section__badge--live {
  color: #0f5132;
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.12) 0%, rgba(32, 201, 151, 0.1) 100%);
  border-color: rgba(25, 135, 84, 0.22);
}

.event-section__badge--archive {
  color: #475569;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(15, 23, 42, 0.1);
}

.event-section__title {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.event-section__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(15, 23, 42, 0.78);
  max-width: 42rem;
}

.event-section__link-skip {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--sunny-primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(245, 137, 31, 0.1);
  border: 1px solid rgba(245, 137, 31, 0.22);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.event-section__link-skip:hover {
  background: rgba(245, 137, 31, 0.18);
  color: var(--sunny-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px -8px rgba(245, 137, 31, 0.45);
}

.event-section__link-skip:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 2px;
}

.event-section .news-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.event-section .news-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 36px -20px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(245, 137, 31, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .event-section .news-card,
  .event-section__link-skip {
    transition: none;
  }

  .event-section .news-card:hover {
    transform: none;
  }

  .event-section__link-skip:hover {
    transform: none;
  }
}

/* Form đăng ký — khung nét đứt + ảnh chuyên gia */
.register-section {
  background: linear-gradient(180deg, #fffefb 0%, var(--sunny-bg-soft) 45%, #fff 100%);
}

.register-wrap {
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 1.35rem;
  background: linear-gradient(165deg, #fffdfb 0%, #fff8ef 50%, #fff 100%);
  padding: 1.75rem 1.25rem;
  box-shadow:
    0 10px 40px rgba(26, 26, 46, 0.07),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
}

@media (min-width: 768px) {
  .register-wrap {
    padding: 2.25rem 2rem;
  }
}

@media (min-width: 1200px) {
  .register-wrap {
    padding: 2.5rem 2.75rem;
  }
}

.register-expert {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow:
    0 16px 40px rgba(26, 26, 46, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}

@media (min-width: 768px) {
  .register-expert {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
  }
}

.register-expert__photo {
  position: relative;
  flex: 1 1 0;
  min-height: 12rem;
  overflow: hidden;
  background: linear-gradient(145deg, #e8eaef 0%, #f1f5f9 100%);
}

.register-expert__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (max-width: 991.98px) {
  .register-expert__photo {
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
    min-height: auto;
  }

  .register-expert__photo img {
    position: static;
    height: 100%;
  }
}

.register-expert__banner {
  flex-shrink: 0;
  margin-top: 0;
  padding: 1.15rem 1.1rem 1.2rem;
  background: var(--sunny-primary);
  color: #fff;
  text-align: center;
}

.register-expert__banner-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.register-expert__banner-text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0.98;
}

/* Khung form — cùng chiều cao cột, nổi bật */
.form-register-panel {
  position: relative;
  border-radius: 1.25rem;
  padding: 1.65rem 1.4rem 1.75rem;
  background: linear-gradient(155deg, #ffffff 0%, #fffbf7 45%, #fff 100%);
  border: 1px solid rgba(245, 137, 31, 0.16);
  box-shadow:
    0 4px 28px rgba(26, 26, 46, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
  overflow: hidden;
}

.form-register-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--sunny-primary-dark) 0%,
    var(--sunny-primary) 38%,
    var(--sunny-primary-light) 100%
  );
  border-radius: 1.25rem 1.25rem 0 0;
}

.form-register-panel::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 137, 31, 0.09) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px) {
  .form-register-panel {
    padding: 2rem 2rem 2.1rem;
  }
}

@media (min-width: 1200px) {
  .form-register-panel {
    padding: 2.15rem 2.35rem 2.25rem;
  }
}

.form-register {
  position: relative;
  z-index: 1;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.form-register__title {
  margin: 0 0 0.5rem;
  padding-left: 0.85rem;
  border-left: 4px solid var(--sunny-primary);
  font-size: clamp(1.12rem, 2.6vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  text-align: left;
  color: #1a1a2e;
  line-height: 1.28;
}

.form-register__subtitle {
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
  max-width: 40rem;
}

.form-register-panel .form-register__fields {
  gap: 1rem !important;
}

.form-register__control {
  border: 1px solid rgba(226, 232, 240, 0.98);
  border-radius: 0.65rem;
  padding: 0.72rem 1rem;
  font-size: 0.9375rem;
  background: #fff;
  color: #0f172a;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.form-register__control:hover:not(:focus) {
  border-color: rgba(245, 137, 31, 0.35);
}

.form-register__control::placeholder {
  color: #64748b;
}

.form-register select.form-register__control {
  color: #334155;
  cursor: pointer;
}

.form-register__textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-register .form-control:focus,
.form-register .form-select:focus {
  border-color: var(--sunny-primary);
  background: #fffefb;
  box-shadow: 0 0 0 3px rgba(245, 137, 31, 0.18);
}

.form-register__submit {
  margin-top: 1.35rem;
  align-self: stretch;
  padding: 0.85rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff !important;
  background: linear-gradient(135deg, var(--sunny-primary-dark) 0%, var(--sunny-primary) 48%, #fb923c 100%);
  border: none;
  border-radius: 0.65rem;
  box-shadow:
    0 4px 16px rgba(245, 137, 31, 0.38),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

@media (min-width: 576px) {
  .form-register__submit {
    align-self: flex-start;
    min-width: 13rem;
  }
}

.form-register__submit:hover {
  color: #fff !important;
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 8px 28px rgba(245, 137, 31, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
}

.form-register__submit:focus-visible {
  outline: 2px solid var(--sunny-primary-dark);
  outline-offset: 3px;
}

.form-register__note {
  margin-top: 1.1rem;
  padding: 0.75rem 0.85rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #475569;
  max-width: none;
  background: rgba(245, 137, 31, 0.06);
  border-radius: 0.5rem;
  border: 1px solid rgba(245, 137, 31, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .form-register__submit:hover {
    transform: none;
  }
}

/* Nút gọi nổi — góc trái dưới (+ dải số trên desktop) */
.floating-call-wrap {
  --floating-call-btn-size: 3.5rem;
  position: fixed;
  left: max(1rem, env(safe-area-inset-left, 0px));
  bottom: max(1.35rem, env(safe-area-inset-bottom, 0px));
  z-index: 1040;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Đầu dải (mép trái) trùng tâm ngang nút tròn; nút nằm trên để che phần chồng */
.floating-call-strip {
  position: relative;
  z-index: 0;
  align-items: center;
  justify-content: center;
  margin-left: calc(-0.5 * var(--floating-call-btn-size));
  padding: 0.55rem 1.05rem 0.55rem calc(0.5 * var(--floating-call-btn-size) + 0.45rem);
  border-radius: 9999px;
  background: linear-gradient(145deg, var(--sunny-primary) 0%, var(--sunny-primary-dark) 100%);
  color: #fff !important;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 28px rgba(245, 137, 31, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-call-strip:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(245, 137, 31, 0.5);
}

.floating-call-strip:focus-visible {
  outline: 2px solid var(--sunny-primary-dark);
  outline-offset: 3px;
}

.floating-call-btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: var(--floating-call-btn-size, 3.5rem);
  height: var(--floating-call-btn-size, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sunny-primary) 0%, var(--sunny-primary-dark) 100%);
  color: #fff !important;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 6px 28px rgba(245, 137, 31, 0.42);
  text-decoration: none;
  overflow: visible;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-call-btn::before,
.floating-call-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: sunny-ring-pulse 2.4s ease-out infinite;
}

.floating-call-btn::after {
  animation-delay: 1.2s;
}

.floating-call-btn i {
  position: relative;
  z-index: 1;
}

.floating-call-btn:hover {
  color: #fff !important;
  transform: scale(1.07);
  box-shadow: 0 8px 32px rgba(245, 137, 31, 0.5);
}

.floating-call-btn:focus-visible {
  outline: 2px solid var(--sunny-primary-dark);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .floating-call-btn::before,
  .floating-call-btn::after {
    animation: none;
  }

  .floating-call-btn {
    box-shadow:
      0 6px 28px rgba(245, 137, 31, 0.35),
      0 0 0 2px rgba(245, 137, 31, 0.35);
  }
}

/* Thanh mạng xã hội dọc — cạnh phải.
   TẠM ẨN “Theo dõi SUNNY”: bỏ 2 dòng `display` bên dưới khi cần bật lại. */
.social-float {
  display: none !important;
  position: fixed;
  z-index: 1035;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-right: max(0.35rem, env(safe-area-inset-right, 0px));
  pointer-events: none;
}

.social-float__panel {
  pointer-events: auto;
  position: relative;
  width: 4.25rem;
  padding: 0.65rem 0.5rem 0.75rem;
  border-radius: 0.95rem 0 0 0.95rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(245, 137, 31, 0.16);
  border-right: 0;
  box-shadow:
    -8px 12px 40px rgba(26, 26, 46, 0.1),
    -2px 0 0 rgba(245, 137, 31, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.social-float__panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  bottom: 0.65rem;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--sunny-primary-light) 0%, var(--sunny-primary) 45%, var(--sunny-primary-dark) 100%);
  box-shadow: 0 0 12px rgba(245, 137, 31, 0.35);
}

.social-float__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin: 0 0 0.55rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(245, 137, 31, 0.12);
  text-align: center;
}

.social-float__head-icon {
  font-size: 0.85rem;
  color: var(--sunny-primary);
  opacity: 0.95;
}

.social-float__head-text {
  display: block;
  max-width: 3.2rem;
  font-size: 0.5625rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #5c4030;
}

.social-float__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.social-float__item {
  margin: 0;
  padding: 0;
}

.social-float__link {
  display: flex;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.12rem;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.social-float__link:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.social-float__link:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 3px;
}

.social-float__link--facebook {
  background: linear-gradient(145deg, #2b8cff 0%, #1877f2 100%);
}

.social-float__link--zalo {
  background: linear-gradient(145deg, #1e7cff 0%, #0068ff 100%);
}

.social-float__zalo-z {
  font-family: "Google Sans Flex", "Segoe UI", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.social-float__link--tiktok {
  background: linear-gradient(145deg, #00e5dd 0%, #ff2d6b 100%);
  font-size: 1.08rem;
}

.social-float__link--youtube {
  background: linear-gradient(145deg, #ff4a4a 0%, #cc0000 100%);
  font-size: 1.18rem;
}

@media (max-width: 575.98px) {
  .social-float {
    top: auto;
    bottom: max(5.25rem, calc(env(safe-area-inset-bottom, 0px) + 4.25rem));
    transform: none;
  }

  .social-float__panel {
    width: 3.95rem;
    padding: 0.55rem 0.45rem 0.65rem;
  }

  .social-float__link {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.02rem;
  }

  .social-float__head-text {
    font-size: 0.52rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-float__panel {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.98);
  }

  .social-float__link:hover {
    transform: none;
  }
}

@media print {
  .social-float {
    display: none !important;
  }

  .register-fab-wrap {
    display: none !important;
  }
}

/* Nút mở form đăng ký tư vấn — góc phải dưới; ẩn lúc đầu, hiện khi cuộn (html.js + class từ register-fab-scroll.js) */
.register-fab-wrap {
  position: fixed;
  z-index: 1042;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}

html.js .register-fab-wrap {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

html.js .register-fab-wrap.register-fab-wrap--visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 575.98px) {
  .register-fab-wrap {
    right: max(4.85rem, calc(0.35rem + env(safe-area-inset-right, 0px) + 4.25rem));
  }
}

.register-fab {
  pointer-events: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1.05rem;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--sunny-primary) 0%, var(--sunny-primary-dark) 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  box-shadow:
    0 8px 28px rgba(245, 137, 31, 0.45),
    0 1px 0 rgba(255, 255, 255, 0.2) inset;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.register-fab:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 137, 31, 0.52);
}

.register-fab:focus-visible {
  outline: 2px solid var(--sunny-primary-dark);
  outline-offset: 3px;
}

.register-fab__icon {
  font-size: 1.2rem;
  line-height: 1;
}

/* Modal đăng ký tư vấn */
.modal-register .modal-register__content {
  border-radius: 1rem;
  overflow: hidden;
}

.modal-register__header {
  background: linear-gradient(
    118deg,
    var(--sunny-primary-dark) 0%,
    var(--sunny-primary) 44%,
    var(--sunny-primary-light) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
  padding: 1rem 1.25rem;
}

.modal-register .modal-body {
  background: #fff;
}

.form-register--modal .form-label {
  color: var(--sunny-dark);
  font-weight: 600;
}

.form-register--modal .form-register__note {
  background: transparent;
  border: none;
  padding: 0;
}

.form-register--modal .form-register__submit {
  min-width: 0;
  align-self: stretch;
}

@media (prefers-reduced-motion: reduce) {
  .register-fab:hover {
    transform: none;
  }
}

/* FAQ */
.section-faq {
  background: linear-gradient(180deg, #fafbfd 0%, #fff 40%, #fafbfd 100%);
  border-top: 1px solid rgba(26, 26, 46, 0.06);
}

.section-faq__lead {
  max-width: 42rem;
  color: #000;
  font-size: clamp(0.92rem, 1.45vw, 1.02rem);
  line-height: 1.65;
}

.accordion-faq .accordion-item {
  border: 1px solid rgba(26, 26, 46, 0.09);
  border-radius: 0.75rem !important;
  overflow: hidden;
  margin-bottom: 0.65rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.04);
}

.accordion-faq .accordion-button {
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
  padding: 1.05rem 1.2rem;
  color: #000;
  background: #fff;
  box-shadow: none !important;
}

.accordion-faq .accordion-button:not(.collapsed) {
  color: var(--sunny-primary);
  background: linear-gradient(180deg, #fffdfb 0%, #fff 100%);
}

.accordion-faq .accordion-button::after {
  filter: brightness(0.35);
}

.accordion-faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-faq .accordion-body {
  padding: 0 1.2rem 1.15rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #1a1a1a;
}

.accordion-faq .accordion-body a {
  color: var(--sunny-primary);
  font-weight: 600;
}

.section-faq__note {
  color: #333;
}

.section-faq__note a {
  color: var(--sunny-primary);
  font-weight: 600;
}

/* Footer */
.footer-sunny {
  background: var(--sunny-dark);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0;
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
}

.footer-sunny h6 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-sunny a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-sunny a:hover {
  color: var(--sunny-primary-light);
}

.footer-sunny .footer-brand {
  line-height: 0;
}

.footer-sunny .footer-logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.footer-sunny__tagline {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.footer-sunny__tagline strong {
  color: #fff;
  font-weight: 600;
}

.footer-sunny__title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem !important;
}

.footer-sunny__links li {
  margin-bottom: 0.45rem;
}

.footer-sunny__links a {
  font-size: 0.875rem;
}

.footer-sunny__social-btn {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff !important;
  font-size: 1.1rem;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.footer-sunny__social-btn:hover {
  background: rgba(245, 137, 31, 0.4);
  color: #fff !important;
  transform: translateY(-2px);
}

.footer-sunny__contact li {
  margin-bottom: 0.55rem;
  font-size: 0.8125rem;
  line-height: 1.45;
}

.footer-sunny__contact-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 0.12rem;
}

.footer-sunny__hint {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-sunny__offices {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 2rem;
}

.footer-sunny__office {
  padding: 0.9rem 1rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  height: 100%;
}

.footer-sunny__office-name {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--sunny-primary-light);
  margin-bottom: 0.4rem;
}

.footer-sunny__office p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.footer-sunny__bottom {
  margin-top: 2rem;
}

.footer-sunny__bottom a:hover {
  color: var(--sunny-primary-light) !important;
}

.footer-sunny__legal a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-sunny__legal a:hover {
  color: var(--sunny-primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0;
  padding-top: 1.5rem;
  font-size: 0.875rem;
}

/* Info strip */
.info-strip {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.06);
  border: 1px solid var(--sunny-border);
}

.info-strip .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: var(--sunny-bg-soft);
  color: var(--sunny-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

/* Thông tin du học HQ — layout 2×2 */
.section-thong-tin {
  position: relative;
  background: linear-gradient(180deg, #f4f4f7 0%, #e8e8ee 48%, #ececf1 100%);
  overflow: hidden;
}

.section-thong-tin::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: -20% 50% 40% -30%;
  background: radial-gradient(ellipse 80% 70% at 30% 20%, rgba(245, 137, 31, 0.09) 0%, transparent 70%);
  z-index: 0;
}

.section-thong-tin .container {
  position: relative;
  z-index: 1;
}

.section-thong-tin__title {
  font-size: clamp(1.38rem, 3.15vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sunny-dark);
  margin: 0 0 0.75rem;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

.section-thong-tin__lead {
  max-width: 40rem;
  font-size: clamp(0.94rem, 1.8vw, 1.02rem);
  line-height: 1.65;
  color: var(--sunny-muted);
}

.info-route-card {
  --rc-accent: var(--sunny-primary);
  --rc-accent-soft: rgba(245, 137, 31, 0.12);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.5rem 1.65rem 1.45rem;
  border-radius: 1.2rem;
  background: linear-gradient(165deg, #fff 0%, #fcfcfd 45%, #fafafa 100%);
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 6px 28px rgba(26, 26, 46, 0.06);
  overflow: hidden;
  transform: translateY(0);
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.35s ease;
}

.section-thong-tin__grid .col-md-6:nth-child(1) .info-route-card {
  --rc-accent: #ea580c;
  --rc-accent-soft: rgba(234, 88, 12, 0.11);
}

.section-thong-tin__grid .col-md-6:nth-child(2) .info-route-card {
  --rc-accent: #c2410c;
  --rc-accent-soft: rgba(194, 65, 12, 0.1);
}

.section-thong-tin__grid .col-md-6:nth-child(3) .info-route-card {
  --rc-accent: #d97706;
  --rc-accent-soft: rgba(217, 119, 6, 0.11);
}

.section-thong-tin__grid .col-md-6:nth-child(4) .info-route-card {
  --rc-accent: #f5891f;
  --rc-accent-soft: rgba(245, 137, 31, 0.14);
}

.info-route-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rc-accent) 0%, var(--sunny-primary-light) 55%, rgba(253, 186, 116, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.info-route-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -25%;
  width: 55%;
  height: 75%;
  background: radial-gradient(circle at 50% 50%, var(--rc-accent-soft) 0%, transparent 68%);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.info-route-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 137, 31, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 16px 42px rgba(245, 137, 31, 0.12),
    0 8px 24px rgba(26, 26, 46, 0.07);
}

.info-route-card:hover::before {
  opacity: 1;
}

.info-route-card:hover::after {
  opacity: 1;
}

.info-route-card:focus-within {
  border-color: rgba(245, 137, 31, 0.3);
  box-shadow:
    0 0 0 3px rgba(245, 137, 31, 0.15),
    0 10px 32px rgba(26, 26, 46, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .info-route-card,
  .info-route-card::before,
  .info-route-card::after,
  .info-route-card__badge,
  .info-route-card__icon,
  .info-route-card__link,
  .info-route-card__link-arrow {
    transition: none !important;
  }

  .info-route-card:hover {
    transform: none;
  }

  .info-route-card:hover::after {
    opacity: 0.85;
  }
}

.info-route-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-route-card__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(145deg, var(--rc-accent) 0%, var(--sunny-primary-light) 100%);
  box-shadow:
    0 2px 10px rgba(245, 137, 31, 0.25),
    0 1px 0 rgba(255, 255, 255, 0.35) inset;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.info-route-card:hover .info-route-card__icon {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 6px 18px rgba(245, 137, 31, 0.28);
}

.info-route-card__badge {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: linear-gradient(145deg, rgba(255, 252, 248, 1) 0%, rgba(255, 237, 213, 0.65) 100%);
  border: 1px solid rgba(245, 137, 31, 0.18);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sunny-dark);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.info-route-card:hover .info-route-card__badge {
  transform: scale(1.05);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 4px 14px rgba(245, 137, 31, 0.18);
}

.info-route-card__badge .bi {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--rc-accent);
}

.info-route-card__title {
  flex: 1;
  min-width: 12ch;
  font-size: clamp(1.05rem, 2.1vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin: 0;
  line-height: 1.3;
}

.info-route-card__text {
  position: relative;
  z-index: 1;
  font-size: 0.9375rem;
  line-height: 1.65;
  flex-grow: 1;
  color: var(--sunny-muted);
}

.info-route-card__foot {
  position: relative;
  z-index: 1;
  margin-top: 1.35rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
  text-align: right;
}

.info-route-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.1rem;
  margin-right: -0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sunny-dark);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.info-route-card__link-arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.info-route-card__link:hover {
  color: var(--sunny-primary-dark);
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.98), rgba(255, 230, 204, 0.55));
  border-color: rgba(245, 137, 31, 0.22);
  box-shadow: 0 4px 16px rgba(245, 137, 31, 0.16);
}

.info-route-card__link:hover .info-route-card__link-arrow {
  transform: translateX(5px);
}

.info-route-card__link:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 2px;
}

/* Utilities */
.bg-soft-orange {
  background: var(--sunny-bg-soft);
}

@media (max-width: 991.98px) {
  .navbar-sunny .navbar-collapse {
    padding-top: 1rem;
  }
}

/* Trang Giới thiệu (gioi-thieu.html) */
.about-teachers-kicker {
  font-size: clamp(0.865rem, 1.42vw, 0.975rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Đoạn mở đội ngũ thầy cô: trải full chiều ngang container (không giới hạn như .why-sunny-intro) */
.about-teachers-lead-block {
  width: 100%;
  text-align: start;
}

.about-teachers-lead {
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--sunny-muted);
  font-weight: 400;
}

@media (min-width: 768px) {
  .about-teachers-lead {
    font-size: 0.9925rem;
  }
}

.about-teachers-feature {
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 237, 0.65) 100%);
  border: 1px solid var(--sunny-border);
  box-shadow: 0 8px 26px rgba(245, 137, 31, 0.07);
}

.about-teachers-feature__icon {
  font-size: 1.58rem;
  color: var(--sunny-primary);
  margin-bottom: 0.45rem;
  line-height: 1;
}

.about-teachers-feature strong.small,
.about-teachers-feature p.small {
  font-size: 0.925rem;
  line-height: 1.55;
}

.about-teacher-grid {
  --about-teacher-pane-accent: rgba(245, 137, 31, 0.65);
}

.about-teacher-pane {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.15rem;
  min-height: 100%;
  padding: 1.35rem 1.35rem 1.35rem 1.2rem;
  border-radius: 0.9rem;
  background: #fff;
  border: 1px solid rgba(33, 37, 41, 0.08);
  border-top: 2px solid var(--about-teacher-pane-accent);
  border-left: 2px solid var(--about-teacher-pane-accent);
  box-shadow: 0 8px 28px rgba(33, 37, 41, 0.07);
}

.about-teacher-pane__avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.about-teacher-pane__circle {
  width: var(--about-teacher-avatar, 7.25rem);
  height: var(--about-teacher-avatar, 7.25rem);
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(145deg, #fff7ed 0%, #ffedd5 45%, #fff 100%);
  border: 3px solid #fff;
  box-shadow: 0 6px 20px rgba(33, 37, 41, 0.1);
}

.about-teacher-pane--lead {
  --about-teacher-avatar: clamp(6.75rem, 16vw, 8.5rem);
}

.about-teacher-pane--tier2 {
  --about-teacher-avatar: clamp(5.5rem, 13.5vw, 6.65rem);
}

.about-teacher-pane__circle--initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, rgba(255, 247, 237, 0.98) 0%, rgba(254, 215, 170, 0.55) 100%);
}

.about-teacher-pane__initials {
  font-size: clamp(1.42rem, 3.5vw, 1.92rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sunny-primary);
  line-height: 1;
}

.about-teacher-pane__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-teacher-pane__badge {
  position: absolute;
  right: -0.1rem;
  bottom: 0.15rem;
  z-index: 2;
  padding: 0.26rem 0.55rem 0.23rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ea7a1a 0%, var(--sunny-primary) 50%, #f59e0b 100%);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(234, 122, 26, 0.45);
  border: 2px solid #fff;
}

.about-teacher-pane__body {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.about-teacher-pane__name {
  margin: 0 0 0.35rem;
  font-size: clamp(1.08rem, 2.35vw, 1.28rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--sunny-dark);
  line-height: 1.28;
}

.about-teacher-pane__role {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(33, 37, 41, 0.58);
}

.about-teacher-pane__facts {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.58;
  color: var(--sunny-dark);
}

.about-teacher-pane__facts li {
  position: relative;
  margin-bottom: 0.45rem;
  padding-left: 1rem;
}

.about-teacher-pane__facts li:last-child {
  margin-bottom: 0;
}

.about-teacher-pane__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: rgba(253, 186, 116, 0.95);
  box-shadow: 0 0 0 1px rgba(245, 137, 31, 0.25);
}

@media (max-width: 575.98px) {
  .about-teacher-pane {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .about-teacher-pane__body {
    text-align: center;
    width: 100%;
  }

  .about-teacher-pane__facts li {
    text-align: left;
    padding-left: 1rem;
  }
}

.page-about-breadcrumb {
  font-size: 0.9rem;
  color: var(--sunny-muted);
}

.page-about-breadcrumb a {
  color: var(--sunny-primary);
  font-weight: 600;
}

.page-about-breadcrumb a:hover {
  text-decoration: underline !important;
}

.page-about-breadcrumb__sep {
  margin: 0 0.4rem;
  opacity: 0.55;
}

/* Breadcrumb dạng thanh — dùng kèm .page-about-breadcrumb */
.page-about-breadcrumb--pill {
  display: block;
  max-width: 100%;
}

.page-about-breadcrumb--pill .page-about-breadcrumb__list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.35rem;
  margin: 0;
  padding: 0.4rem 0.65rem 0.4rem 0.5rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 4px 20px rgba(245, 137, 31, 0.09),
    0 2px 8px rgba(26, 26, 46, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.page-about-breadcrumb--pill .page-about-breadcrumb__step {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  font-size: 0.8125rem;
  line-height: 1.3;
}

.page-about-breadcrumb--pill .page-about-breadcrumb__step + .page-about-breadcrumb__step::before {
  content: "";
  display: inline-block;
  width: 0.32rem;
  height: 0.32rem;
  margin-right: 0.4rem;
  border-right: 2px solid rgba(217, 119, 15, 0.45);
  border-bottom: 2px solid rgba(217, 119, 15, 0.45);
  transform: rotate(-45deg);
  flex-shrink: 0;
  opacity: 0.9;
}

.page-about-breadcrumb--pill .page-about-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.55rem 0.2rem 0.45rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--sunny-primary-dark);
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.page-about-breadcrumb--pill .page-about-breadcrumb__home-ico {
  font-size: 0.95rem;
  color: var(--sunny-primary);
  line-height: 1;
}

.page-about-breadcrumb--pill .page-about-breadcrumb__link:hover {
  background: rgba(245, 137, 31, 0.12);
  color: var(--sunny-primary);
  text-decoration: none !important;
  box-shadow: 0 0 0 1px rgba(245, 137, 31, 0.12);
}

.page-about-breadcrumb--pill .page-about-breadcrumb__link:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 2px;
}

.page-about-breadcrumb--pill .page-about-breadcrumb__current {
  display: inline-block;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--sunny-dark);
  background: linear-gradient(145deg, rgba(245, 137, 31, 0.14) 0%, rgba(253, 186, 116, 0.2) 100%);
  border: 1px solid rgba(245, 137, 31, 0.18);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
}

.page-about-hero__lead {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  max-width: 42rem;
}

/* Trang Trường đại học — hero đối tác */
.uni-partners-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.uni-partners-hero__deco {
  position: absolute;
  inset: -20% -15% auto auto;
  width: min(72vw, 520px);
  height: min(72vw, 520px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 40%,
    rgba(245, 137, 31, 0.14) 0%,
    rgba(253, 186, 116, 0.06) 42%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.uni-partners-hero__deco::after {
  content: "";
  position: absolute;
  inset: auto auto -35% -25%;
  width: min(55vw, 380px);
  height: min(55vw, 380px);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(245, 137, 31, 0.1) 0%, transparent 65%);
}

.uni-partners-hero .container {
  position: relative;
  z-index: 1;
}

.uni-partners-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  width: fit-content;
  max-width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--sunny-primary-dark);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(245, 137, 31, 0.1);
}

.uni-partners-hero__kicker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sunny-primary) 0%, var(--sunny-primary-dark) 100%);
  color: #fff;
  font-size: 0.85rem;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(245, 137, 31, 0.35);
}

.uni-partners-hero__lead {
  margin: 0 0 1.15rem;
  font-size: clamp(1.02rem, 2.1vw, 1.2rem);
  line-height: 1.68;
  max-width: 38rem;
  color: rgba(0, 0, 0, 0.82);
  font-weight: 450;
}

.uni-partners-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  margin-bottom: 1.25rem;
}

.uni-partners-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sunny-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(245, 137, 31, 0.16);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.uni-partners-hero__chip i {
  color: var(--sunny-primary);
  font-size: 0.95rem;
}

.uni-partners-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sunny-primary-dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(245, 137, 31, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.uni-partners-hero__cta:hover {
  color: var(--sunny-primary);
  border-bottom-color: var(--sunny-primary);
}

.uni-partners-hero__cta:hover i {
  transform: translateY(2px);
}

.uni-partners-hero__cta:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.uni-partners-hero__cta i {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.uni-partners-hero__panel {
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: 1.25rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 251, 247, 0.94) 100%);
  border: 1px solid rgba(245, 137, 31, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 12px 40px rgba(26, 26, 46, 0.07),
    0 4px 14px rgba(245, 137, 31, 0.08);
}

.uni-partners-hero__panel-title {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  line-height: 1.4;
}

.uni-partners-hero__panel-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.uni-partners-hero__panel-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.78);
}

.uni-partners-hero__panel-list strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

.uni-partners-hero__panel-ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(245, 137, 31, 0.12) 0%, rgba(253, 186, 116, 0.18) 100%);
  color: var(--sunny-primary-dark);
  font-size: 1.1rem;
  line-height: 1;
  border: 1px solid rgba(245, 137, 31, 0.15);
}

@media (min-width: 992px) {
  .uni-partners-hero__deco {
    inset: -12% -8% auto auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .uni-partners-hero__cta:hover i {
    transform: none;
  }
}

/* Trang Giới thiệu — hero SUNNY */
.about-intro-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.about-intro-hero__deco {
  position: absolute;
  inset: -18% auto auto -18%;
  width: min(68vw, 480px);
  height: min(68vw, 480px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 65% 55%,
    rgba(245, 137, 31, 0.13) 0%,
    rgba(253, 186, 116, 0.05) 45%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.about-intro-hero__deco::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: min(48vw, 320px);
  height: min(48vw, 320px);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(245, 137, 31, 0.09) 0%, transparent 62%);
}

.about-intro-hero .container {
  position: relative;
  z-index: 1;
}

.about-intro-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  width: fit-content;
  max-width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--sunny-primary-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(245, 137, 31, 0.2);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(245, 137, 31, 0.09);
}

.about-intro-hero__kicker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sunny-primary) 0%, var(--sunny-primary-dark) 100%);
  color: #fff;
  font-size: 0.85rem;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(245, 137, 31, 0.32);
}

.about-intro-hero__title {
  font-size: clamp(1.42rem, 3.1vw, 2.05rem);
  line-height: 1.18;
  letter-spacing: -0.038em;
}

.about-intro-hero__lead {
  margin: 0 0 1.2rem;
  font-size: clamp(0.98rem, 1.9vw, 1.12rem);
  line-height: 1.7;
  max-width: 38rem;
  color: rgba(0, 0, 0, 0.78);
  font-weight: 450;
}

.about-intro-hero__lead--sm {
  font-size: clamp(0.9rem, 1.72vw, 1.04rem);
  line-height: 1.66;
}

.about-intro-hero__lead .about-intro-hero__strong {
  font-weight: 600;
  color: var(--sunny-dark);
}

.about-intro-hero__dot {
  display: inline-block;
  width: 0.28rem;
  height: 0.28rem;
  margin: 0 0.35rem 0.15rem;
  border-radius: 50%;
  background: var(--sunny-primary);
  vertical-align: middle;
  opacity: 0.85;
}

.about-intro-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.55rem;
  margin-bottom: 1.2rem;
}

.about-intro-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sunny-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(245, 137, 31, 0.17);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.about-intro-hero__chip i {
  color: var(--sunny-primary);
  font-size: 0.95rem;
}

.about-intro-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sunny-primary-dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(245, 137, 31, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.about-intro-hero__cta:hover {
  color: var(--sunny-primary);
  border-bottom-color: var(--sunny-primary);
}

.about-intro-hero__cta:hover i {
  transform: translateY(2px);
}

.about-intro-hero__cta:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.about-intro-hero__cta i {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.about-intro-hero__panel {
  padding: 1.4rem 1.35rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 248, 0.94) 50%, rgba(255, 255, 255, 0.97) 100%);
  border: 1px solid rgba(245, 137, 31, 0.17);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 14px 44px rgba(26, 26, 46, 0.07),
    0 4px 16px rgba(245, 137, 31, 0.07);
}

.about-intro-hero__panel-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sunny-primary);
  line-height: 1.4;
}

.about-intro-hero__panel-title {
  margin: 0 0 1.05rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
  color: var(--sunny-dark);
}

.about-intro-hero__panel-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.about-intro-hero__panel-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.58;
  color: rgba(0, 0, 0, 0.76);
}

.about-intro-hero__panel-list strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

.about-intro-hero__panel-ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(245, 137, 31, 0.11) 0%, rgba(253, 186, 116, 0.16) 100%);
  color: var(--sunny-primary-dark);
  font-size: 1.08rem;
  line-height: 1;
  border: 1px solid rgba(245, 137, 31, 0.14);
}

@media (min-width: 992px) {
  .about-intro-hero__deco {
    inset: -14% auto auto -10%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-intro-hero__cta:hover i {
    transform: none;
  }
}

/* Trang Khoảnh khắc — hero */
.moments-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.moments-hero__deco {
  position: absolute;
  inset: -22% -12% auto auto;
  width: min(70vw, 500px);
  height: min(70vw, 500px);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 45%,
    rgba(245, 137, 31, 0.15) 0%,
    rgba(253, 186, 116, 0.06) 48%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.moments-hero__deco::after {
  content: "";
  position: absolute;
  inset: auto auto -28% -22%;
  width: min(52vw, 340px);
  height: min(52vw, 340px);
  border-radius: 50%;
  background: radial-gradient(circle at 55% 50%, rgba(245, 137, 31, 0.08) 0%, transparent 64%);
}

.moments-hero .container {
  position: relative;
  z-index: 1;
}

.moments-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.85rem 0.35rem 0.45rem;
  width: fit-content;
  max-width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--sunny-primary-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(245, 137, 31, 0.2);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(245, 137, 31, 0.09);
}

.moments-hero__kicker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sunny-primary) 0%, var(--sunny-primary-dark) 100%);
  color: #fff;
  font-size: 0.82rem;
  line-height: 1;
  box-shadow: 0 2px 10px rgba(245, 137, 31, 0.32);
}

.moments-hero__title {
  font-size: clamp(1.42rem, 3.05vw, 2.02rem);
  line-height: 1.18;
  letter-spacing: -0.038em;
}

.moments-hero__lead {
  margin: 0 0 1.2rem;
  font-size: clamp(1.04rem, 2.12vw, 1.22rem);
  line-height: 1.72;
  max-width: 38rem;
  color: rgba(0, 0, 0, 0.78);
  font-weight: 450;
}

.moments-hero__lead .moments-hero__strong {
  font-weight: 600;
  color: var(--sunny-dark);
}

.moments-hero__dot {
  display: inline-block;
  width: 0.28rem;
  height: 0.28rem;
  margin: 0 0.35rem 0.15rem;
  border-radius: 50%;
  background: var(--sunny-primary);
  vertical-align: middle;
  opacity: 0.85;
}

.moments-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.55rem;
  margin-bottom: 1.2rem;
}

.moments-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sunny-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(245, 137, 31, 0.17);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.moments-hero__chip i {
  color: var(--sunny-primary);
  font-size: 0.95rem;
}

.moments-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sunny-primary-dark);
  text-decoration: none;
  border-bottom: 2px solid rgba(245, 137, 31, 0.45);
  transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.moments-hero__cta:hover {
  color: var(--sunny-primary);
  border-bottom-color: var(--sunny-primary);
}

.moments-hero__cta:hover i {
  transform: translateY(2px);
}

.moments-hero__cta:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.moments-hero__cta i {
  font-size: 1.15rem;
  transition: transform 0.2s ease;
}

.moments-hero__panel {
  padding: 1.4rem 1.35rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 248, 0.94) 50%, rgba(255, 255, 255, 0.97) 100%);
  border: 1px solid rgba(245, 137, 31, 0.17);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 14px 44px rgba(26, 26, 46, 0.07),
    0 4px 16px rgba(245, 137, 31, 0.07);
}

.moments-hero__panel-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sunny-primary);
  line-height: 1.4;
}

.moments-hero__panel-title {
  margin: 0 0 1.05rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
  color: var(--sunny-dark);
}

.moments-hero__panel-list {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.moments-hero__panel-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.58;
  color: rgba(0, 0, 0, 0.76);
}

.moments-hero__panel-list strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

.moments-hero__panel-ico {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(245, 137, 31, 0.11) 0%, rgba(253, 186, 116, 0.16) 100%);
  color: var(--sunny-primary-dark);
  font-size: 1.08rem;
  line-height: 1;
  border: 1px solid rgba(245, 137, 31, 0.14);
}

@media (min-width: 992px) {
  .moments-hero__deco {
    inset: -16% -8% auto auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .moments-hero__cta:hover i {
    transform: none;
  }
}

.max-w-about {
  max-width: 40rem;
}

.about-eco-list li {
  margin-bottom: 0.65rem;
  padding-left: 0.15rem;
  line-height: 1.55;
  color: var(--sunny-dark);
}

.about-eco-lead {
  font-size: clamp(1rem, 1.9vw, 1.08rem);
  line-height: 1.65;
}

.about-eco-card {
  height: 100%;
  padding: 1.35rem 1.4rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--sunny-border);
  box-shadow: 0 8px 28px rgba(245, 137, 31, 0.07);
}

.about-eco-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 0.7rem;
  background: rgba(245, 137, 31, 0.12);
  color: var(--sunny-primary);
  font-size: 1.2rem;
}

.about-eco-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--sunny-dark);
  margin-bottom: 0.65rem;
}

.about-eco-card__text {
  font-size: 0.95rem;
  line-height: 1.58;
  color: var(--sunny-dark);
  opacity: 0.92;
}

.about-eco-closing {
  font-size: 0.98rem;
  line-height: 1.62;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(245, 137, 31, 0.18);
}

.about-value-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .about-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-value-item--wide {
    grid-column: 1 / -1;
  }
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--sunny-border);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--sunny-dark);
}

.about-value-item__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: rgba(245, 137, 31, 0.12);
  color: var(--sunny-primary);
  font-size: 1.1rem;
}

.sunny-tagline.sunny-tagline--inline {
  margin-left: auto;
  margin-right: auto;
}

.about-team-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-team-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(245, 137, 31, 0.22);
  color: var(--sunny-dark);
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.06);
}

.about-team-pill i {
  color: var(--sunny-primary);
  font-size: 1rem;
}

.about-team-card {
  position: relative;
  border-radius: 1.05rem;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 244, 0.94) 100%);
  border: 1px solid rgba(245, 137, 31, 0.18);
  box-shadow: 0 10px 36px rgba(245, 137, 31, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.about-team-card--compact:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(245, 137, 31, 0.12);
}

.about-team-card--featured {
  border: 1px solid rgba(245, 137, 31, 0.22);
  box-shadow: 0 14px 44px rgba(245, 137, 31, 0.1);
}

.about-team-card--featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1;
  background: linear-gradient(90deg, var(--sunny-primary), var(--sunny-primary-light), rgba(253, 186, 116, 0.85));
}

.about-team-card__figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(245, 137, 31, 0.06);
}

.about-team-card--compact .about-team-card__figure {
  aspect-ratio: 1 / 1;
}

.about-team-card__figure--featured {
  aspect-ratio: auto;
  min-height: 260px;
  height: 100%;
}

@media (min-width: 768px) {
  .about-team-card__figure--featured {
    min-height: 320px;
  }
}

.about-team-card__img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media (min-width: 768px) {
  .about-team-card__img {
    min-height: 100%;
  }
}

.about-team-card__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  background: linear-gradient(
    145deg,
    rgba(245, 137, 31, 0.14) 0%,
    rgba(255, 255, 255, 0.55) 42%,
    rgba(253, 186, 116, 0.28) 100%
  );
}

.about-team-card__initials {
  font-size: clamp(1.65rem, 4.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--sunny-primary);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}

.about-team-card__inner {
  padding: 1.35rem 1.4rem 1.45rem;
}

.about-team-card__inner--featured {
  padding: 1.65rem 1.5rem 1.75rem;
}

@media (min-width: 768px) {
  .about-team-card__inner--featured {
    padding: 2rem 2.25rem 2.1rem;
  }
}

.about-team-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunny-primary);
  background: rgba(245, 137, 31, 0.12);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
}

.about-team-card__name {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.about-team-card__aka {
  font-weight: 500;
  font-size: 0.88em;
  color: rgba(33, 37, 41, 0.58);
}

.about-team-card__role {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sunny-primary);
  margin: 0 0 0.85rem;
  line-height: 1.4;
}

.about-team-card__lead {
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--sunny-dark);
  margin-bottom: 1rem;
  opacity: 0.92;
}

.about-team-card__bio {
  font-size: 0.875rem;
  line-height: 1.58;
  color: var(--sunny-dark);
  opacity: 0.9;
}

.about-team-card__list {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--sunny-dark);
}

.about-team-card__list li {
  margin-bottom: 0.4rem;
}

.about-team-card__list li:last-child {
  margin-bottom: 0;
}

/* Giới thiệu — khối 6 card đội ngũ nhân sự (ảnh mockup hai hàng) */
.about-team-section--six .about-team-highlights .about-team-pill {
  background: rgba(255, 249, 242, 0.95);
  border-color: rgba(245, 137, 31, 0.2);
}

.about-team-exec-card {
  padding: 0 0.35rem;
}

.about-team-exec-card__circle {
  position: relative;
  width: min(100%, clamp(17.5rem, 52vw, 20.5rem));
  aspect-ratio: 1 / 1;
  margin-inline: auto;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: #fff5ed;
  box-shadow:
    0 8px 28px rgba(33, 37, 41, 0.1),
    0 0 0 1px rgba(0, 0, 0, 0.045);
}

@media (min-width: 576px) {
  .about-team-exec-card__circle {
    width: min(100%, clamp(17.875rem, 36vw, 21.75rem));
  }
}

@media (min-width: 992px) {
  .about-team-exec-card__circle {
    width: min(100%, clamp(19.5rem, 26vw, 24rem));
  }
}

.about-team-exec-card__circle--interactive {
  cursor: pointer;
  transition:
    transform 0.42s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.42s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) and (pointer: fine) {
  .about-team-exec-card__circle--interactive:hover {
    transform: scale(1.035);
    box-shadow:
      0 20px 52px rgba(33, 37, 41, 0.14),
      0 0 0 3px rgba(255, 255, 255, 0.92) inset,
      0 0 0 8px rgba(245, 137, 31, 0.1),
      0 12px 36px rgba(245, 137, 31, 0.2);
  }

  .about-team-exec-card__circle--interactive:hover .about-team-exec-card__img:not(.about-team-exec-card__img--kim-yong) {
    transform: scale(1.05);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }

  .about-team-exec-card__circle--interactive:hover .about-team-exec-card__img.about-team-exec-card__img--kim-yong {
    transform: scale(1.21);
    transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  }
}

.about-team-exec-card__circle--interactive:focus {
  outline: none;
}

.about-team-exec-card__circle--interactive:focus-visible {
  outline: 3px solid var(--sunny-primary);
  outline-offset: 4px;
}

.about-team-exec-card__circle--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, #fffbf7 0%, #ffe8dc 52%, #fff5ed 100%);
}

/* Desktop (hover được): chi tiết trùm lên ảnh tròn — hover hoặc focus Tab */
@media (hover: hover) and (pointer: fine) {
  .about-team-exec-card__circle--interactive .about-team-exec-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.28s cubic-bezier(0.33, 1, 0.68, 1),
      visibility 0s linear 0.28s;
  }

  .about-team-exec-card__circle--interactive:is(:hover, :focus, :focus-within) .about-team-exec-card__overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.28s cubic-bezier(0.33, 1, 0.68, 1),
      visibility 0s linear 0s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-team-exec-card__circle--interactive .about-team-exec-card__overlay,
  .about-team-exec-card__circle--interactive {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

@media (prefers-reduced-motion: reduce) and (hover: hover) and (pointer: fine) {
  .about-team-exec-card__circle--interactive:hover {
    transform: none !important;
    box-shadow:
      0 8px 28px rgba(33, 37, 41, 0.1),
      0 0 0 1px rgba(0, 0, 0, 0.045) !important;
  }

  .about-team-exec-card__circle--interactive:hover .about-team-exec-card__img:not(.about-team-exec-card__img--kim-yong) {
    transform: none !important;
  }

  .about-team-exec-card__circle--interactive:hover .about-team-exec-card__img.about-team-exec-card__img--kim-yong {
    transform: scale(1.16) !important;
  }
}

/* Touch hoặc con trỏ thô: không dựa vào hover — luôn thấy gạch đầu dòng dưới ảnh tròn */
@media (hover: none), (pointer: coarse) {
  .about-team-exec-card__circle.about-team-exec-card__circle--interactive {
    overflow: visible;
    margin-bottom: 0;
  }

  .about-team-exec-card__circle--interactive .about-team-exec-card__overlay {
    position: relative;
    inset: auto;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex;
    border-radius: 0;
    width: auto;
    max-width: 22rem;
    margin-inline: auto;
    margin-top: 0.85rem;
    margin-bottom: 0;
  }

  .about-team-exec-card__circle--interactive .about-team-exec-card__overlay-body {
    max-height: none;
    overflow: visible;
    padding: 0.15rem 0.05rem;
  }

  .about-team-exec-card__overlay-scrim {
    display: none !important;
  }

  .about-team-exec-card__facts {
    font-size: clamp(0.775rem, 2.65vw, 0.8625rem);
    font-weight: 500;
    line-height: 1.46;
    color: rgba(33, 37, 41, 0.87);
    text-align: start;
  }

  .about-team-exec-card__facts li::before {
    background: var(--sunny-primary);
    opacity: 0.9;
    box-shadow: none;
  }
}

.about-team-exec-card__overlay-scrim {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse 118% 100% at 50% 92%, rgba(12, 10, 8, 0.86) 0%, rgba(12, 10, 8, 0.55) 48%, rgba(12, 10, 8, 0.35) 100%);
  backdrop-filter: blur(0px);
}

.about-team-exec-card__overlay--on-placeholder .about-team-exec-card__overlay-scrim {
  background: radial-gradient(ellipse 118% 100% at 50% 92%, rgba(90, 40, 10, 0.78) 0%, rgba(40, 20, 6, 0.45) 100%);
}

.about-team-exec-card__overlay-body {
  position: relative;
  z-index: 1;
  padding: clamp(0.65rem, 6%, 1.15rem) clamp(0.75rem, 8%, 1.05rem);
  max-height: 100%;
  width: 100%;
  overflow: auto;
}

.about-team-exec-card__facts {
  font-size: clamp(0.68rem, 2.85vw, 0.835rem);
  font-weight: 500;
  line-height: 1.42;
  color: rgba(255, 255, 255, 0.98);
}

.about-team-exec-card__facts li {
  padding-left: 0.72em;
  text-indent: -0.72em;
}

.about-team-exec-card__facts li + li {
  margin-top: 0.5em;
}

.about-team-exec-card__facts li::before {
  content: "";
  display: inline-block;
  width: 0.28rem;
  height: 0.28rem;
  margin-right: 0.52em;
  margin-bottom: 0.09em;
  vertical-align: middle;
  border-radius: 999px;
  background: rgba(253, 186, 116, 0.95);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.about-team-exec-card__img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.about-team-exec-card__img.about-team-exec-card__img--kim-yong {
  object-fit: cover;
  object-position: center center;
  /* Phóng to >100% để ảnh luôn phủ kín vòng tròn — tránh hai “sừng”/nền lộ ở cạnh khi ảnh thu nhỏ */
  transform: scale(1.16);
  transform-origin: center center;
}

.about-team-exec-card__initials {
  position: relative;
  z-index: 0;
  font-size: clamp(1.75rem, 5vw, 2.65rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--sunny-primary);
  opacity: 0.8;
}

.about-team-exec-card__name {
  font-size: clamp(1rem, 2.15vw, 1.175rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 0.42rem;
  color: var(--sunny-dark);
  line-height: 1.35;
}

.about-team-exec-card__aka {
  font-weight: 500;
  font-size: 0.92em;
  color: rgba(33, 37, 41, 0.55);
}

.about-team-exec-card__role {
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
  color: rgba(33, 37, 41, 0.62);
  line-height: 1.48;
}

.about-team-branch-divider {
  width: min(180px, 40vw);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(245, 137, 31, 0.45), transparent);
}

.about-team-branch-row {
  scroll-margin-top: 5rem;
}

.about-team-branch-card {
  height: 100%;
  border-radius: 0.875rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(33, 37, 41, 0.08);
  box-shadow: 0 6px 22px rgba(33, 37, 41, 0.07);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.42s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.42s cubic-bezier(0.33, 1, 0.68, 1),
    border-color 0.42s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (hover: hover) and (pointer: fine) {
  .about-team-branch-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 137, 31, 0.22);
    box-shadow:
      0 20px 48px rgba(33, 37, 41, 0.11),
      0 0 0 1px rgba(245, 137, 31, 0.08),
      0 10px 32px rgba(245, 137, 31, 0.12);
  }

  .about-team-branch-card:hover .about-team-branch-card__img {
    transform: scale(1.06);
    transition: transform 0.52s cubic-bezier(0.33, 1, 0.68, 1);
  }
}

.about-team-branch-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  width: 100%;
  flex-shrink: 0;
  background: #f2f2f2;
}

.about-team-branch-card__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.52s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (prefers-reduced-motion: reduce) {
  .about-team-branch-card,
  .about-team-branch-card__img {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

@media (prefers-reduced-motion: reduce) and (hover: hover) and (pointer: fine) {
  .about-team-branch-card:hover {
    transform: none !important;
    border-color: rgba(33, 37, 41, 0.08);
    box-shadow: 0 6px 22px rgba(33, 37, 41, 0.07) !important;
  }

  .about-team-branch-card:hover .about-team-branch-card__img {
    transform: none !important;
  }
}

/* Bỏ dải kem giữa ảnh và chữ — ảnh chiếm trọn vùng media */
.about-team-branch-card__accent {
  display: none;
}

.about-team-branch-card__foot {
  flex: 0 0 auto;
  padding: 1rem 0.85rem 1.2rem;
  background: #fff;
  border-top: 1px solid rgba(245, 137, 31, 0.13);
}

.about-team-branch-card__name {
  font-size: clamp(0.965rem, 1.85vw, 1.065rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  color: var(--sunny-dark);
  letter-spacing: -0.015em;
  line-height: 1.32;
}

.about-team-branch-card__role {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.58);
  line-height: 1.46;
}

.about-person-card {
  padding: 1.35rem 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--sunny-border);
  box-shadow: 0 6px 24px rgba(245, 137, 31, 0.06);
}

.about-person-card--compact {
  padding: 1.15rem 1.25rem;
}

.about-person-card__name {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin: 0 0 0.35rem;
}

.about-person-card__role {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sunny-primary);
  margin: 0 0 0.85rem;
}

.about-person-card__list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--sunny-dark);
}

.about-person-card__list li {
  margin-bottom: 0.35rem;
}

/* Card giáo viên Hàn (Thầy Kim, Thầy Yoo) — bố cục chuyên nghiệp */
.about-teacher-kr-card {
  position: relative;
  padding-top: 1.35rem;
  border: 1px solid rgba(245, 137, 31, 0.22);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 244, 0.92) 100%);
  box-shadow: 0 10px 32px rgba(245, 137, 31, 0.09);
  overflow: hidden;
}

.about-teacher-kr-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1rem 1rem 0 0;
  background: linear-gradient(90deg, var(--sunny-primary), var(--sunny-primary-light), rgba(253, 186, 116, 0.85));
}

.about-teacher-kr-card__head {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(245, 137, 31, 0.15);
}

.about-teacher-kr-card__name {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sunny-dark);
  line-height: 1.25;
}

.about-teacher-kr-card__role {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sunny-primary);
  line-height: 1.4;
}

.about-teacher-kr-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-teacher-kr-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.about-teacher-kr-card__icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.08rem;
  border-radius: 0.55rem;
  background: rgba(245, 137, 31, 0.12);
  color: var(--sunny-primary);
  font-size: 0.95rem;
}

.about-teacher-kr-card__text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--sunny-dark);
}

@media (min-width: 768px) {
  .about-teacher-kr-card__text {
    font-size: 0.9rem;
  }
}

/* Các dịch vụ (gioi-thieu.html) */
.about-services-section {
  position: relative;
}

.about-service-card {
  position: relative;
  height: 100%;
  padding: 1.45rem 1.35rem 1.3rem;
  border-radius: 1.1rem;
  overflow: hidden;
  background: linear-gradient(168deg, #ffffff 0%, rgba(255, 252, 247, 0.97) 55%, rgba(255, 248, 240, 0.5) 100%);
  border: 1px solid rgba(245, 137, 31, 0.14);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 10px 36px rgba(26, 26, 46, 0.055);
  transition:
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.about-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sunny-primary), var(--sunny-primary-light), rgba(253, 186, 116, 0.8));
}

.about-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 137, 31, 0.26);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 20px 52px rgba(245, 137, 31, 0.11);
}

.about-service-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.about-service-card__icon {
  flex-shrink: 0;
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  font-size: 1.28rem;
  line-height: 1;
  color: var(--sunny-primary);
  background: linear-gradient(145deg, rgba(245, 137, 31, 0.13), rgba(253, 186, 116, 0.22));
  box-shadow: 0 2px 14px rgba(245, 137, 31, 0.12);
}

.about-service-card__title {
  flex: 1;
  margin: 0;
  padding: 0.2rem 0 0;
  border: none;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  line-height: 1.38;
  color: var(--sunny-dark);
  text-align: left;
}

.about-service-card__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--sunny-dark);
}

.about-service-card__check {
  flex-shrink: 0;
  width: 1.38rem;
  height: 1.38rem;
  margin-top: 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 137, 31, 0.11);
  color: var(--sunny-primary);
  font-size: 0.72rem;
  font-weight: 600;
}

.about-service-card__list strong {
  font-weight: 600;
  color: var(--sunny-dark);
}

@media (min-width: 768px) {
  .about-service-card__title {
    font-size: 0.93rem;
  }

  .about-service-card__list li {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-service-card {
    transition: none;
  }

  .about-service-card:hover {
    transform: none;
  }
}

.about-facilities-section {
  position: relative;
  border-top: 1px solid rgba(245, 137, 31, 0.12);
  --facility-visual-h: 280px;
}

@media (min-width: 992px) {
  .about-facilities-section {
    --facility-visual-h: 340px;
  }
}

@media (min-width: 1200px) {
  .about-facilities-section {
    --facility-visual-h: 360px;
  }
}

.about-facilities-section__carousel-inner {
  overflow: hidden;
  border-color: rgba(245, 137, 31, 0.12);
  background: #fff;
}

.about-facility-slide {
  min-height: 100%;
}

@media (min-width: 992px) {
  .about-facility-slide .flex-lg-row > .col-lg-6:first-of-type {
    display: flex;
    align-items: center;
    align-self: stretch;
  }
}

.about-facility-slide__visual {
  width: 100%;
  height: var(--facility-visual-h);
  min-height: var(--facility-visual-h);
  max-height: var(--facility-visual-h);
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(249, 250, 251, 0.94);
}

.about-facility-slide__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-facility-slide__body {
  padding: 1.65rem 1.5rem;
}

@media (min-width: 992px) {
  .about-facility-slide__body {
    padding: 2.35rem clamp(1.85rem, 3.5vw, 2.75rem);
  }
}

.about-facility-slide__badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.2rem 0.65rem 0.18rem;
  font-size: 0.6625rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sunny-primary);
  border-radius: 999px;
  border: 1px solid rgba(245, 137, 31, 0.28);
  background: rgba(255, 250, 244, 0.95);
  line-height: 1.2;
}

.about-facility-slide__title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.2rem, 2.55vw, 1.52rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--sunny-dark);
  line-height: 1.28;
}

.about-facility-slide__lead {
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 1.42vw, 0.9625rem);
  line-height: 1.64;
  color: rgba(33, 37, 41, 0.68);
}

.about-facility-slide__facts {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.58;
  color: var(--sunny-dark);
}

.about-facility-slide__facts li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.08rem;
}

.about-facility-slide__facts li:last-child {
  margin-bottom: 0;
}

.about-facility-slide__facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: rgba(253, 186, 116, 0.98);
  box-shadow: 0 0 0 1px rgba(245, 137, 31, 0.22);
}

.carousel-facilities {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.carousel-facilities .carousel-inner {
  border-radius: 1rem;
}

.carousel-facilities.carousel .carousel-control-prev.carousel-facilities__ctrl,
.carousel-facilities.carousel .carousel-control-next.carousel-facilities__ctrl {
  width: clamp(2.65rem, 6vw, 3.1rem);
  height: clamp(2.65rem, 6vw, 3.1rem);
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 4;
  opacity: 1;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 50%;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 8px 22px rgba(33, 37, 41, 0.1);
}

.carousel-facilities.carousel .carousel-control-prev.carousel-facilities__ctrl:hover,
.carousel-facilities.carousel .carousel-control-next.carousel-facilities__ctrl:hover {
  background: rgba(255, 250, 244, 0.98);
  border-color: rgba(245, 137, 31, 0.36);
}

.carousel-facilities.carousel .carousel-control-prev.carousel-facilities__ctrl .carousel-control-prev-icon,
.carousel-facilities.carousel .carousel-control-next.carousel-facilities__ctrl .carousel-control-next-icon {
  width: 1.38rem;
  height: 1.38rem;
  filter: brightness(0) saturate(100%) invert(53%) sepia(85%) saturate(1200%) hue-rotate(352deg)
    brightness(0.94);
}

.carousel-facilities.carousel .carousel-control-prev.carousel-facilities__ctrl {
  left: clamp(0.45rem, 3vw, 1rem);
}

.carousel-facilities.carousel .carousel-control-next.carousel-facilities__ctrl {
  left: auto;
  right: clamp(0.45rem, 3vw, 1rem);
}

.carousel-facilities__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(0.55rem, 3vw, 0.95rem);
  z-index: 5;
  margin: 0;
  gap: 0.45rem;
  justify-content: center;
}

.carousel-facilities__dots [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(245, 137, 31, 0.35);
  background-color: rgba(255, 255, 255, 0.95);
}

.carousel-facilities__dots .active[data-bs-target] {
  width: 1.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ea7a1a, var(--sunny-primary));
  border-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-facilities.carousel .carousel-item {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

.contact-offices-section {
  scroll-margin-top: 5rem;
}

.contact-offices-section__intro {
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.62;
}

.contact-offices-nav-wrap {
  padding: 1.1rem 1.05rem 1.2rem;
  border-radius: 1rem;
  background: linear-gradient(165deg, rgba(255, 252, 247, 0.96) 0%, rgba(255, 255, 255, 0.99) 100%);
  border: 1px solid rgba(245, 137, 31, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 10px 34px rgba(33, 37, 41, 0.05);
}

@media (min-width: 992px) {
  .contact-offices-nav-wrap {
    position: sticky;
    top: clamp(5rem, 14vh, 6.75rem);
  }
}

.contact-offices-nav-label {
  margin: 0 0 0.95rem;
  font-size: 0.6825rem;
  font-weight: 700;
  letter-spacing: 0.115em;
  text-transform: uppercase;
  color: rgba(33, 37, 41, 0.48);
  line-height: 1.4;
}

.contact-offices-nav {
  gap: 0.5rem !important;
}

.contact-offices-nav__btn {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center;
  gap: 0.2rem;
  width: 100%;
  padding: 0.88rem 1.05rem !important;
  text-align: left !important;
  font-size: 0.9625rem;
  font-weight: 700;
  letter-spacing: -0.016em;
  line-height: 1.28;
  color: var(--sunny-dark) !important;
  border-radius: 0.82rem !important;
  border: 1px solid rgba(33, 37, 41, 0.08) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.contact-offices-nav__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 137, 31, 0.38);
}

.contact-offices-nav__btn:hover:not(.active) {
  transform: translateX(4px);
  border-color: rgba(245, 137, 31, 0.28) !important;
  background: rgba(255, 248, 240, 0.98) !important;
}

.contact-offices-nav__btn.active {
  border-color: rgba(245, 137, 31, 0.48) !important;
  background: linear-gradient(
    154deg,
    rgba(255, 247, 237, 0.99) 0%,
    rgba(255, 252, 248, 1) 40%,
    rgba(253, 186, 116, 0.18) 100%
  ) !important;
  color: var(--sunny-primary-dark) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 26px rgba(245, 137, 31, 0.14);
}

.contact-offices-nav__hint {
  display: block;
  font-size: 0.6275rem;
  font-weight: 600;
  letter-spacing: 0.082em;
  text-transform: uppercase;
  opacity: 0.58;
}

.contact-offices-nav__btn.active .contact-offices-nav__hint {
  opacity: 0.92;
}

.contact-offices-tab-content {
  min-height: clamp(21rem, 52vh, 31rem);
}

.contact-offices-tab-content .contact-office-card {
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-offices-tab-content .contact-office-card:hover {
  transform: none;
  border-color: rgba(245, 137, 31, 0.13);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 14px 42px rgba(33, 37, 41, 0.07),
    0 4px 14px rgba(245, 137, 31, 0.06);
}

@media (max-width: 991.98px) {
  .contact-offices-tab-content--stack-sm.contact-offices-tab-content > .tab-pane {
    display: block !important;
    opacity: 1 !important;
  }

  .contact-offices-tab-content--stack-sm.contact-offices-tab-content > .tab-pane.fade:not(.show) {
    opacity: 1 !important;
  }

  .contact-offices-tab-content--stack-sm.contact-offices-tab-content {
    min-height: 0;
  }

  .contact-offices-tab-content--stack-sm.contact-offices-tab-content > .tab-pane:not(:last-child) {
    margin-bottom: clamp(1.25rem, 4.2vw, 1.85rem);
  }
}

.contact-office-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid rgba(245, 137, 31, 0.13);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 14px 42px rgba(33, 37, 41, 0.07),
    0 4px 14px rgba(245, 137, 31, 0.06);
  transition:
    transform 0.32s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.contact-office-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 137, 31, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 22px 52px rgba(33, 37, 41, 0.09),
    0 12px 32px rgba(245, 137, 31, 0.1);
}

.contact-office-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.2rem 1rem;
  background: linear-gradient(165deg, rgba(255, 252, 247, 0.98) 0%, #fff 55%, rgba(255, 246, 235, 0.4) 100%);
  border-bottom: 1px solid rgba(245, 137, 31, 0.11);
}

.contact-office-card__icon {
  flex-shrink: 0;
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  font-size: 1.08rem;
  color: var(--sunny-primary);
  background: rgba(245, 137, 31, 0.12);
  box-shadow: 0 4px 12px rgba(245, 137, 31, 0.12);
}

.contact-office-card__titles {
  flex: 1;
  min-width: 0;
}

.contact-office-card__name {
  margin: 0 0 0.15rem;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--sunny-dark);
  line-height: 1.25;
}

.contact-office-card__region {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(33, 37, 41, 0.5);
  line-height: 1.35;
}

.contact-office-card__phone {
  flex-shrink: 0;
  font-size: 0.835rem;
  font-weight: 700;
  color: var(--sunny-primary) !important;
  text-decoration: none;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 137, 31, 0.28);
  background: rgba(255, 255, 255, 0.95);
}

.contact-office-card__phone:hover {
  background: rgba(255, 250, 244, 0.98);
  border-color: rgba(245, 137, 31, 0.45);
  color: var(--sunny-primary-dark) !important;
}

.contact-office-card__body {
  padding: 1rem 1.2rem 0.85rem;
  flex-shrink: 0;
}

.contact-office-card__addr {
  font-size: 0.9rem;
  line-height: 1.56;
  color: var(--sunny-dark);
}

.contact-office-card__addr.lang-en {
  letter-spacing: 0.015em;
  font-size: 0.875rem;
}

.contact-office-card__actions {
  padding: 0 1.2rem 0.65rem;
}

.contact-office-card--no-map .contact-office-card__actions {
  padding-bottom: 1.1rem;
}

.contact-office-card__dir {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sunny-dark) !important;
  text-decoration: none;
  padding: 0.35rem 0.75rem 0.32rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 137, 31, 0.22);
  background: rgba(255, 255, 255, 0.8);
}

.contact-office-card__dir:hover {
  color: var(--sunny-primary) !important;
  border-color: rgba(245, 137, 31, 0.45);
  background: rgba(255, 250, 244, 0.95);
}

.contact-office-card__dir i {
  font-size: 0.8625rem;
  opacity: 0.92;
}

.contact-office-card__map {
  position: relative;
  flex-shrink: 0;
  min-height: clamp(216px, 32vw, 280px);
  aspect-ratio: 16 / 10;
  background: linear-gradient(160deg, #f3f4f6 0%, #ebecef 100%);
}

.contact-office-card__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-offices-section__footnote {
  max-width: 48rem;
}

@media (max-width: 575.98px) {
  .contact-office-card__head {
    flex-wrap: wrap;
    row-gap: 0.65rem;
  }

  .contact-office-card__phone {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-office-card {
    transition: none;
  }

  .contact-office-card:hover {
    transform: none;
  }

  .contact-offices-nav__btn {
    transition: none;
  }

  .contact-offices-nav__btn:hover:not(.active) {
    transform: none;
  }
}

.about-legal-box {
  background: var(--sunny-bg-soft);
  border: 1px solid var(--sunny-border);
}

.about-legal-list li {
  margin-bottom: 0.5rem;
  padding-left: 0;
  line-height: 1.55;
}

.about-legal-list li:last-child {
  margin-bottom: 0;
}

/* Trang hệ tiếng D4-1 (he-tieng-d4.html) — hero & tóm tắt */
.program-d4-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(152deg, #fff8f0 0%, #ffedd5 42%, #fed7aa 100%);
  border-bottom: 1px solid rgba(245, 137, 31, 0.14);
}

.program-d4-hero__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 50% at 92% -5%, rgba(245, 137, 31, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 48% 42% at 5% 100%, rgba(253, 186, 116, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0.95;
}

.program-d4-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  margin-bottom: 0.35rem;
}

.program-d4-hero__eyebrow-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sunny-primary), var(--sunny-primary-light));
  box-shadow: 0 0 0 3px rgba(245, 137, 31, 0.2);
}

.program-d4-hero__lang-card {
  margin: 1.1rem 0 1.2rem;
  padding: 1.05rem 1.2rem 1.1rem;
  border-radius: 1.05rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 253, 250, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 12px 40px rgba(26, 26, 46, 0.07);
  border-left: 4px solid var(--sunny-primary);
}

.program-d4-hero__lang-ko {
  font-family: "Noto Sans KR", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  font-size: clamp(1.08rem, 2.4vw, 1.42rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #141428;
  margin: 0 0 0.45rem;
  line-height: 1.4;
}

.program-d4-hero__lang-vi {
  margin: 0;
  font-size: clamp(0.92rem, 1.65vw, 1.03rem);
  line-height: 1.58;
  color: var(--sunny-dark);
  font-weight: 500;
}

.program-d4-hero__lead {
  max-width: 40rem;
  font-size: clamp(0.94rem, 1.7vw, 1.06rem);
  line-height: 1.65;
  color: var(--sunny-muted);
}

.program-d4-hero__lead strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

.program-d4-hero__stats-card {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.2rem 1.45rem;
  border-radius: 1.2rem;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 251, 246, 0.94) 48%, rgba(255, 247, 237, 0.55) 100%);
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 56px rgba(26, 26, 46, 0.09),
    0 0 0 1px rgba(245, 137, 31, 0.06);
}

.program-d4-hero__stats-kicker {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 137, 31, 0.85);
  margin: 0 0 0.2rem;
}

.program-d4-hero__stats-title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sunny-dark);
  margin: 0 0 1.05rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(245, 137, 31, 0.18);
}

.program-d4-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}

@media (min-width: 380px) {
  .program-d4-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.program-d4-stat {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 0.8rem;
  border-radius: 0.95rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(245, 137, 31, 0.14);
  box-shadow: 0 4px 18px rgba(245, 137, 31, 0.06);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-d4-stat:hover {
  border-color: rgba(245, 137, 31, 0.28);
  box-shadow: 0 8px 28px rgba(245, 137, 31, 0.12);
  transform: translateY(-2px);
}

.program-d4-stat__icon {
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  background: linear-gradient(145deg, rgba(245, 137, 31, 0.16) 0%, rgba(245, 137, 31, 0.06) 100%);
  color: var(--sunny-primary-dark);
  font-size: 1.1rem;
}

.program-d4-stat__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.program-d4-stat__val {
  display: block;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.6vw, 1.02rem);
  color: var(--sunny-dark);
  line-height: 1.25;
  margin-bottom: 0.2rem;
}

.program-d4-stat__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sunny-muted);
  line-height: 1.35;
}

.program-d4-stat__hint {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--sunny-muted);
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  .program-d4-stat:hover {
    transform: none;
  }
}

.program-d4-section {
  scroll-margin-top: 5.25rem;
  margin-bottom: 2.5rem;
}

.program-d4-section:last-of-type {
  margin-bottom: 0;
}

/* Ghi chú dưới bảng chi phí (D4 / D2 …) — callout nhẹ, dễ đọc */
.program-cost-disclaimer {
  position: relative;
  margin-top: 1.35rem;
  margin-bottom: 0;
  padding: 1.05rem 1.2rem 1.1rem 1.35rem;
  padding-left: 3rem;
  font-size: 0.9rem;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(26, 26, 46, 0.92);
  background: linear-gradient(
    125deg,
    rgba(255, 251, 246, 0.99) 0%,
    rgba(255, 255, 255, 0.97) 42%,
    rgba(248, 250, 252, 0.96) 100%
  );
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 0.9rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 32px rgba(26, 26, 46, 0.07);
}

.program-cost-disclaimer::before {
  content: "i";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: #fff;
  background: linear-gradient(150deg, var(--sunny-primary) 0%, var(--sunny-primary-light) 100%);
  box-shadow:
    0 2px 10px rgba(245, 137, 31, 0.32),
    0 0 0 2px rgba(255, 255, 255, 0.95) inset;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.program-cost-disclaimer__hint {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.86em;
  line-height: 1.6;
  color: rgba(26, 26, 46, 0.72);
  font-weight: 500;
}

.program-cost-disclaimer a {
  color: var(--sunny-primary-dark);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 137, 31, 0.4);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
  padding-bottom: 0.06em;
}

.program-cost-disclaimer a:hover {
  color: var(--sunny-primary);
  border-bottom-color: var(--sunny-primary);
}

.program-cost-disclaimer a:focus-visible {
  outline: none;
  border-radius: 0.2rem;
  box-shadow: 0 0 0 3px rgba(245, 137, 31, 0.35);
}

@media (min-width: 576px) {
  .program-cost-disclaimer {
    padding: 1.15rem 1.4rem 1.2rem 1.45rem;
    padding-left: 3.15rem;
    font-size: 0.9375rem;
  }

  .program-cost-disclaimer__hint {
    display: inline;
    margin-top: 0;
    margin-left: 0.25rem;
    font-size: 0.9em;
  }
}

@media (min-width: 768px) {
  .program-cost-disclaimer {
    padding: 1.2rem 1.5rem 1.25rem 1.55rem;
    padding-left: 3.35rem;
    max-width: 100%;
  }

  .program-cost-disclaimer::before {
    left: 1.15rem;
    width: 1.45rem;
    height: 1.45rem;
    font-size: 0.76rem;
  }
}

/* Đối tượng phù hợp — D4-1 (he-tieng-d4.html) */
.program-d4-audience-section {
  margin-bottom: 2.75rem;
}

.program-d4-audience__head {
  margin-bottom: 1.75rem;
}

.news-article .program-d4-audience-section .program-d4-audience__title {
  margin: 0 0 1rem;
  font-size: clamp(1.22rem, 2.6vw, 1.48rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--sunny-dark);
}

.program-d4-audience__intro {
  padding: 1.15rem 1.25rem 1.2rem;
  border-radius: 1.05rem;
  background: linear-gradient(120deg, rgba(255, 251, 246, 0.95) 0%, rgba(255, 255, 255, 0.98) 55%, rgba(248, 250, 252, 0.92) 100%);
  border: 1px solid rgba(245, 137, 31, 0.14);
  border-left: 4px solid var(--sunny-primary);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 32px rgba(26, 26, 46, 0.05);
}

.program-d4-audience__intro-text {
  font-size: 0.97rem;
  line-height: 1.68;
  color: var(--sunny-dark);
}

.program-d4-audience__intro-text strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

.program-d4-audience__grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .program-d4-audience__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    align-items: stretch;
  }
}

@media (min-width: 1200px) {
  .program-d4-audience__grid {
    gap: 1.35rem;
  }
}

.program-d4-audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 1.4rem 1.25rem 1.45rem;
  padding-top: 1.45rem;
  border-radius: 1.12rem;
  background: linear-gradient(168deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 12px 40px rgba(26, 26, 46, 0.06);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}

.program-d4-audience-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 1.12rem 1.12rem 0 0;
  opacity: 0.95;
}

.program-d4-audience-card--thpt::before {
  background: linear-gradient(90deg, #0f766e 0%, #14b8a6 55%, #2dd4bf 100%);
}

.program-d4-audience-card--uni::before {
  background: linear-gradient(90deg, #1d4ed8 0%, #3b82f6 55%, #60a5fa 100%);
}

.program-d4-audience-card--career::before {
  background: linear-gradient(90deg, #c2410c 0%, var(--sunny-primary) 45%, #fb923c 100%);
}

.program-d4-audience-card::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -25%;
  right: -20%;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  opacity: 0.55;
}

.program-d4-audience-card--thpt::after {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
}

.program-d4-audience-card--uni::after {
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
}

.program-d4-audience-card--career::after {
  background: radial-gradient(circle, rgba(245, 137, 31, 0.14) 0%, transparent 70%);
}

.program-d4-audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 137, 31, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 52px rgba(245, 137, 31, 0.12);
}

.program-d4-audience-card__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 3.05rem;
  height: 3.05rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 0.88rem;
  font-size: 1.38rem;
}

.program-d4-audience-card--thpt .program-d4-audience-card__icon {
  color: #0f766e;
  background: rgba(20, 184, 166, 0.14);
  border: 1px solid rgba(20, 184, 166, 0.28);
  box-shadow: 0 8px 22px rgba(20, 184, 166, 0.12);
}

.program-d4-audience-card--uni .program-d4-audience-card__icon {
  color: #1d4ed8;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.24);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.1);
}

.program-d4-audience-card--career .program-d4-audience-card__icon {
  color: var(--sunny-primary-dark);
  background: rgba(245, 137, 31, 0.12);
  border: 1px solid rgba(245, 137, 31, 0.22);
  box-shadow: 0 8px 22px rgba(245, 137, 31, 0.12);
}

.news-article .program-d4-audience-card__title,
.program-d4-audience-card__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0.65rem;
  font-size: 1.042rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.32;
  color: var(--sunny-dark);
}

.news-article .program-d4-audience-card__text,
.program-d4-audience-card__text {
  position: relative;
  z-index: 1;
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.92rem;
  line-height: 1.64;
  color: var(--sunny-muted);
}

.program-d4-audience-card__text strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

.program-d4-audience__note {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-top: 1.6rem;
  padding: 1.05rem 1.15rem 1.1rem 1.2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.72) 0%, rgba(255, 255, 255, 0.97) 100%);
  border: 1px solid rgba(245, 137, 31, 0.2);
  box-shadow: 0 6px 24px rgba(245, 137, 31, 0.07);
}

.program-d4-audience__note-ico {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1.15rem;
  color: var(--sunny-primary);
}

.program-d4-audience__note-text {
  font-size: 0.88rem;
  line-height: 1.62;
  color: var(--sunny-dark);
}

.program-d4-audience__note-text strong {
  font-weight: 600;
  color: var(--sunny-primary-dark);
}

/* Giới thiệu D4-1 — panel & thẻ tóm tắt */
.program-d4-intro-section {
  margin-bottom: 2.75rem;
}

.program-d4-intro-panel {
  position: relative;
  padding: 1.65rem 1.35rem 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(165deg, #fafbfc 0%, #ffffff 38%, rgba(255, 250, 244, 0.92) 100%);
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 48px rgba(26, 26, 46, 0.06);
  overflow: hidden;
}

.program-d4-intro-panel::before {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sunny-primary) 0%, var(--sunny-primary-light) 45%, rgba(253, 186, 116, 0.65) 100%);
  opacity: 0.95;
}

@media (min-width: 768px) {
  .program-d4-intro-panel {
    padding: 2rem 2rem 2.1rem;
    border-radius: 1.35rem;
  }
}

.program-d4-intro-head {
  margin-bottom: 1.35rem;
}

.program-d4-intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  margin-bottom: 0.5rem;
}

.program-d4-intro-kicker__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sunny-primary), var(--sunny-primary-light));
  box-shadow: 0 0 0 3px rgba(245, 137, 31, 0.18);
}

.program-d4-intro-head__line {
  margin-bottom: 0.85rem !important;
}

.news-article .program-d4-intro-panel .program-d4-intro-title {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.program-d4-intro-title {
  font-size: clamp(1.28rem, 2.8vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--sunny-dark);
}

.program-d4-intro-deck {
  font-size: clamp(0.94rem, 1.65vw, 1.05rem);
  line-height: 1.55;
  color: var(--sunny-muted);
  margin: 0;
}

.program-d4-intro-deck strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

.program-d4-intro-prose {
  max-width: none;
}

.program-d4-intro-prose > p {
  font-size: 0.97rem;
  line-height: 1.68;
  color: var(--sunny-dark);
  margin-bottom: 1rem;
}

.program-d4-intro-prose > p:last-child {
  margin-bottom: 0;
}

.program-d4-intro-lead {
  font-size: 1.02rem !important;
  line-height: 1.68 !important;
  padding: 1rem 1.05rem 1.05rem;
  margin-bottom: 1.15rem !important;
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(245, 137, 31, 0.12);
  box-shadow: 0 4px 20px rgba(245, 137, 31, 0.05);
}

.program-d4-intro-prose__foot {
  margin-top: 0.25rem !important;
  padding-top: 1.1rem !important;
  border-top: 1px dashed rgba(245, 137, 31, 0.22);
}

.program-d4-intro-highlights {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}

.program-d4-intro-highlights__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  margin: 0 0 1rem;
}

.program-d4-highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 576px) {
  .program-d4-highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .program-d4-highlight-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
  }
}

.program-d4-highlight {
  --d4-hl-accent: var(--sunny-primary);
  position: relative;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1rem 1.05rem calc(0.95rem + 3px);
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 252, 248, 0.94) 100%);
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 8px 28px rgba(26, 26, 46, 0.05);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.program-d4-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  bottom: 0.65rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--d4-hl-accent) 0%, var(--sunny-primary-light) 100%);
  opacity: 0.85;
}

.program-d4-highlight:hover {
  border-color: rgba(245, 137, 31, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 12px 36px rgba(245, 137, 31, 0.1);
  transform: translateY(-2px);
}

.program-d4-highlight--accent {
  --d4-hl-accent: #ea580c;
  background: linear-gradient(
    160deg,
    rgba(255, 247, 237, 0.95) 0%,
    rgba(255, 255, 255, 0.96) 55%,
    rgba(255, 237, 213, 0.35) 100%
  );
  border-color: rgba(245, 137, 31, 0.16);
}

.program-d4-highlight__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(245, 137, 31, 0.14) 0%, rgba(245, 137, 31, 0.05) 100%);
  color: var(--sunny-primary-dark);
  font-size: 1.15rem;
}

.program-d4-highlight--accent .program-d4-highlight__icon {
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.16) 0%, rgba(245, 137, 31, 0.08) 100%);
  color: #c2410c;
}

.program-d4-highlight__body {
  min-width: 0;
}

.program-d4-highlight__eyebrow {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 26, 46, 0.45);
  margin-bottom: 0.2rem;
}

.program-d4-highlight__title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.program-d4-highlight__text {
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--sunny-muted);
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .program-d4-highlight:hover,
  .program-d4-audience-card:hover,
  .program-d4-condition:hover,
  .program-d4-level:hover {
    transform: none;
  }
}

/* Điều kiện D4-1 — tiêu đề & lưới thẻ */
.program-d4-requirements-section {
  margin-bottom: 2.75rem;
}

.program-d4-requirements__head {
  margin-bottom: 1.65rem;
}

.news-article .program-d4-requirements-section .program-d4-requirements__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.22rem, 2.6vw, 1.48rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--sunny-dark);
}

.program-d4-conditions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 768px) {
  .program-d4-conditions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

@media (min-width: 1200px) {
  .program-d4-conditions {
    gap: 1.3rem;
  }
}

.program-d4-condition {
  --d4-req-accent: var(--sunny-primary);
  --d4-req-accent-soft: rgba(245, 137, 31, 0.12);
  --d4-req-border: rgba(245, 137, 31, 0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 1.12rem;
  background: linear-gradient(168deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 36px rgba(26, 26, 46, 0.06);
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.28s ease;
}

.program-d4-condition::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  border-radius: 1.12rem 0 0 1.12rem;
  background: linear-gradient(180deg, var(--d4-req-accent) 0%, var(--sunny-primary-light) 100%);
  opacity: 0.9;
}

.program-d4-condition::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -30%;
  right: -25%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--d4-req-accent-soft) 0%, transparent 68%);
  opacity: 0.85;
}

.program-d4-condition--edu {
  --d4-req-accent: #0f766e;
  --d4-req-accent-soft: rgba(20, 184, 166, 0.12);
  --d4-req-border: rgba(20, 184, 166, 0.22);
}

.program-d4-condition--finance {
  --d4-req-accent: #c2410c;
  --d4-req-accent-soft: rgba(245, 137, 31, 0.14);
  --d4-req-border: rgba(245, 137, 31, 0.22);
}

.program-d4-condition--health {
  --d4-req-accent: #be123c;
  --d4-req-accent-soft: rgba(225, 29, 72, 0.1);
  --d4-req-border: rgba(225, 29, 72, 0.18);
}

.program-d4-condition--interview {
  --d4-req-accent: #1d4ed8;
  --d4-req-accent-soft: rgba(59, 130, 246, 0.12);
  --d4-req-border: rgba(37, 99, 235, 0.2);
}

.program-d4-condition:hover {
  transform: translateY(-3px);
  border-color: var(--d4-req-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 48px rgba(26, 26, 46, 0.08),
    0 10px 32px rgba(245, 137, 31, 0.08);
}

.program-d4-condition__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(26, 26, 46, 0.06);
}

.program-d4-condition__icon {
  flex-shrink: 0;
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.82rem;
  font-size: 1.28rem;
  color: var(--d4-req-accent);
  background: var(--d4-req-accent-soft);
  border: 1px solid var(--d4-req-border);
  box-shadow: 0 6px 20px rgba(26, 26, 46, 0.07);
}

.news-article .program-d4-condition__title,
.program-d4-condition__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--sunny-dark);
}

.program-d4-condition__text {
  position: relative;
  z-index: 1;
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.92rem;
  line-height: 1.64;
  color: var(--sunny-muted);
}

.program-d4-condition__text strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

/* Chương trình học & thời gian — D4-1 */
.program-d4-curriculum-section {
  margin-bottom: 2.75rem;
}

.program-d4-curriculum__head {
  margin-bottom: 1.5rem;
}

.news-article .program-d4-curriculum-section .program-d4-curriculum__title {
  margin: 0;
  font-size: clamp(1.22rem, 2.6vw, 1.48rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--sunny-dark);
}

.program-d4-curriculum__intro-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .program-d4-curriculum__intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.program-d4-curriculum__panel {
  position: relative;
  padding: 1.2rem 1.2rem 1.25rem;
  border-radius: 1.05rem;
  background: linear-gradient(165deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 32px rgba(26, 26, 46, 0.05);
  overflow: hidden;
}

.program-d4-curriculum__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.95;
}

.program-d4-curriculum__panel--terms::before {
  background: linear-gradient(90deg, #0f766e, #2dd4bf);
}

.program-d4-curriculum__panel--schedule::before {
  background: linear-gradient(90deg, #1d4ed8, #60a5fa);
}

.program-d4-curriculum__panel-head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
}

.program-d4-curriculum__panel-icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  font-size: 1.05rem;
  background: rgba(245, 137, 31, 0.1);
  color: var(--sunny-primary-dark);
}

.program-d4-curriculum__panel--terms .program-d4-curriculum__panel-icon {
  background: rgba(20, 184, 166, 0.12);
  color: #0f766e;
}

.program-d4-curriculum__panel--schedule .program-d4-curriculum__panel-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.program-d4-curriculum__panel-kicker {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
}

.program-d4-curriculum__panel--terms .program-d4-curriculum__panel-kicker {
  color: #0f766e;
}

.program-d4-curriculum__panel--schedule .program-d4-curriculum__panel-kicker {
  color: #1e40af;
}

.program-d4-curriculum__panel-text {
  font-size: 0.93rem;
  line-height: 1.66;
  color: var(--sunny-dark);
}

.program-d4-curriculum__panel-text strong {
  font-weight: 600;
  color: var(--sunny-dark);
}

.news-article .program-d4-curriculum__levels-heading,
.program-d4-curriculum__levels-heading {
  margin: 0 0 1rem;
  font-size: 1.042rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  line-height: 1.3;
}

.program-d4-levels--grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .program-d4-levels--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.05rem;
  }
}

@media (min-width: 1200px) {
  .program-d4-levels--grid {
    gap: 1.15rem;
  }
}

.program-d4-level {
  --lvl-accent: var(--sunny-primary);
  --lvl-soft: rgba(245, 137, 31, 0.1);
  --lvl-border: rgba(245, 137, 31, 0.2);
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  height: 100%;
  min-height: 0;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 1.05rem;
  background: linear-gradient(168deg, #fff 0%, #fcfcfd 100%);
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow: 0 8px 28px rgba(26, 26, 46, 0.05);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.28s ease;
}

.program-d4-level--1 {
  --lvl-accent: #0f766e;
  --lvl-soft: rgba(20, 184, 166, 0.11);
  --lvl-border: rgba(20, 184, 166, 0.25);
}

.program-d4-level--2 {
  --lvl-accent: #2563eb;
  --lvl-soft: rgba(59, 130, 246, 0.1);
  --lvl-border: rgba(59, 130, 246, 0.22);
}

.program-d4-level--3 {
  --lvl-accent: #7c3aed;
  --lvl-soft: rgba(124, 58, 237, 0.09);
  --lvl-border: rgba(124, 58, 237, 0.2);
}

.program-d4-level--4 {
  --lvl-accent: #c2410c;
  --lvl-soft: rgba(245, 137, 31, 0.12);
  --lvl-border: rgba(245, 137, 31, 0.22);
}

.program-d4-level:hover {
  transform: translateY(-2px);
  border-color: var(--lvl-border);
  box-shadow: 0 14px 40px rgba(26, 26, 46, 0.08);
}

.program-d4-level__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  height: 2.65rem;
  padding: 0 0.4rem;
  border-radius: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--lvl-accent);
  background: var(--lvl-soft);
  border: 1px solid var(--lvl-border);
}

.program-d4-level__body {
  min-width: 0;
  flex: 1;
}

.program-d4-level__title {
  margin: 0 0 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.38;
  color: var(--sunny-dark);
}

.news-article .program-d4-level__title {
  margin-top: 0;
}

.program-d4-level__desc {
  font-size: 0.88rem;
  line-height: 1.62;
  color: var(--sunny-muted);
}

.program-d4-level__desc strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

.program-d4-curriculum__foot {
  margin-top: 1.5rem;
  padding: 1.1rem 1.2rem 1.15rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(255, 251, 235, 0.6) 0%, rgba(255, 255, 255, 0.97) 100%);
  border: 1px solid rgba(245, 137, 31, 0.16);
  box-shadow: 0 6px 24px rgba(245, 137, 31, 0.06);
}

.program-d4-curriculum__foot-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--sunny-dark);
}

.program-d4-curriculum__foot-text strong {
  font-weight: 600;
  color: var(--sunny-dark);
}

.program-d4-curriculum__foot-muted {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--sunny-muted);
}

.program-d4-table-wrap {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 26, 46, 0.05);
}

.program-d4-table thead th {
  background: rgba(245, 137, 31, 0.1);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--sunny-dark);
  border-color: rgba(245, 137, 31, 0.15) !important;
}

.program-d4-table td {
  font-size: 0.9rem;
  vertical-align: top;
}

/* Danh sách trường tham khảo — trang D4 (he-tieng-d4.html) */
.program-d4-uni-grid {
  --d4-uni-radius: 1.05rem;
  --d4-uni-edge: 4px;
  --d4-uni-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --d4-uni-shadow: 0 1px 0 rgba(255, 255, 255, 0.88) inset, 0 1px 2px rgba(26, 26, 46, 0.04), 0 10px 32px rgba(26, 26, 46, 0.06);
  --d4-uni-shadow-hover: 0 1px 0 rgba(255, 255, 255, 0.95) inset, 0 4px 12px rgba(245, 137, 31, 0.07), 0 20px 48px rgba(26, 26, 46, 0.08);
}

.program-d4-uni-card {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  padding: 1.15rem 1.2rem 1.15rem calc(1rem + var(--d4-uni-edge));
  border-radius: var(--d4-uni-radius);
  isolation: isolate;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 253, 249, 0.97) 42%, rgba(255, 248, 240, 0.55) 100%);
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow: var(--d4-uni-shadow);
  transition:
    transform 0.32s var(--d4-uni-ease),
    box-shadow 0.32s var(--d4-uni-ease),
    border-color 0.25s ease;
  overflow: hidden;
}

/* Viền nhấn brand — tách lớp để hover mượt */
.program-d4-uni-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--d4-uni-edge);
  border-radius: var(--d4-uni-radius) 0 0 var(--d4-uni-radius);
  background: linear-gradient(
    180deg,
    var(--sunny-primary) 0%,
    var(--sunny-primary-light) 48%,
    rgba(253, 186, 116, 0.75) 100%
  );
  opacity: 1;
  transition: opacity 0.28s ease, filter 0.28s ease;
}

/* Ánh sáng góc trên — chiều sâu nhẹ, không làm “lòe loẹt” */
.program-d4-uni-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.45) 0%, transparent 42%);
  opacity: 0.55;
  pointer-events: none;
}

.program-d4-uni-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 137, 31, 0.22);
  box-shadow: var(--d4-uni-shadow-hover);
}

.program-d4-uni-card:hover::before {
  filter: brightness(1.05);
}

.program-d4-uni-card:active {
  transform: translateY(-1px);
  transition-duration: 0.12s;
}

.program-d4-uni-card__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  font-size: 1.22rem;
  line-height: 1;
  color: var(--sunny-primary);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 237, 0.88) 100%);
  border: 1px solid rgba(245, 137, 31, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 4px 14px rgba(245, 137, 31, 0.1);
  transition:
    transform 0.28s var(--d4-uni-ease),
    box-shadow 0.28s ease;
}

.program-d4-uni-card:hover .program-d4-uni-card__icon {
  transform: scale(1.04);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 6px 18px rgba(245, 137, 31, 0.14);
}

.program-d4-uni-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
  flex: 1;
  padding-top: 0.08rem;
}

.program-d4-uni-card__name {
  display: block;
  font-size: clamp(0.9rem, 1.1vw, 0.98rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.38;
  color: var(--sunny-dark);
  text-wrap: balance;
}

.program-d4-uni-card__loc {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--sunny-muted);
  line-height: 1.4;
}

.program-d4-uni-card__loc .bi {
  flex-shrink: 0;
  font-size: 0.88rem;
  color: var(--sunny-primary);
  opacity: 0.88;
}

@media (max-width: 575.98px) {
  .program-d4-uni-card {
    padding: 1rem 1rem 1rem calc(0.85rem + var(--d4-uni-edge));
    gap: 0.85rem;
  }

  .program-d4-uni-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-d4-uni-card,
  .program-d4-uni-card__icon {
    transition: none;
  }

  .program-d4-uni-card:hover,
  .program-d4-uni-card:active {
    transform: none;
  }

  .program-d4-uni-card:hover .program-d4-uni-card__icon {
    transform: none;
  }
}

/* CTA khám phá danh sách trường ĐH — trang hệ visa (D4, D2-1, D2-2, D2-3) */
.sunny-explore-universities-cta {
  margin-top: 1.5rem;
}

.sunny-explore-universities-cta__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  width: 100%;
  max-width: min(52rem, 100%);
  padding: 1rem 1.15rem 1.05rem 1.1rem;
  text-decoration: none !important;
  color: var(--sunny-dark);
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(255, 251, 246, 0.97) 40%,
    rgba(255, 248, 240, 0.93) 100%
  );
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 1rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 40px rgba(26, 26, 46, 0.072);
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.28s ease;
}

.sunny-explore-universities-cta__link > * {
  position: relative;
  z-index: 1;
}

.sunny-explore-universities-cta__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 48%, rgba(245, 137, 31, 0.07) 88%, rgba(245, 137, 31, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}

.sunny-explore-universities-cta__link:hover::after {
  opacity: 1;
}

.sunny-explore-universities-cta__link:hover {
  color: var(--sunny-dark);
  transform: translateY(-2px);
  border-color: rgba(245, 137, 31, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 16px 52px rgba(245, 137, 31, 0.13);
}

.sunny-explore-universities-cta__link:focus-visible {
  outline: none;
  border-color: rgba(245, 137, 31, 0.45);
  box-shadow:
    0 0 0 3px rgba(245, 137, 31, 0.32),
    0 10px 40px rgba(26, 26, 46, 0.072);
}

.sunny-explore-universities-cta__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.85rem;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(152deg, var(--sunny-primary) 0%, var(--sunny-primary-light) 100%);
  box-shadow:
    0 4px 16px rgba(245, 137,31, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.sunny-explore-universities-cta__link:hover .sunny-explore-universities-cta__icon {
  transform: scale(1.06);
}

.sunny-explore-universities-cta__body {
  flex: 1;
  min-width: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.48;
  letter-spacing: 0.01em;
}

.sunny-explore-universities-cta__accent {
  display: inline;
  color: var(--sunny-primary-dark);
  font-weight: 700;
}

.sunny-explore-universities-cta__strong {
  font-weight: 700;
  color: rgba(26, 26, 46, 0.96);
}

.sunny-explore-universities-cta__go {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-left: auto;
  border-radius: 50%;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--sunny-primary);
  background: rgba(245, 137, 31, 0.12);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.28s ease,
    color 0.2s ease;
}

.sunny-explore-universities-cta__link:hover .sunny-explore-universities-cta__go {
  transform: translateX(5px);
  background: rgba(245, 137, 31, 0.22);
  color: var(--sunny-primary-dark);
}

@media (min-width: 576px) {
  .sunny-explore-universities-cta__link {
    padding: 1.18rem 1.4rem 1.2rem 1.25rem;
    gap: 1.15rem;
  }

  .sunny-explore-universities-cta__body {
    font-size: 1.02rem;
  }

  .sunny-explore-universities-cta__icon {
    width: 2.85rem;
    height: 2.85rem;
    font-size: 1.28rem;
    border-radius: 0.9rem;
  }

  .sunny-explore-universities-cta__go {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.28rem;
  }
}

@media (max-width: 575.98px) {
  .sunny-explore-universities-cta__link {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  .sunny-explore-universities-cta__go {
    margin-left: 0;
    width: 100%;
    border-radius: 0.65rem;
    height: 2.4rem;
  }

  .sunny-explore-universities-cta__link:hover .sunny-explore-universities-cta__go {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sunny-explore-universities-cta__link,
  .sunny-explore-universities-cta__icon,
  .sunny-explore-universities-cta__go {
    transition: none;
  }

  .sunny-explore-universities-cta__link::after {
    transition: none;
  }

  .sunny-explore-universities-cta__link:hover::after {
    opacity: 0;
  }

  .sunny-explore-universities-cta__link:hover {
    transform: none;
  }

  .sunny-explore-universities-cta__link:hover .sunny-explore-universities-cta__icon {
    transform: none;
  }

  .sunny-explore-universities-cta__link:hover .sunny-explore-universities-cta__go {
    transform: none;
  }
}

/* Sau khi tốt nghiệp khóa tiếng — trang D4 (he-tieng-d4.html) */
.program-d4-after__lead {
  max-width: none;
  margin-bottom: 1.5rem;
  font-size: clamp(0.9375rem, 1.2vw, 1rem);
  line-height: 1.7;
}

.program-d4-after__grid {
  --d4-out-br: 1.05rem;
  --d4-out-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.program-d4-outcome-card {
  position: relative;
  z-index: 0;
  padding: 1.35rem 1.35rem 1.3rem;
  border-radius: var(--d4-out-br);
  isolation: isolate;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 251, 245, 0.94) 55%, rgba(255, 245, 232, 0.45) 100%);
  border: 1px solid rgba(245, 137, 31, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 8px 30px rgba(26, 26, 46, 0.055);
  transition:
    transform 0.3s var(--d4-out-ease),
    box-shadow 0.3s var(--d4-out-ease),
    border-color 0.25s ease;
  overflow: hidden;
}

.program-d4-outcome-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245, 137, 31, 0.06) 0%, transparent 52%);
  opacity: 0.85;
  pointer-events: none;
}

.program-d4-outcome-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 137, 31, 0.26);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 14px 44px rgba(245, 137, 31, 0.1);
}

.program-d4-outcome-card--vn {
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 252, 0.96) 50%, rgba(255, 252, 247, 0.65) 100%);
  border-color: rgba(26, 26, 46, 0.08);
}

.program-d4-outcome-card--vn::before {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.04) 0%, transparent 50%);
}

.program-d4-outcome-card--vn:hover {
  border-color: rgba(26, 26, 46, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 14px 44px rgba(26, 26, 46, 0.07);
}

.program-d4-outcome-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(245, 137, 31, 0.14);
}

.program-d4-outcome-card--vn .program-d4-outcome-card__head {
  border-bottom-color: rgba(26, 26, 46, 0.08);
}

.program-d4-outcome-card__icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  font-size: 1.25rem;
  line-height: 1;
  color: #fff;
  background: linear-gradient(145deg, var(--sunny-primary) 0%, var(--sunny-primary-light) 100%);
  box-shadow: 0 4px 16px rgba(245, 137, 31, 0.32);
}

.program-d4-outcome-card--vn .program-d4-outcome-card__icon {
  background: linear-gradient(145deg, #2d3748 0%, #4a5568 100%);
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.18);
}

.program-d4-outcome-card__title {
  margin: 0;
  padding-top: 0.15rem;
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--sunny-dark);
}

.program-d4-outcome-card__text {
  margin: 0 0 1.1rem;
  font-size: 0.9375rem;
  line-height: 1.68;
  color: #1a1a2e;
}

.program-d4-outcome-card__checks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.program-d4-outcome-card__checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #1a1a2e;
}

.program-d4-outcome-card__check {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.12rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sunny-primary);
  background: rgba(245, 137, 31, 0.11);
}

.program-d4-outcome-card--vn .program-d4-outcome-card__check {
  color: #2d3748;
  background: rgba(26, 26, 46, 0.06);
}

@media (max-width: 575.98px) {
  .program-d4-outcome-card {
    padding: 1.15rem 1.15rem 1.1rem;
  }

  .program-d4-outcome-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.12rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-d4-outcome-card {
    transition: none;
  }

  .program-d4-outcome-card:hover {
    transform: none;
  }
}

/* Quy trình nộp hồ sơ D4-1 — timeline (he-tieng-d4.html) */
.program-d4-process__lead {
  max-width: none;
  font-size: clamp(0.9375rem, 1.15vw, 1rem);
  line-height: 1.68;
  color: #1a1a2e;
}

.program-d4-process__foot {
  padding: 1rem 1.15rem;
  border-radius: 0.75rem;
  background: rgba(255, 247, 237, 0.55);
  border: 1px solid rgba(245, 137, 31, 0.14);
  color: var(--sunny-muted);
}

.program-d4-process__foot a {
  font-weight: 600;
  color: var(--sunny-primary);
  text-decoration: none;
}

.program-d4-process__foot a:hover {
  text-decoration: underline;
}

.program-d4-steps {
  --d4-step-rail: 3.35rem;
  --d4-step-ease: cubic-bezier(0.22, 1, 0.36, 1);
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.program-d4-steps__item {
  display: grid;
  grid-template-columns: var(--d4-step-rail) minmax(0, 1fr);
  gap: 1.15rem 1.25rem;
  align-items: stretch;
  margin: 0 0 1rem;
  padding: 0;
}

.program-d4-steps__item:last-child {
  margin-bottom: 0;
}

.program-d4-steps__rail {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: stretch;
}

/* Đường nối dọc giữa các bước */
.program-d4-steps__rail::after {
  content: "";
  position: absolute;
  top: 3.1rem;
  bottom: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(245, 137, 31, 0.38) 0%, rgba(245, 137, 31, 0.08) 85%, transparent 100%);
}

.program-d4-steps__item:last-child .program-d4-steps__rail::after {
  display: none;
}

.program-d4-steps__num {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(155deg, var(--sunny-primary) 0%, var(--sunny-primary-light) 55%, rgba(253, 186, 116, 0.95) 100%);
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 6px 20px rgba(245, 137, 31, 0.35);
}

.program-d4-steps__card {
  position: relative;
  padding: 1.1rem 1.2rem 1.15rem;
  border-radius: 0.95rem;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 252, 248, 0.97) 100%);
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 6px 24px rgba(26, 26, 46, 0.05);
  transition:
    transform 0.28s var(--d4-step-ease),
    box-shadow 0.28s var(--d4-step-ease),
    border-color 0.25s ease;
}

.program-d4-steps__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--sunny-primary), var(--sunny-primary-light));
  opacity: 0.75;
}

.program-d4-steps__item:hover .program-d4-steps__card {
  transform: translateX(2px);
  border-color: rgba(245, 137, 31, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 10px 36px rgba(245, 137, 31, 0.09);
}

.program-d4-steps__title {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--sunny-dark);
}

.program-d4-steps__desc {
  font-size: 0.875rem;
  line-height: 1.62;
  color: #3d3d54;
}

@media (max-width: 575.98px) {
  .program-d4-steps {
    --d4-step-rail: 2.85rem;
  }

  .program-d4-steps__item {
    gap: 0.85rem 0.9rem;
    margin-bottom: 0.85rem;
  }

  .program-d4-steps__num {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 0.88rem;
  }

  .program-d4-steps__rail::after {
    top: 2.75rem;
  }

  .program-d4-steps__card {
    padding: 0.95rem 1rem;
  }

  .program-d4-steps__title {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-d4-steps__card {
    transition: none;
  }

  .program-d4-steps__item:hover .program-d4-steps__card {
    transform: none;
  }
}

.program-d4-cta {
  background: linear-gradient(155deg, rgba(255, 250, 244, 0.98) 0%, rgba(255, 255, 255, 0.98) 45%, rgba(255, 247, 237, 0.75) 100%);
  border: 1px solid rgba(245, 137, 31, 0.18);
  box-shadow: 0 12px 40px rgba(245, 137, 31, 0.08);
}

/* Neo cuộn #dang-ky dưới navbar sticky — trang hệ visa chương trình */
.program-d4-page #dang-ky,
.program-d2-page #dang-ky,
.program-d21-page #dang-ky,
.program-d23-page #dang-ky {
  scroll-margin-top: 5.5rem;
}

/* Thanh điều hướng cuối trang D4-1 — he-tieng-d4.html */
.program-d4-page-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.15rem;
  margin-top: 2.5rem;
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 1.15rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 250, 252, 0.92) 45%, rgba(255, 251, 246, 0.88) 100%);
  border: 1px solid rgba(26, 26, 46, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 44px rgba(26, 26, 46, 0.07),
    0 4px 16px rgba(245, 137, 31, 0.06);
}

@media (min-width: 768px) {
  .program-d4-page-nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.45rem 1.25rem;
    gap: 1.25rem;
  }
}

.program-d4-page-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  align-self: flex-start;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  text-decoration: none;
  padding: 0.45rem 0.75rem 0.45rem 0.5rem;
  margin: -0.45rem;
  border-radius: 0.85rem;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease;
}

.program-d4-page-nav__back:hover {
  background: rgba(245, 137, 31, 0.1);
  color: var(--sunny-primary-dark);
  box-shadow: 0 0 0 1px rgba(245, 137, 31, 0.12);
}

.program-d4-page-nav__back:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 3px;
}

.program-d4-page-nav__back-icon {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.65rem;
  background: linear-gradient(145deg, rgba(245, 137, 31, 0.16) 0%, rgba(245, 137, 31, 0.08) 100%);
  border: 1px solid rgba(245, 137, 31, 0.2);
  color: var(--sunny-primary-dark);
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.12);
}

.program-d4-page-nav__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
}

@media (min-width: 768px) {
  .program-d4-page-nav__actions {
    flex-shrink: 0;
    justify-content: flex-end;
  }
}

.program-d4-page-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.68rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    filter 0.22s ease;
}

.program-d4-page-nav__btn .bi {
  font-size: 1.05rem;
  flex-shrink: 0;
}

.program-d4-page-nav__btn--outline {
  background: #fff;
  border-color: rgba(26, 26, 46, 0.1);
  color: var(--sunny-dark);
  box-shadow: 0 2px 14px rgba(26, 26, 46, 0.06);
}

.program-d4-page-nav__btn--outline:hover {
  border-color: rgba(245, 137, 31, 0.45);
  color: var(--sunny-primary-dark);
  box-shadow: 0 8px 26px rgba(245, 137, 31, 0.14);
  transform: translateY(-2px);
}

.program-d4-page-nav__btn--outline:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 3px;
}

.program-d4-page-nav__btn--primary {
  background: linear-gradient(135deg, var(--sunny-primary) 0%, #ea580c 100%);
  color: #fff !important;
  border-color: rgba(234, 88, 12, 0.4);
  box-shadow:
    0 4px 16px rgba(245, 137, 31, 0.28),
    0 2px 0 rgba(255, 255, 255, 0.2) inset;
}

.program-d4-page-nav__btn--primary:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow:
    0 10px 32px rgba(245, 137, 31, 0.38),
    0 2px 0 rgba(255, 255, 255, 0.22) inset;
  color: #fff !important;
}

.program-d4-page-nav__btn--primary:focus-visible {
  outline: 2px solid var(--sunny-primary-dark);
  outline-offset: 3px;
}

@media (min-width: 576px) {
  .program-d4-page-nav__btn {
    padding: 0.72rem 1.5rem;
    font-size: 0.93rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .program-d4-page-nav__btn--outline:hover,
  .program-d4-page-nav__btn--primary:hover {
    transform: none;
  }
}

/* Trang đào tạo tiếng Hàn (dao-tao-tieng-han.html) — hero nền cam cùng hệ program-d4-hero */
.kr-training-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(152deg, #fff8f0 0%, #ffedd5 42%, #fed7aa 100%);
  color: var(--sunny-dark);
  border-bottom: 1px solid rgba(245, 137, 31, 0.14);
}

.kr-training-hero__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 50% at 92% -5%, rgba(245, 137, 31, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 48% 42% at 5% 100%, rgba(253, 186, 116, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0.95;
}

.kr-training-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  margin-bottom: 0.35rem;
}

.kr-training-hero__kicker-icon {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 251, 246, 0.9) 100%);
  border: 1px solid rgba(245, 137, 31, 0.22);
  color: var(--sunny-primary-dark);
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(245, 137, 31, 0.12);
}

.kr-training-hero .section-title {
  color: var(--sunny-dark);
}

.kr-training-hero__ko {
  font-family: "Noto Sans KR", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #141428;
  margin-bottom: 0.75rem;
  line-height: 1.45;
}

.kr-training-hero__lead {
  max-width: 44rem;
  color: var(--sunny-muted) !important;
  font-size: clamp(0.94rem, 1.7vw, 1.06rem);
  line-height: 1.65;
}

.kr-training-hero__lead strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

.kr-training-hero__panel {
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
  padding: 1.35rem 1.2rem 1.45rem;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 251, 246, 0.94) 48%, rgba(255, 247, 237, 0.55) 100%);
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 56px rgba(26, 26, 46, 0.09),
    0 8px 28px rgba(245, 137, 31, 0.08);
}

.kr-training-hero__panel-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(245, 137, 31, 0.18);
}

.kr-training-hero__checks li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.52;
  color: var(--sunny-dark);
  margin-bottom: 0.65rem;
}

.kr-training-hero__checks li:last-child {
  margin-bottom: 0;
}

.kr-training-hero__checks .bi-check-circle-fill {
  color: var(--sunny-primary);
  flex-shrink: 0;
  margin-top: 0.12rem;
  font-size: 1.05rem;
}

.kr-training-section__lead {
  max-width: 42rem;
  font-size: clamp(0.94rem, 1.65vw, 1.02rem);
  line-height: 1.6;
  color: var(--sunny-muted);
}

.kr-training-section--light {
  background: #fff;
}

.kr-training-section--soft {
  background: linear-gradient(180deg, #fff8f0 0%, #ffffff 55%, #ffffff 100%);
}

.kr-training-feature {
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 1.08rem;
  background: linear-gradient(168deg, #fafbfc 0%, #ffffff 100%);
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 32px rgba(26, 26, 46, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}

.kr-training-feature:hover {
  border-color: rgba(245, 137, 31, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 44px rgba(245, 137, 31, 0.1);
  transform: translateY(-3px);
}

.kr-training-feature__icon {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: linear-gradient(145deg, rgba(245, 137, 31, 0.15) 0%, rgba(245, 137, 31, 0.06) 100%);
  color: var(--sunny-primary-dark);
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
}

.kr-training-feature__title {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin-bottom: 0.45rem;
}

.kr-training-feature__text {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sunny-muted);
}

.kr-training-mode {
  position: relative;
  padding: 1.4rem 1.3rem 1.45rem;
  padding-top: 1.45rem;
  border-radius: 1.1rem;
  background: linear-gradient(168deg, #fafbfc 0%, #ffffff 100%);
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 32px rgba(26, 26, 46, 0.06);
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s ease,
    border-color 0.3s ease;
}

.kr-training-mode:hover {
  border-color: rgba(245, 137, 31, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 16px 44px rgba(245, 137, 31, 0.09);
  transform: translateY(-2px);
}

.kr-training-mode::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  border-radius: 0 0 3px 3px;
}

.kr-training-mode--online::before {
  background: linear-gradient(90deg, #0369a1 0%, #0ea5e9 55%, #38bdf8 100%);
}

.kr-training-mode--offline::before {
  background: linear-gradient(90deg, #c2410c 0%, var(--sunny-primary) 50%, var(--sunny-primary-light) 100%);
}

.kr-training-mode__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.kr-training-mode__icon {
  display: inline-flex;
  width: 2.65rem;
  height: 2.65rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: linear-gradient(145deg, rgba(245, 137, 31, 0.12) 0%, rgba(245, 137, 31, 0.05) 100%);
  color: var(--sunny-primary-dark);
  font-size: 1.25rem;
}

.kr-training-mode--online .kr-training-mode__icon {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.14) 0%, rgba(14, 165, 233, 0.05) 100%);
  color: #0369a1;
}

.kr-training-mode__badge {
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(245, 137, 31, 0.12);
  border: 1px solid rgba(245, 137, 31, 0.18);
}

.kr-training-mode--online .kr-training-mode__badge {
  color: #0c4a6e;
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.22);
}

.kr-training-mode__title {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin-bottom: 0.25rem;
  line-height: 1.25;
}

.kr-training-mode__lead {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--sunny-muted);
}

.kr-training-mode__list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--sunny-dark);
  margin-bottom: 0.55rem;
}

.kr-training-mode__list li:last-child {
  margin-bottom: 0;
}

.kr-training-mode__list .bi-check-lg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 0.95rem;
  color: var(--sunny-primary);
}

.kr-training-mode--online .kr-training-mode__list .bi-check-lg {
  color: #0284c7;
}

.kr-training-mode__foot {
  color: var(--sunny-muted);
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.55;
}

.kr-training-mode__foot strong {
  color: var(--sunny-dark);
}

/* Các hướng đào tạo — lưới thẻ (dao-tao-tieng-han.html) */
.kr-training-tracks {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(245, 137, 31, 0.09) 0%, transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 35%, #fffbf7 100%);
}

.kr-training-tracks::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(rgba(26, 26, 46, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
}

.kr-training-tracks .container {
  position: relative;
  z-index: 1;
}

.kr-training-tracks__eyebrow {
  font-family: "Noto Sans KR", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-muted);
  margin-bottom: 0.35rem;
}

.kr-training-tracks__lead {
  max-width: 38rem;
  font-size: clamp(0.94rem, 1.65vw, 1.04rem);
  line-height: 1.65;
  color: var(--sunny-muted);
}

.kr-training-tracks__lead strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

.kr-training-tracks__grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .kr-training-tracks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
  }
}

@media (min-width: 1200px) {
  .kr-training-tracks__grid {
    gap: 1.5rem;
  }
}

.kr-training-path {
  --path-accent: var(--sunny-primary);
  --path-accent-soft: rgba(245, 137, 31, 0.14);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 1.2rem;
  background: linear-gradient(165deg, #ffffff 0%, #fafbfc 100%);
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 12px 36px rgba(26, 26, 46, 0.07);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}

.kr-training-path::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 1.2rem 1.2rem 0 0;
  background: linear-gradient(90deg, var(--path-accent) 0%, var(--sunny-primary-light) 100%);
  opacity: 0.92;
}

.kr-training-path::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: -20%;
  right: -15%;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--path-accent-soft) 0%, transparent 68%);
}

.kr-training-path:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 137, 31, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92) inset,
    0 20px 48px rgba(245, 137, 31, 0.12);
}

.kr-training-path--hangul {
  --path-accent: #0d9488;
  --path-accent-soft: rgba(13, 148, 136, 0.12);
}

.kr-training-path--talk {
  --path-accent: #7c3aed;
  --path-accent-soft: rgba(124, 58, 237, 0.1);
}

.kr-training-path--topik {
  --path-accent: #ea580c;
  --path-accent-soft: rgba(245, 137, 31, 0.18);
  background: linear-gradient(168deg, #fffdfb 0%, #ffffff 55%, #fff8f0 100%);
  border-color: rgba(245, 137, 31, 0.16);
}

.kr-training-path--study {
  --path-accent: #1d4ed8;
  --path-accent-soft: rgba(29, 78, 216, 0.1);
  background: linear-gradient(168deg, rgba(239, 246, 255, 0.45) 0%, #ffffff 55%);
  border-color: rgba(29, 78, 216, 0.12);
}

.kr-training-path__meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.kr-training-path__step {
  font-size: clamp(2rem, 4.5vw, 2.45rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  color: var(--path-accent);
  opacity: 0.2;
}

.kr-training-path__icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  font-size: 1.35rem;
  color: var(--path-accent);
  background: rgba(245, 137, 31, 0.12);
  border: 1px solid rgba(245, 137, 31, 0.22);
  box-shadow: 0 6px 18px rgba(245, 137, 31, 0.1);
}

.kr-training-path--hangul .kr-training-path__icon {
  background: rgba(13, 148, 136, 0.12);
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.1);
}

.kr-training-path--talk .kr-training-path__icon {
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.2);
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.08);
}

.kr-training-path--topik .kr-training-path__icon {
  background: rgba(234, 88, 12, 0.12);
  border-color: rgba(234, 88, 12, 0.22);
  box-shadow: 0 6px 18px rgba(245, 137, 31, 0.12);
}

.kr-training-path--study .kr-training-path__icon {
  background: rgba(29, 78, 216, 0.1);
  border-color: rgba(29, 78, 216, 0.2);
  box-shadow: 0 6px 18px rgba(29, 78, 216, 0.08);
}

.kr-training-path__badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  align-self: flex-start;
  width: auto;
  max-width: 100%;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  margin-bottom: 0.4rem;
  padding: 0.22rem 0.55rem;
  border-radius: 0.4rem;
  background: rgba(245, 137, 31, 0.1);
  border: 1px solid rgba(245, 137, 31, 0.14);
}

.kr-training-path--hangul .kr-training-path__badge {
  color: #0f766e;
  background: rgba(13, 148, 136, 0.1);
  border-color: rgba(13, 148, 136, 0.18);
}

.kr-training-path--talk .kr-training-path__badge {
  color: #5b21b6;
  background: rgba(124, 58, 237, 0.1);
  border-color: rgba(124, 58, 237, 0.16);
}

.kr-training-path--topik .kr-training-path__badge {
  color: #9a3412;
}

.kr-training-path--study .kr-training-path__badge {
  color: #1e40af;
  background: rgba(29, 78, 216, 0.08);
  border-color: rgba(29, 78, 216, 0.14);
}

.kr-training-path__title {
  position: relative;
  z-index: 1;
  font-size: clamp(1.08rem, 2.2vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--sunny-dark);
  margin-bottom: 0.55rem;
  line-height: 1.28;
}

.kr-training-path__text {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--sunny-muted);
  margin: 0;
}

.kr-training-path__cta {
  position: relative;
  z-index: 1;
  margin-top: 1.1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(245, 137, 31, 0.25);
}

.kr-training-path__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem 0.5rem 1.05rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sunny-primary) 0%, #ea580c 100%);
  border: 1px solid rgba(234, 88, 12, 0.35);
  box-shadow: 0 6px 20px rgba(245, 137, 31, 0.28);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.kr-training-path__link .bi {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.kr-training-path__link:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(245, 137, 31, 0.35);
  filter: brightness(1.03);
}

.kr-training-path__link:hover .bi {
  transform: translateX(3px);
}

.kr-training-path__link:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 3px;
}

.kr-training-pill-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.kr-training-pill {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.9rem 1.05rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid rgba(245, 137, 31, 0.14);
  box-shadow: 0 4px 18px rgba(26, 26, 46, 0.04);
}

.kr-training-pill i {
  color: var(--sunny-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.kr-training-pill span {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--sunny-dark);
}

.kr-training-flagship {
  background: linear-gradient(185deg, #f1f5f9 0%, #ffffff 38%, #fff7ed 100%);
}

.kr-training-flagship__card {
  padding: 1.65rem 1.35rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(245, 137, 31, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 22px 56px rgba(245, 137, 31, 0.1);
}

@media (min-width: 992px) {
  .kr-training-flagship__card {
    padding: 2.2rem 2.4rem;
  }
}

.kr-training-flagship__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(245, 137, 31, 0.14) 0%, rgba(245, 137, 31, 0.06) 100%);
  border: 1px solid rgba(245, 137, 31, 0.2);
}

.kr-training-flagship__badge .bi {
  font-size: 0.95rem;
  color: var(--sunny-primary);
}

.kr-training-flagship__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.kr-training-flagship__ko {
  font-family: "Noto Sans KR", "Malgun Gothic", "Apple SD Gothic Neo", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-muted);
  margin-bottom: 0.5rem;
}

.kr-training-flagship__lead {
  font-size: clamp(0.94rem, 1.65vw, 1.02rem);
  line-height: 1.65;
  color: var(--sunny-dark);
}

.kr-training-flagship__checks {
  margin: 0;
  padding: 0;
}

.kr-training-flagship__checks li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--sunny-dark);
  margin-bottom: 0.65rem;
}

.kr-training-flagship__checks li:last-child {
  margin-bottom: 0;
}

.kr-training-flagship__checks .bi-check2-circle {
  flex-shrink: 0;
  margin-top: 0.1rem;
  font-size: 1.1rem;
  color: var(--sunny-primary);
}

.kr-training-flagship__timeline-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  margin-bottom: 1rem;
}

.kr-training-flagship__timeline {
  position: relative;
  margin: 0;
  padding-left: 1.2rem;
  border-left: 3px solid rgba(245, 137, 31, 0.35);
}

.kr-training-flagship__phase {
  position: relative;
  padding-left: 0;
  padding-bottom: 1.35rem;
}

.kr-training-flagship__phase:last-child {
  padding-bottom: 0;
}

.kr-training-flagship__phase::before {
  content: "";
  position: absolute;
  left: calc(-1.2rem - 1.5px);
  top: 0.4rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--sunny-primary);
  box-shadow: 0 0 0 3px rgba(245, 137, 31, 0.22);
  transform: translateX(-50%);
}

.kr-training-flagship__phase-mo {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  margin-bottom: 0.35rem;
}

.kr-training-flagship__phase-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.kr-training-flagship__phase-text {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--sunny-muted);
}

.kr-training-flagship__note {
  color: var(--sunny-muted);
  line-height: 1.55;
  border-color: rgba(26, 26, 46, 0.08) !important;
}

.kr-training-bridge {
  position: relative;
  overflow: hidden;
  background: linear-gradient(152deg, #fff8f0 0%, #ffedd5 42%, #fed7aa 100%);
  border-top: 1px solid rgba(245, 137, 31, 0.12);
  border-bottom: 1px solid rgba(245, 137, 31, 0.14);
}

.kr-training-bridge::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 72% 50% at 92% -5%, rgba(245, 137, 31, 0.28) 0%, transparent 58%),
    radial-gradient(ellipse 48% 42% at 5% 100%, rgba(253, 186, 116, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 50% 50%, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
  opacity: 0.95;
}

.kr-training-bridge .container {
  position: relative;
  z-index: 1;
}

.kr-training-bridge__inner {
  padding: 1.85rem 1.5rem;
  border-radius: 1.2rem;
  background: linear-gradient(168deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 251, 246, 0.94) 48%, rgba(255, 247, 237, 0.55) 100%);
  border: 1px solid rgba(26, 26, 46, 0.06);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 56px rgba(26, 26, 46, 0.09),
    0 8px 28px rgba(245, 137, 31, 0.08);
}

@media (min-width: 992px) {
  .kr-training-bridge__inner {
    padding: 2.1rem 2.25rem;
  }
}

.kr-training-bridge__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
}

.kr-training-bridge__title {
  font-size: clamp(1.2rem, 2.6vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sunny-dark);
  line-height: 1.25;
}

.kr-training-bridge__text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--sunny-muted);
}

.kr-training-bridge__text strong {
  color: var(--sunny-dark);
  font-weight: 600;
}

.kr-training-bridge__link {
  color: var(--sunny-primary-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.kr-training-bridge__link:hover {
  color: var(--sunny-primary);
}

.kr-training-cta__lead {
  max-width: 34rem;
}

@media (prefers-reduced-motion: reduce) {
  .kr-training-feature:hover,
  .kr-training-path:hover,
  .kr-training-path__link:hover,
  .kr-training-mode:hover {
    transform: none;
  }

  .kr-training-path__link:hover .bi {
    transform: none;
  }
}

/* Danh sách & chi tiết trường (truong-dai-hoc.html, truong-kookmin.html) */
.uni-list-section {
  position: relative;
  background:
    radial-gradient(ellipse 85% 55% at 50% -15%, rgba(245, 137, 31, 0.09) 0%, transparent 55%),
    linear-gradient(180deg, #f8f9fb 0%, #ffffff 28%, #ffffff 100%);
}

.uni-list-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(26, 26, 46, 0.045) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.5;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.12) 40%, transparent 75%);
}

.uni-list-section .container,
.uni-list-section .container-fluid {
  position: relative;
  z-index: 1;
}

.uni-list-card--interactive .stretched-link {
  z-index: 3;
}

.uni-list-card {
  --uni-card-br: 1.2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: var(--uni-card-br);
  background: linear-gradient(155deg, #ffffff 0%, #fffdfb 48%, #fff9f3 100%);
  border: 1px solid rgba(26, 26, 46, 0.07);
  box-shadow:
    0 2px 4px rgba(26, 26, 46, 0.02),
    0 12px 28px -10px rgba(26, 26, 46, 0.1);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.uni-list-card__glow {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 137, 31, 0.14) 0%, transparent 68%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.uni-list-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sunny-primary) 0%, var(--sunny-primary-light) 45%, #fde68a 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
  border-radius: var(--uni-card-br) var(--uni-card-br) 0 0;
}

.uni-list-card__body {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.45rem 1rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.uni-list-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.uni-list-card__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sunny-muted);
  background: rgba(26, 26, 46, 0.05);
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 46, 0.06);
}

.uni-list-card__chip--accent {
  color: #b45309;
  background: linear-gradient(135deg, rgba(255, 247, 237, 0.95) 0%, rgba(254, 243, 199, 0.65) 100%);
  border-color: rgba(245, 137, 31, 0.35);
}

.uni-list-card__logo-wrap {
  position: relative;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.9rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 250, 245, 0.92) 100%);
  border: 1px solid rgba(245, 137, 31, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.uni-list-card__logo-wrap img {
  max-height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.uni-list-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sunny-dark);
  margin: 0 0 0.35rem;
  line-height: 1.28;
}

.uni-list-card__name-en {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--sunny-muted);
  margin: 0 0 0.65rem;
}

.uni-list-card__meta {
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--sunny-dark);
  margin: 0;
  margin-top: auto;
  padding-top: 0.25rem;
}

.uni-list-card__meta i {
  opacity: 0.9;
}

.uni-list-card__actions {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 0.95rem 1.45rem 1.25rem;
  border-top: 1px solid rgba(26, 26, 46, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 252, 248, 0.65) 100%);
}

.uni-list-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sunny-primary);
  transition: gap 0.35s ease, color 0.25s ease;
}

.uni-list-card__cta i {
  font-size: 1.15rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.uni-list-card--interactive:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 137, 31, 0.28);
  box-shadow:
    0 8px 16px rgba(245, 137, 31, 0.08),
    0 24px 48px -16px rgba(26, 26, 46, 0.14);
}

.uni-list-card--interactive:hover::before {
  transform: scaleX(1);
}

.uni-list-card--interactive:hover .uni-list-card__glow {
  opacity: 1;
}

.uni-list-card--interactive:hover .uni-list-card__logo-wrap {
  border-color: rgba(245, 137, 31, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 8px 20px rgba(245, 137, 31, 0.1);
}

.uni-list-card--interactive:hover .uni-list-card__logo-wrap img {
  transform: scale(1.06);
}

.uni-list-card--interactive:hover .uni-list-card__cta {
  gap: 0.55rem;
  color: var(--sunny-primary-dark);
}

.uni-list-card--interactive:hover .uni-list-card__cta i {
  transform: translateX(4px);
}

.uni-list-card--pending:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 26, 46, 0.1);
  box-shadow:
    0 6px 12px rgba(26, 26, 46, 0.05),
    0 20px 40px -18px rgba(26, 26, 46, 0.12);
}

.uni-list-card--pending:hover::before {
  transform: scaleX(0.35);
  opacity: 0.85;
}

.uni-list-card--pending:hover .uni-list-card__glow {
  opacity: 0.45;
}

.uni-list-card--pending:hover .uni-list-card__logo-wrap img {
  transform: scale(1.03);
}

.uni-list-card__soon {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-style: normal;
  color: var(--sunny-muted);
}

.uni-list-card__soon i {
  font-size: 0.95rem;
  opacity: 0.75;
}

.uni-list-footnote {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed rgba(26, 26, 46, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .uni-list-card,
  .uni-list-card::before,
  .uni-list-card__glow,
  .uni-list-card__logo-wrap,
  .uni-list-card__logo-wrap img,
  .uni-list-card__cta,
  .uni-list-card__cta i {
    transition: none !important;
  }

  .uni-list-card--interactive:hover,
  .uni-list-card--pending:hover {
    transform: none;
  }

  .uni-list-card--interactive:hover .uni-list-card__logo-wrap img,
  .uni-list-card--pending:hover .uni-list-card__logo-wrap img {
    transform: none;
  }

  .uni-list-card::before {
    transform: scaleX(1);
    opacity: 0.85;
  }
}

.uni-detail-hero-logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

.uni-detail-facts {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--sunny-border);
  box-shadow: 0 8px 28px rgba(245, 137, 31, 0.06);
}

.uni-detail-facts__dl {
  margin: 0;
}

.uni-detail-facts__row {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}

.uni-detail-facts__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.uni-detail-facts__row:first-child {
  padding-top: 0;
}

.uni-detail-facts dt {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sunny-muted);
  margin: 0 0 0.2rem;
}

.uni-detail-facts dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sunny-dark);
}

.uni-detail-facts a {
  color: var(--sunny-primary);
  font-weight: 600;
}

.uni-detail-badge {
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  color: var(--sunny-dark) !important;
  border-color: var(--sunny-border) !important;
}

/* Trang chi tiết trường (truong-kookmin.html) */
.uni-detail-hero-kicker {
  letter-spacing: 0.14em;
}

.uni-detail-section {
  scroll-margin-top: 5.25rem;
}

.uni-detail-toc {
  position: sticky;
  top: 72px;
  z-index: 1019;
  box-shadow: 0 4px 18px rgba(26, 26, 46, 0.06);
}

.uni-detail-toc__list a {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sunny-dark);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.uni-detail-toc__list a:hover {
  background: rgba(245, 137, 31, 0.1);
  border-color: rgba(245, 137, 31, 0.25);
  color: var(--sunny-primary-dark);
}

.uni-detail-toc__list a.is-active {
  background: linear-gradient(135deg, rgba(245, 137, 31, 0.22) 0%, rgba(253, 186, 116, 0.18) 100%);
  border-color: rgba(245, 137, 31, 0.45);
  color: var(--sunny-primary-dark);
  box-shadow: 0 2px 10px rgba(245, 137, 31, 0.18);
}

.uni-detail-toc__list a.is-active:hover {
  background: linear-gradient(135deg, rgba(245, 137, 31, 0.28) 0%, rgba(253, 186, 116, 0.22) 100%);
  color: var(--sunny-primary-dark);
}

.uni-detail-note {
  padding: 1rem 1.15rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(26, 26, 46, 0.08);
  color: var(--sunny-dark);
  line-height: 1.55;
}

.bg-soft-orange .uni-detail-note {
  background: rgba(255, 255, 255, 0.88);
}

.uni-detail-table-wrap {
  border-color: rgba(26, 26, 46, 0.1) !important;
}

.uni-detail-table-wrap thead th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--sunny-muted);
}

.uni-detail-prog-card {
  height: 100%;
  padding: 1.35rem 1.4rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--sunny-border);
  box-shadow: 0 6px 22px rgba(26, 26, 46, 0.05);
}

.bg-soft-orange .uni-detail-prog-card {
  background: rgba(255, 255, 255, 0.92);
}

.uni-detail-prog-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  border-radius: 0.75rem;
  font-size: 1.2rem;
  color: var(--sunny-primary);
  background: linear-gradient(145deg, rgba(255, 247, 237, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid rgba(245, 137, 31, 0.15);
}

.uni-detail-prog-card__title {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin: 0 0 0.5rem;
}

.uni-detail-prog-card__text {
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--sunny-dark);
  margin: 0;
}

/* —— Card ngành tuyển sinh đại học (truong-kookmin.html) —— */
.uni-major-admission-grid {
  --uni-major-card-radius: 1.05rem;
}

.uni-major-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.4rem 1.35rem 1.45rem;
  border-radius: var(--uni-major-card-radius);
  background: linear-gradient(165deg, #ffffff 0%, rgba(255, 255, 255, 0.99) 45%, rgba(255, 252, 248, 0.96) 100%);
  border: 1px solid rgba(245, 137, 31, 0.16);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 6px 24px rgba(26, 26, 46, 0.06);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.uni-major-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--uni-major-card-radius) var(--uni-major-card-radius) 0 0;
  background: linear-gradient(
    90deg,
    var(--sunny-primary) 0%,
    var(--sunny-primary-light) 52%,
    rgba(253, 186, 116, 0.45) 100%
  );
}

@media (hover: hover) and (pointer: fine) {
  .uni-major-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 137, 31, 0.3);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 16px 40px rgba(245, 137, 31, 0.12),
      0 8px 24px rgba(26, 26, 46, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .uni-major-card {
    transition: none;
  }

  .uni-major-card:hover {
    transform: none;
  }
}

.uni-major-card__title {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.42;
  color: var(--sunny-dark);
  margin: 0 0 0.9rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(26, 26, 46, 0.07);
}

.uni-major-card__list {
  margin: 0;
  padding-left: 1.15rem;
  margin-bottom: 0;
  flex: 1 1 auto;
}

.uni-major-card__list li {
  font-size: 0.8125rem;
  line-height: 1.56;
  color: rgba(0, 0, 0, 0.84);
  padding-left: 0.2rem;
  margin-bottom: 0.42rem;
}

.uni-major-card__list li:last-child {
  margin-bottom: 0;
}

.uni-major-card__list li::marker {
  color: var(--sunny-primary);
}

.uni-major-card__text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.8125rem;
  line-height: 1.58;
  color: rgba(0, 0, 0, 0.84);
}

.uni-detail-accordion .accordion-button {
  font-size: 0.95rem;
}

.uni-detail-accordion .accordion-button:not(.collapsed) {
  background: rgba(245, 137, 31, 0.08);
  color: var(--sunny-dark);
  box-shadow: none;
}

@media (max-width: 767.98px) {
  .uni-detail-toc .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .uni-detail-toc__list {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
    gap: 0.5rem !important;
  }

  .uni-detail-toc__list li {
    flex-shrink: 0;
  }
}

/* —— Trang chi tiết trường: tin nổi bật / Kookmin Spotlight —— */
.uni-news-spotlight__heading {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--sunny-dark);
  line-height: 1.2;
}

.uni-news-spotlight__sub {
  max-width: 40rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.68);
}

.uni-news-feature {
  position: relative;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .uni-news-feature {
    margin-bottom: 2.25rem;
  }
}

.uni-news-feature__frame {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 46, 0.08);
  background: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 48px rgba(26, 26, 46, 0.08),
    0 6px 18px rgba(245, 137, 31, 0.07);
}

.uni-news-feature__swiper-wrap {
  position: relative;
}

.uni-news-feature__swiper {
  overflow: hidden;
}

.uni-news-feature__slide {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

@media (min-width: 768px) {
  .uni-news-feature__slide {
    grid-template-columns: 1fr 1fr;
    min-height: clamp(320px, 38vw, 440px);
  }
}

.uni-news-feature__media {
  position: relative;
  min-height: 220px;
  background: #e8ecf1;
}

@media (min-width: 768px) {
  .uni-news-feature__media {
    min-height: 0;
  }
}

.uni-news-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.uni-news-feature__body {
  position: relative;
  padding: 1.75rem 1.5rem 3.6rem;
  background: linear-gradient(165deg, #f8fafc 0%, #f1f4f9 55%, #eef2f7 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .uni-news-feature__body {
    padding: 2.25rem 2rem 4rem;
  }
}

.uni-news-feature__quote {
  position: absolute;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--sunny-primary);
  opacity: 0.55;
  pointer-events: none;
}

.uni-news-feature__quote--open {
  top: 0.5rem;
  left: 0.55rem;
}

.uni-news-feature__quote--close {
  bottom: 3.2rem;
  right: 0.55rem;
}

.uni-news-feature__headline {
  position: relative;
  z-index: 1;
  margin: 0 auto 1rem;
  max-width: 22rem;
  font-size: clamp(1.28rem, 2.85vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.32;
  color: #0f172a;
}

@media (min-width: 768px) {
  .uni-news-feature__headline {
    max-width: 26rem;
  }
}

.uni-news-feature__text {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 22rem;
  font-size: clamp(1.02rem, 2.05vw, 1.2rem);
  line-height: 1.68;
  color: rgba(15, 23, 42, 0.84);
}

@media (min-width: 768px) {
  .uni-news-feature__text {
    max-width: 28rem;
  }
}

.uni-news-feature__body .uni-news-feature__toolbar {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  width: fit-content;
  max-width: calc(100% - 2rem);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(26, 26, 46, 0.08);
  box-shadow: 0 2px 12px rgba(26, 26, 46, 0.06);
}

.uni-news-feature__toolbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(245, 137, 31, 0.12);
  color: var(--sunny-primary-dark);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.uni-news-feature__toolbar-btn:hover {
  background: rgba(245, 137, 31, 0.22);
  color: var(--sunny-primary);
}

.uni-news-feature__toolbar-btn:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 2px;
}

.uni-news-feature__toolbar-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.uni-news-feature__fraction {
  font-size: 0.84rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: rgba(15, 23, 42, 0.65);
}

.uni-news-feature__arrow {
  --uni-news-arrow-ty: -50%;
  position: absolute;
  top: 50%;
  transform: translateY(var(--uni-news-arrow-ty));
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 251, 246, 0.9) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--sunny-primary-dark);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 6px rgba(26, 26, 46, 0.05),
    0 8px 26px rgba(245, 137, 31, 0.14);
  cursor: pointer;
  transition:
    transform 0.28s cubic-bezier(0.33, 1, 0.68, 1),
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.28s ease;
}

.uni-news-feature__arrow i {
  font-size: 1.22rem;
  line-height: 1;
  transition: transform 0.28s cubic-bezier(0.33, 1, 0.68, 1);
}

@media (min-width: 768px) {
  .uni-news-feature__arrow {
    width: 2.9rem;
    height: 2.9rem;
  }

  .uni-news-feature__arrow i {
    font-size: 1.38rem;
  }
}

.uni-news-feature__arrow:hover {
  transform: translateY(var(--uni-news-arrow-ty)) scale(1.07);
  background: linear-gradient(155deg, #ffffff 0%, rgba(255, 243, 230, 0.96) 100%);
  color: var(--sunny-primary);
  border-color: rgba(245, 137, 31, 0.38);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 4px 16px rgba(245, 137, 31, 0.24),
    0 14px 36px rgba(26, 26, 46, 0.1);
}

.uni-news-feature__arrow:hover i {
  transform: scale(1.06);
}

.uni-news-feature__arrow:active {
  transform: translateY(var(--uni-news-arrow-ty)) scale(1.02);
}

.uni-news-feature__arrow:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .uni-news-feature__arrow,
  .uni-news-feature__arrow i {
    transition: none;
  }

  .uni-news-feature__arrow:hover,
  .uni-news-feature__arrow:hover i,
  .uni-news-feature__arrow:active {
    transform: translateY(var(--uni-news-arrow-ty));
  }
}

.uni-news-feature__arrow--prev {
  left: 0.5rem;
}

.uni-news-feature__arrow--next {
  right: 0.5rem;
}

@media (min-width: 768px) {
  .uni-news-feature__arrow--prev {
    left: 0.85rem;
  }

  .uni-news-feature__arrow--next {
    right: 0.85rem;
  }
}

.uni-news-tile {
  display: block;
  height: 100%;
  border-radius: 0.85rem;
  overflow: hidden;
  color: inherit;
  box-shadow: 0 8px 26px rgba(26, 26, 46, 0.08);
  transition:
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.3s ease;
}

.uni-news-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(26, 26, 46, 0.12);
}

.uni-news-tile:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 3px;
}

.uni-news-tile__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #dde3ea;
}

.uni-news-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  vertical-align: middle;
}

.uni-news-tile__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.55rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #fff;
  background: linear-gradient(90deg, #153a5c 0%, #1e4d7a 45%, #2560a8 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 576px) {
  .uni-news-tile__caption {
    font-size: 0.82rem;
    padding: 0.65rem 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .uni-news-tile:hover {
    transform: none;
  }
}

/* —— Trang tìm kiếm (tim-kiem.html) —— */
.search-page-hero {
  --search-hero-ink: #1a1a2e;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(26, 26, 46, 0.07);
  background:
    linear-gradient(165deg, #fffcf8 0%, #f8fafc 38%, #eef1f6 100%);
}

/* Lớp sọc mờ (texture) + glow — nền tĩnh, chuyên nghiệp */
.search-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 14px,
      rgba(26, 26, 46, 0.018) 14px,
      rgba(26, 26, 46, 0.018) 15px
    ),
    radial-gradient(ellipse 85% 60% at 5% 0%, rgba(245, 137, 31, 0.2) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 100% 10%, rgba(30, 58, 95, 0.09) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0.9;
}

/* Gạch thương hiệu trên cùng — cùng ngôn ngữ với navbar search panel */
.search-page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--sunny-primary-dark) 0%,
    var(--sunny-primary) 42%,
    var(--sunny-primary-light) 100%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0.88;
}

.search-page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 46rem;
}

.search-page-hero .page-about-breadcrumb {
  font-size: 0.86rem;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.01em;
}

.search-page-hero .page-about-breadcrumb a {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 600;
  transition: color 0.2s ease;
}

.search-page-hero .page-about-breadcrumb a:hover {
  color: var(--sunny-primary);
}

/* Breadcrumb pill trên hero tìm kiếm — ghi đè màu xám mặc định */
.search-page-hero .page-about-breadcrumb--pill {
  color: inherit;
}

.search-page-hero .page-about-breadcrumb--pill .page-about-breadcrumb__link {
  color: var(--sunny-primary-dark);
}

.search-page-hero .page-about-breadcrumb--pill .page-about-breadcrumb__link:hover {
  color: var(--sunny-primary);
}

.search-page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem 0.4rem 0.8rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 240, 220, 0.65) 100%);
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 20px rgba(245, 137, 31, 0.12);
}

.search-page-hero__badge .bi {
  font-size: 1rem;
  color: var(--sunny-primary);
  filter: drop-shadow(0 1px 1px rgba(245, 137, 31, 0.25));
}

.search-page-hero__line {
  max-width: 2.75rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sunny-primary), var(--sunny-primary-light), transparent);
  margin-bottom: 0.5rem;
}

/* Tiêu đề trang — độ tương phản, không quá dày cả trang */
.search-page-hero .section-title {
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--search-hero-ink, #1a1a2e);
  line-height: 1.15;
}

.search-page-hero__lead {
  font-size: clamp(0.94rem, 1.45vw, 1.05rem);
  line-height: 1.7;
  max-width: 40rem;
  color: rgba(0, 0, 0, 0.58);
  font-weight: 500;
}

/* Nội dung chính: tầng sáng, canh cột đọc */
.search-page-surface {
  position: relative;
  background:
    linear-gradient(180deg, #f0f2f6 0%, #f6f7fa 8%, #ffffff 100%);
}

.search-page-surface::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 100%);
  pointer-events: none;
}

.search-page-surface .container {
  position: relative;
  z-index: 1;
  max-width: 45rem;
}

/* Form: thanh tìm “pill” cấp studio */
.search-page-formbox {
  max-width: 100%;
  margin: 0 auto 0.5rem;
}

.search-page-formbox__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.42);
  margin-bottom: 0.55rem;
}

.search-page-formbox__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  min-height: 3.4rem;
  padding: 0.35rem 0.4rem 0.35rem 0.5rem;
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.09);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 2px 0 rgba(255, 255, 255, 0.4) inset,
    0 12px 40px -8px rgba(26, 26, 46, 0.1);
  transition:
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease;
}

.search-page-formbox__row:focus-within {
  border-color: rgba(245, 137, 31, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 0 0 4px rgba(245, 137, 31, 0.11),
    0 16px 48px -10px rgba(245, 137, 31, 0.18);
}

.search-page-formbox__input {
  flex: 1 1 12rem;
  min-width: 0;
  height: 2.75rem;
  line-height: 2.75rem;
  font-size: 1.03rem;
  font-weight: 500;
  border: 0 !important;
  border-radius: 999px;
  padding: 0 1rem 0 1.4rem;
  color: #13131f;
  background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
  box-shadow: none !important;
  box-sizing: border-box;
  transition: background 0.2s ease;
}

.search-page-formbox__row:focus-within .search-page-formbox__input {
  background: #fff;
}

.search-page-formbox__input::placeholder {
  color: rgba(0, 0, 0, 0.36);
  font-weight: 400;
}

.search-page-formbox__input:focus,
.search-page-formbox__input:focus-visible {
  outline: none;
}

.search-page-formbox__btn {
  flex-shrink: 0;
  min-height: 2.7rem;
  padding: 0 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff !important;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(155deg, #ff9a35 0%, var(--sunny-primary) 38%, #e06f0a 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 8px 24px -4px rgba(217, 119, 15, 0.55);
  transition:
    filter 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.search-page-formbox__btn:hover {
  color: #fff !important;
  filter: brightness(1.05);
  transform: translateY(-1px) scale(1.01);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 12px 32px -4px rgba(245, 137, 31, 0.45);
}

.search-page-formbox__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(245, 137, 31, 0.55);
}

/* Tóm tắt kết quả — dải nổi, dễ quét mắt */
.search-page-summary {
  max-width: 100%;
  margin-top: 1.75rem;
  margin-bottom: 1.25rem;
  padding: 0.7rem 1rem 0.7rem 1.1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.72);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 250, 245, 0.65) 100%);
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-left: 4px solid var(--sunny-primary);
  border-radius: 0.6rem;
  box-shadow: 0 4px 18px rgba(26, 26, 46, 0.04);
}

.search-page-summary:empty {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.search-page-summary__q {
  color: #c25e08;
  font-weight: 600;
  word-break: break-word;
  padding: 0.12rem 0.4rem 0.1rem;
  margin: 0 0.1rem;
  background: linear-gradient(180deg, rgba(255, 240, 210, 0.95) 0%, rgba(255, 220, 170, 0.45) 100%);
  border-radius: 0.3rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.search-page-summary__muted {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.93rem;
  font-weight: 500;
}

/* Danh sách kết quả: số thứ tự + thẻ */
.search-page-hits {
  --search-gap: 1rem;
  counter-reset: search-hit;
  display: flex;
  flex-direction: column;
  gap: var(--search-gap);
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.search-page-hit {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin: 0;
  gap: 0.75rem;
  animation: search-hit-in 0.45s ease backwards;
}

.search-page-hit:nth-child(1) {
  animation-delay: 0.02s;
}
.search-page-hit:nth-child(2) {
  animation-delay: 0.06s;
}
.search-page-hit:nth-child(3) {
  animation-delay: 0.1s;
}
.search-page-hit:nth-child(4) {
  animation-delay: 0.14s;
}
.search-page-hit:nth-child(5) {
  animation-delay: 0.18s;
}
.search-page-hit:nth-child(n + 6) {
  animation-delay: 0.2s;
}

@keyframes search-hit-in {
  from {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-page-hit::before {
  counter-increment: search-hit;
  content: counter(search-hit, decimal-leading-zero);
  flex-shrink: 0;
  width: 2.4rem;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.32);
  background: linear-gradient(145deg, #fff 0%, #f2f3f6 100%);
  border: 1px solid rgba(26, 26, 46, 0.1);
  border-radius: 0.55rem;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.05);
  align-self: flex-start;
}

.search-page-hit__link {
  position: relative;
  display: block;
  flex: 1;
  min-width: 0;
  padding: 1.1rem 1.15rem 1.1rem 1.2rem;
  text-decoration: none;
  color: #151528;
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.07);
  border-radius: 0.9rem;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 252, 254, 1) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 10px 32px -12px rgba(26, 26, 46, 0.12);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.search-page-hit__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--sunny-primary-light) 0%, var(--sunny-primary) 45%, var(--sunny-primary-dark) 100%);
  border-radius: 0.9rem 0 0 0.9rem;
  opacity: 0.9;
  transition: width 0.25s ease;
}

.search-page-hit__link::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background: rgba(245, 137, 31, 0.08);
  border: 1px solid rgba(245, 137, 31, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23d9770f'%3E%3Cpath fill-rule='evenodd' d='M8.636 3.5a.5.5 0 0 0-.5-.5H1.5A1.5 1.5 0 0 0 0 4.5v10A1.5 1.5 0 0 0 1.5 16h10a1.5 1.5 0 0 0 1.5-1.5V7.864a.5.5 0 0 0-1 0V14.5a.5.5 0 0 1-.5.5h-10a.5.5 0 0 1-.5-.5v-10a.5.5 0 0 1 .5-.5h6.636a.5.5 0 0 0 .5-.5z'/%3E%3Cpath fill-rule='evenodd' d='M16 .5a.5.5 0 0 0-.5-.5h-5a.5.5 0 0 0 0 1h2.793L6.146 6.146a.5.5 0 1 0 .708.708L15 1.707V4.5a.5.5 0 0 0 1 0v-4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.7rem 0.7rem;
  opacity: 0.5;
  transition: opacity 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.search-page-hit__link:hover {
  color: #151528;
  border-color: rgba(245, 137, 31, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 16px 40px -10px rgba(245, 137, 31, 0.16);
  transform: translateY(-3px);
}

.search-page-hit__link:hover::before {
  width: 4px;
}

.search-page-hit__link:hover::after {
  opacity: 1;
  background-color: rgba(245, 137, 31, 0.14);
  transform: translate(2px, -2px);
}

.search-page-hit__link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px rgba(245, 137, 31, 0.45);
}

.search-page-hit__cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a85a0a;
  background: linear-gradient(135deg, rgba(255, 248, 238, 1) 0%, rgba(255, 230, 195, 0.4) 100%);
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 6px;
  padding: 0.22rem 0.5rem 0.2rem;
  margin-bottom: 0.45rem;
}

.search-page-hit__title {
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.025em;
  margin: 0 0 0.4rem;
  padding-right: 2.2rem;
  color: #12122a;
  transition: color 0.22s ease;
}

.search-page-hit__link:hover .search-page-hit__title {
  color: var(--sunny-primary-dark);
}

.search-page-hit__excerpt {
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0;
  color: rgba(0, 0, 0, 0.58);
  font-weight: 450;
  max-width: 38em;
}

.search-page-hit__mark,
.search-page-hit__excerpt mark.search-page-hit__mark,
.search-page-hit__title mark.search-page-hit__mark {
  background: linear-gradient(120deg, rgba(255, 235, 195, 0.95) 0%, rgba(255, 210, 140, 0.55) 100%);
  color: #1a1a1a;
  font-weight: 600;
  padding: 0.06em 0.14em 0.02em;
  border-radius: 0.2em;
  box-shadow: 0 1px 0 rgba(245, 137, 31, 0.15);
}

.search-page-hit__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sunny-primary-dark);
  transition: gap 0.25s ease, color 0.2s ease;
}

.search-page-hit__link:hover .search-page-hit__cta {
  gap: 0.55rem;
  color: var(--sunny-primary);
}

/* Gợi ý từ khóa: panel card */
.search-page-aux {
  max-width: 100%;
  margin: 0.5rem auto 0;
}

.search-page-aux__idle {
  padding: 1.4rem 1.35rem 1.3rem;
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 0.9rem;
  box-shadow: 0 8px 32px -12px rgba(26, 26, 46, 0.1);
}

.search-page-aux__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.38);
  margin: 0 0 0.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26, 26, 46, 0.07);
}

.search-page-aux__sub {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
}

.search-page-aux__link {
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sunny-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    gap 0.2s ease;
}

.search-page-aux__link:hover {
  color: var(--sunny-primary-dark);
  border-bottom-color: rgba(245, 137, 31, 0.35);
}

.search-page-aux__zero {
  margin-top: 0.25rem;
}

.search-page-chips {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-page-chip {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(26, 26, 46, 0.08);
  color: #222;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem 0.42rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff 0%, #f9f9fc 100%);
  box-shadow: 0 1px 2px rgba(26, 26, 46, 0.04);
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.search-page-chip:hover {
  color: var(--sunny-primary-dark);
  border-color: rgba(245, 137, 31, 0.3);
  background: linear-gradient(180deg, #fffdfa 0%, #fff3e5 100%);
  box-shadow: 0 4px 14px -2px rgba(245, 137, 31, 0.18);
  transform: translateY(-2px);
}

.search-page-chip:focus-visible {
  outline: 2px solid var(--sunny-primary);
  outline-offset: 2px;
}

.search-page-zero {
  text-align: center;
  padding: 2.5rem 1.4rem 2.2rem;
  background:
    linear-gradient(165deg, #ffffff 0%, #fafbfe 50%, #f0f2f7 100%);
  border: 1px solid rgba(26, 26, 46, 0.09);
  border-radius: 1rem;
  box-shadow: 0 12px 40px -16px rgba(26, 26, 46, 0.12);
}

.search-page-zero__icon {
  display: inline-flex;
  width: 3.5rem;
  height: 3.5rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #d9770f;
  background: linear-gradient(145deg, #fff8ef 0%, #ffecd4 100%);
  border: 1px solid rgba(245, 137, 31, 0.22);
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(245, 137, 31, 0.12);
}

.search-page-zero__title {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
  color: #1a1a2e;
}

.search-page-zero__text {
  font-size: 0.94rem;
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.52);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.search-page-zero__text strong {
  color: var(--sunny-primary-dark);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .search-page-hit,
  .search-page-hit::before,
  .search-page-hit__link,
  .search-page-chip,
  .search-page-formbox__btn {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 575.98px) {
  .search-page-hero {
    text-align: left;
  }

  .search-page-formbox__row {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    padding: 0.55rem 0.55rem 0.55rem 0.6rem;
    border-radius: 1.05rem;
  }

  .search-page-formbox__input {
    width: 100%;
    line-height: 1.5;
    height: auto;
    min-height: 3.05rem;
    padding: 0.7rem 1rem;
    border-radius: 0.75rem;
  }

  .search-page-formbox__btn {
    width: 100%;
    justify-content: center;
    border-radius: 0.75rem;
  }

  .search-page-summary {
    margin-top: 1.25rem;
  }

  .search-page-hit {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }

  .search-page-hit::before {
    width: 100%;
    min-height: 0;
    padding: 0.35rem 0.5rem;
    font-size: 0.65rem;
    border-radius: 0.5rem;
    margin-top: 0;
  }

  .search-page-hit__link {
    padding: 1rem 1rem 1rem 1.05rem;
  }

  .search-page-hit__link::after {
    top: 0.75rem;
    right: 0.75rem;
  }

  .search-page-hit__title {
    font-size: 1.02rem;
    padding-right: 2.5rem;
  }
}

/* —— Hồ sơ trường: showcase slider (truong-kookmin.html) —— */
.uni-showcase-wrap {
  position: relative;
}

.uni-showcase-slider {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  min-height: 280px;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.08),
    0 24px 50px -20px rgba(15, 23, 42, 0.28);
}

@media (min-width: 768px) {
  .uni-showcase-slider {
    min-height: 360px;
  }
}

@media (min-width: 1200px) {
  .uni-showcase-slider {
    min-height: 420px;
  }
}

.uni-showcase-swiper {
  width: 100%;
  min-height: 280px;
  border-radius: inherit;
}

@media (min-width: 768px) {
  .uni-showcase-swiper {
    min-height: 360px;
  }
}

@media (min-width: 1200px) {
  .uni-showcase-swiper {
    min-height: 420px;
  }
}

.uni-showcase-swiper .swiper-wrapper {
  min-height: 280px;
}

@media (min-width: 768px) {
  .uni-showcase-swiper .swiper-wrapper {
    min-height: 360px;
  }
}

@media (min-width: 1200px) {
  .uni-showcase-swiper .swiper-wrapper {
    min-height: 420px;
  }
}

.uni-showcase-swiper .swiper-slide {
  height: auto;
  min-height: 280px;
  border-radius: inherit;
  overflow: hidden;
}

@media (min-width: 768px) {
  .uni-showcase-swiper .swiper-slide {
    min-height: 360px;
  }
}

@media (min-width: 1200px) {
  .uni-showcase-swiper .swiper-slide {
    min-height: 420px;
  }
}

.uni-showcase-slide {
  position: relative;
  width: 100%;
  min-height: 280px;
  border-radius: inherit;
}

@media (min-width: 768px) {
  .uni-showcase-slide {
    min-height: 360px;
  }
}

@media (min-width: 1200px) {
  .uni-showcase-slide {
    min-height: 420px;
  }
}

.uni-showcase-slide__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  transform: scale(1.01);
}

.uni-showcase-slide__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8, 12, 24, 0.78) 0%,
    rgba(8, 12, 24, 0.38) 38%,
    rgba(8, 12, 24, 0.12) 65%,
    rgba(8, 12, 24, 0) 100%
  );
  pointer-events: none;
}

.uni-showcase-slide__text {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: min(34rem, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.25rem 4.75rem 1.35rem;
  color: #fff;
  text-align: left;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

@media (min-width: 576px) {
  .uni-showcase-slide__text {
    padding: 1.75rem 2rem 4.5rem 2rem;
  }
}

.uni-showcase-slide__kicker {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
  opacity: 0.92;
}

.uni-showcase-slide__title {
  font-size: clamp(1.5rem, 2.2vw + 0.6rem, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 0.4rem;
  color: #fff;
}

.uni-showcase-slide__sub {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  opacity: 0.95;
  max-width: 28em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

/* Thanh điều khiển dưới trái */
.uni-showcase-slider__bar {
  position: absolute;
  z-index: 4;
  left: 0.75rem;
  bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem 0.35rem;
  padding: 0.35rem 0.5rem 0.35rem 0.4rem;
  max-width: calc(100% - 1.5rem);
  background: rgba(12, 16, 28, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.uni-showcase-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  margin: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.uni-showcase-bar__btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.uni-showcase-bar__btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.uni-showcase-bar__btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.uni-showcase-bar__btn--prev,
.uni-showcase-bar__btn--next {
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  border-radius: 0.4rem;
}

.uni-showcase-bar__btn--prev:hover,
.uni-showcase-bar__btn--next:hover {
  background: rgba(255, 255, 255, 0.12);
}

.uni-showcase-slider__fraction {
  font-size: 0.78rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.95);
  min-width: 3.1rem;
  text-align: center;
  padding: 0 0.2rem;
}

@media (max-width: 575.98px) {
  .uni-showcase-slide__text {
    max-width: 100%;
    padding: 1.1rem 1rem 4.2rem 1rem;
  }

  .uni-showcase-slide__title {
    font-size: 1.35rem;
  }

  .uni-showcase-slider__bar {
    left: 0.5rem;
    bottom: 0.5rem;
  }
}

/* Tiêu đề trong nội dung soạn thảo — nhỏ gọn, gần cỡ chữ đoạn văn */
.bun-richtext-content {
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* Ảnh trong nội dung CMS — không tràn khổ, giữ tỷ lệ; không margin mặc định trên/dưới */
.bun-richtext-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
  margin-block: 0;
}

.bun-richtext-content video,
.bun-richtext-content svg {
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  border-radius: 0.375rem;
  margin-block: 0;
}

.bun-richtext-content figure {
  max-width: 100%;
  margin-inline: auto;
  margin-block: 0;
}

.bun-richtext-content figure.bun-richtext-block,
.bun-richtext-content figure.bun-richtext-slider,
.bun-richtext-content figure.bun-richtext-faq {
  margin-block: 15px;
}

.bun-richtext-content figure img {
  max-width: 100%;
  height: auto;
  border-radius: 0.375rem;
  margin-block: 0;
}

.bun-richtext-content iframe,
.bun-richtext-content embed,
.bun-richtext-content object {
  max-width: 100%;
  border-radius: 0.375rem;
  margin-block: 15px;
}

@media (max-width: 767.98px) {
  .bun-richtext-content p,
  .bun-richtext-content li,
  .bun-richtext-content dd,
  .bun-richtext-content blockquote,
  .bun-richtext-content address {
    text-align: justify;
    text-justify: inter-word;
  }
}

.bun-richtext-content h1:not(.section-title),
.bun-richtext-content h2:not(.section-title),
.bun-richtext-content h3:not(.section-title),
.bun-richtext-content h4:not(.section-title),
.bun-richtext-content h5:not(.section-title),
.bun-richtext-content h6:not(.section-title) {
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: var(--sunny-dark);
  margin-top: 1.15em;
  margin-bottom: 0.45em;
}

.bun-richtext-content h1:not(.section-title):first-child,
.bun-richtext-content h2:not(.section-title):first-child,
.bun-richtext-content h3:not(.section-title):first-child,
.bun-richtext-content h4:not(.section-title):first-child,
.bun-richtext-content h5:not(.section-title):first-child,
.bun-richtext-content h6:not(.section-title):first-child {
  margin-top: 0;
}

.bun-richtext-content h1:not(.section-title) {
  font-size: 1.3rem;
}

.bun-richtext-content h2:not(.section-title) {
  font-size: 1.18rem;
}

.bun-richtext-content h3:not(.section-title) {
  font-size: 1.1rem;
}

.bun-richtext-content h4:not(.section-title) {
  font-size: 1.05rem;
}

.bun-richtext-content h5:not(.section-title) {
  font-size: 1.02rem;
}

.bun-richtext-content h6:not(.section-title) {
  font-size: 1.0625rem;
  font-weight: 700;
}

/* —— Bảng trong nội dung soạn thảo (frontend) —— */
.bun-richtext-content .bun-richtext-table-shell {
  margin: 1.5rem 0;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.85rem;
  border: 1px solid rgba(26, 26, 46, 0.1);
  background: #fff;
  box-shadow:
    0 4px 6px -1px rgba(26, 26, 46, 0.07),
    0 14px 36px -12px rgba(245, 137, 31, 0.16);
  scrollbar-color: rgba(245, 137, 31, 0.35) rgba(26, 26, 46, 0.06);
  scrollbar-width: thin;
}

.bun-richtext-content .bun-richtext-table-shell table {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.bun-richtext-content table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--sunny-dark);
  margin: 1.5rem 0;
  background: #fff;
  border: 1px solid rgba(26, 26, 46, 0.1);
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow:
    0 4px 6px -1px rgba(26, 26, 46, 0.06),
    0 12px 32px -14px rgba(245, 137, 31, 0.14);
}

.bun-richtext-content table caption {
  caption-side: top;
  padding: 0 0.2rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sunny-dark);
  text-align: left;
}

.bun-richtext-content thead th {
  padding: 0.88rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #374151;
  background: #f1f3f5;
  border-bottom: 1px solid #dee2e6;
  vertical-align: middle;
}

.bun-richtext-content thead th + th {
  border-left: 1px solid #e5e7eb;
}

.bun-richtext-content tbody th {
  padding: 0.78rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #374151;
  background: #f3f4f6;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  border-right: 1px solid rgba(26, 26, 46, 0.06);
  vertical-align: top;
}

.bun-richtext-content tbody td {
  padding: 0.8rem 1rem;
  vertical-align: top;
  border-bottom: 1px solid rgba(26, 26, 46, 0.075);
  border-right: 1px solid rgba(26, 26, 46, 0.055);
}

.bun-richtext-content tbody tr td:last-child,
.bun-richtext-content tbody tr th:last-child {
  border-right: none;
}

.bun-richtext-content tbody tr:last-child th,
.bun-richtext-content tbody tr:last-child td {
  border-bottom: none;
}

.bun-richtext-content table:not(.bun-richtext-table--striped) tbody tr:nth-child(even) td,
.bun-richtext-content table:not(.bun-richtext-table--striped) tbody tr:nth-child(even) th {
  background-color: rgba(255, 247, 237, 0.42);
}

.bun-richtext-content table.bun-richtext-table--striped tbody tr:nth-child(odd) td,
.bun-richtext-content table.bun-richtext-table--striped tbody tr:nth-child(odd) th {
  background: rgba(255, 252, 248, 0.97);
}

.bun-richtext-content table.bun-richtext-table--striped tbody tr:nth-child(even) td,
.bun-richtext-content table.bun-richtext-table--striped tbody tr:nth-child(even) th {
  background: rgba(255, 247, 237, 0.78);
}

.bun-richtext-content tbody tr:hover td,
.bun-richtext-content tbody tr:hover th {
  background-color: rgba(245, 137, 31, 0.09) !important;
}

.bun-richtext-content table a {
  color: var(--sunny-primary-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bun-richtext-content table a:hover {
  color: var(--sunny-primary);
}

/* Biến viền + modifier bảng (trùng logic editor, hiển thị đúng cách trên site) */
.bun-richtext-content .bun-richtext-table {
  --bun-td-border: rgba(26, 26, 46, 0.11);
  --bun-td-border-w: 1px;
  --bun-td-border-style: solid;
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bdw-thin {
  --bun-td-border-w: 1px;
  --bun-td-border: rgba(26, 26, 46, 0.08);
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bdw-medium {
  --bun-td-border-w: 1px;
  --bun-td-border: rgba(26, 26, 46, 0.11);
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bdw-thick {
  --bun-td-border-w: 2px;
  --bun-td-border: rgba(26, 26, 46, 0.16);
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bds-solid {
  --bun-td-border-style: solid;
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bds-dashed {
  --bun-td-border-style: dashed;
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bds-dotted {
  --bun-td-border-style: dotted;
}

.bun-richtext-content .bun-richtext-table:not([class*="bun-richtext-table--bd-"]) thead th {
  border: 1px solid #e5e7eb;
  border-bottom: 1px solid #dee2e6;
}

.bun-richtext-content .bun-richtext-table:not([class*="bun-richtext-table--bd-"]) tbody th,
.bun-richtext-content .bun-richtext-table:not([class*="bun-richtext-table--bd-"]) td {
  border: 1px solid rgba(26, 26, 46, 0.09);
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-all th,
.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-all td {
  border: var(--bun-td-border-w) var(--bun-td-border-style) var(--bun-td-border);
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-outer {
  border: var(--bun-td-border-w) var(--bun-td-border-style) var(--bun-td-border);
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-outer th,
.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-outer td {
  border: 0;
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-horizontal th,
.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-horizontal td {
  border: 0;
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-horizontal thead tr {
  border-bottom: var(--bun-td-border-w) var(--bun-td-border-style) var(--bun-td-border);
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-horizontal tbody tr {
  border-bottom: var(--bun-td-border-w) var(--bun-td-border-style) var(--bun-td-border);
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-vertical th,
.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-vertical td {
  border: 0;
  border-right: var(--bun-td-border-w) var(--bun-td-border-style) var(--bun-td-border);
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-vertical th:last-child,
.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-vertical td:last-child {
  border-right: 0;
}

.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-none th,
.bun-richtext-content .bun-richtext-table.bun-richtext-table--bd-none td {
  border: 0;
}

@media (max-width: 575.98px) {
  .bun-richtext-content thead th {
    padding: 0.7rem 0.75rem;
    font-size: 0.68rem;
  }

  .bun-richtext-content tbody td,
  .bun-richtext-content tbody th {
    padding: 0.65rem 0.75rem;
    font-size: 0.875rem;
  }
}

/* Khối CMS: full-bleed khỏi .container — dùng margin (không transform) để tránh lệch/ghi đè pixel và cuộn ngang */
main#main-content {
  overflow-x: clip;
  margin-bottom: 0;
  padding-bottom: 0;
}

.bun-richtext-content .site-block,
.post-article-body .site-block {
  position: relative;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  left: auto;
  transform: none;
  box-sizing: border-box;
}

/* Bớt khoảng trống đỉnh block đầu tiên (py-* của .container-fluid bên trong) */
.bun-richtext-content .site-block:first-of-type > .container-fluid,
.post-article-body .site-block:first-of-type > .container-fluid {
  padding-top: 0;
}

/* Trang chủ: bỏ khe trắng đỉnh (bg-light lộ phía trên hero; navbar/hero bám top:0) */
body.sunny-front-home .navbar.navbar-sunny.fixed-top {
  top: 0;
  margin-top: 0;
}

body.sunny-front-home > nav.navbar {
  margin-top: 0;
}

body.sunny-front-home .hero-video-root {
  margin-top: 0;
}

body.sunny-front-home .tpl.tpl--page:first-child {
  margin-top: 0;
}

body.sunny-front-home article.bun-richtext-content {
  margin-top: 0;
  padding-top: 0;
}

body.sunny-front-home main#main-content {
  margin-top: 0;
  padding-top: 0;
}

body.sunny-front-home .tpl.tpl--page > .container {
  padding-top: 0;
}

body.sunny-front-home .bun-richtext-content {
  margin-top: 0;
  padding-top: 0;
}

body.sunny-front-home .bun-richtext-content > .site-block:first-of-type {
  margin-top: 0;
}

/* Bản đồ / iframe nhúng: tránh khe dưới baseline chữ */
body.sunny-front-home .bun-richtext-content > .site-block:first-of-type iframe {
  display: block;
  border: 0;
  vertical-align: top;
}

body.sunny-front-home .bun-richtext-content > .site-block:first-of-type .site-block-generic-html:empty {
  display: none;
}

body.sunny-front-home .bun-richtext-content > .site-block:first-of-type .site-block-generic-html:has(iframe) {
  line-height: 0;
}
