:root {
  --dvtk-blue-950: #08152f;
  --dvtk-blue-900: #0e2048;
  --dvtk-blue-800: #15346f;
  --dvtk-blue-700: #1f4caa;
  --dvtk-blue-600: #2c68d6;
  --dvtk-blue-500: #3e82ff;
  --dvtk-sky-100: #eef5ff;
  --dvtk-sky-200: #dbe9ff;
  --dvtk-border: rgba(15, 43, 95, 0.12);
  --dvtk-text: #10213f;
  --dvtk-muted: #5d6f92;
  --dvtk-shadow: 0 18px 60px rgba(15, 42, 97, 0.10);
  --dvtk-shadow-lg: 0 24px 80px rgba(6, 18, 44, 0.18);
  --dvtk-radius: 24px;
  --dvtk-shell: 1360px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(62, 130, 255, 0.11), transparent 30%),
    linear-gradient(180deg, #f6f9ff 0%, #ffffff 28%, #f7fbff 100%);
  color: var(--dvtk-text);
}

body.has-menu {
  overflow: hidden;
}

body.is-home .simply-main,
.home-template .simply-main,
body[class*="home"] .simply-main {
  overflow: hidden;
}

img {
  display: block;
}

.dvtk-shell {
  width: min(calc(100% - 32px), var(--dvtk-shell));
  margin: 0 auto;
}

.dvtk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  color: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.dvtk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dvtk-button:hover {
  transform: translateY(-2px);
}

.dvtk-button--primary {
  background: linear-gradient(135deg, var(--dvtk-blue-500), var(--dvtk-blue-700));
  color: #fff;
  box-shadow: 0 16px 40px rgba(32, 86, 191, 0.22);
}

.dvtk-button--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dvtk-button--light {
  background: #fff;
  color: #12336d;
  box-shadow: 0 16px 40px rgba(8, 21, 47, 0.16);
}

.dvtk-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dvtk-blue-600);
  font-weight: 700;
}

.dvtk-text-link::after {
  content: "→";
  font-size: 16px;
}

.dvtk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(8, 21, 47, 0.06);
}

.dvtk-topbar {
  background: linear-gradient(90deg, var(--dvtk-blue-950), var(--dvtk-blue-800));
  color: rgba(255, 255, 255, 0.88);
}

.dvtk-topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.dvtk-topbar__label {
  font-size: 13px;
  font-weight: 600;
}

.dvtk-topbar__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.dvtk-topbar__links a {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
}

.dvtk-topbar__links a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.dvtk-header__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 90px;
  padding: 16px 0;
}

.dvtk-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--dvtk-text);
}

.dvtk-brand__marks {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.dvtk-brand__spo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.dvtk-brand__logo {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.dvtk-brand__text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.dvtk-brand__eyebrow {
  color: var(--dvtk-blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dvtk-brand__title {
  color: var(--dvtk-blue-950);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.05;
}

.dvtk-brand__caption {
  color: var(--dvtk-muted);
  font-size: 14px;
}

.dvtk-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.dvtk-icon-button,
.dvtk-burger {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--dvtk-border);
  box-shadow: 0 8px 28px rgba(10, 31, 72, 0.08);
}

.dvtk-icon-button:hover,
.dvtk-burger:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(10, 31, 72, 0.12);
}

.dvtk-special-button img {
  width: 22px;
  height: 22px;
}

.dvtk-burger {
  position: relative;
  flex-direction: column;
  gap: 5px;
}

.dvtk-burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--dvtk-blue-900);
}

.dvtk-nav {
  border-top: 1px solid rgba(8, 21, 47, 0.05);
  border-bottom: 1px solid rgba(8, 21, 47, 0.05);
  background: rgba(255, 255, 255, 0.78);
}

.dvtk-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 66px;
}

.dvtk-nav__item {
  position: relative;
}

.dvtk-nav__link {
  min-height: 50px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--dvtk-blue-950);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.dvtk-nav__toggle {
  border: 0;
  background: transparent;
}

.dvtk-nav__link:hover,
.dvtk-nav__item.is-open > .dvtk-nav__link,
.dvtk-nav__item:hover > .dvtk-nav__link {
  background: var(--dvtk-sky-100);
  color: var(--dvtk-blue-700);
}

.dvtk-mega {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  width: min(980px, calc(100vw - 40px));
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 21, 47, 0.08);
  box-shadow: var(--dvtk-shadow-lg);
  display: grid;
  grid-template-columns: minmax(240px, 280px) 1fr;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.dvtk-nav__item:last-child .dvtk-mega,
.dvtk-nav__item:nth-last-child(2) .dvtk-mega,
.dvtk-nav__item:nth-last-child(3) .dvtk-mega {
  left: auto;
  right: 0;
}

.dvtk-nav__item:hover .dvtk-mega,
.dvtk-nav__item.is-open .dvtk-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dvtk-mega__intro {
  padding: 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(180deg, var(--dvtk-blue-800), var(--dvtk-blue-950));
  display: grid;
  gap: 12px;
}

.dvtk-mega__intro h3 {
  font-size: 22px;
  line-height: 1.12;
}

.dvtk-mega__intro p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.55;
}

.dvtk-mega__intro .dvtk-text-link {
  color: #fff;
}

.dvtk-mega__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.dvtk-mega__grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dvtk-mega__grid.one-column {
  grid-template-columns: minmax(0, 1fr);
}

.dvtk-mega__column {
  display: grid;
  gap: 8px;
  align-content: start;
}

.dvtk-mega__title {
  color: var(--dvtk-blue-950);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.dvtk-mega__column a {
  padding: 11px 14px;
  border-radius: 14px;
  color: var(--dvtk-text);
  background: var(--dvtk-sky-100);
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 1.4;
}

.dvtk-mega__column a:hover {
  background: #fff;
  border-color: rgba(28, 80, 177, 0.16);
  box-shadow: 0 10px 22px rgba(28, 80, 177, 0.08);
}

.dvtk-hero {
  padding: 36px 0 12px;
}

.dvtk-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
}

.dvtk-hero__content {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 42px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(79, 147, 255, 0.38), transparent 26%),
    linear-gradient(135deg, var(--dvtk-blue-950), var(--dvtk-blue-800) 52%, #275dca 100%);
  color: #fff;
  box-shadow: var(--dvtk-shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dvtk-hero__content::before,
.dvtk-hero__content::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.dvtk-hero__content::before {
  width: 340px;
  height: 340px;
  right: -120px;
  top: -120px;
  background: rgba(255, 255, 255, 0.07);
}

.dvtk-hero__content::after {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: -100px;
  background: rgba(125, 196, 255, 0.08);
}

.dvtk-hero h1 {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-size: clamp(36px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.dvtk-hero__lead {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.7;
}

.dvtk-hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.dvtk-hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.dvtk-stat-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.dvtk-stat-card strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.dvtk-stat-card span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.dvtk-hero__aside {
  display: grid;
  gap: 18px;
  align-content: stretch;
}

.dvtk-feature-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 34, 75, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--dvtk-shadow);
  display: grid;
  grid-template-columns: 132px 1fr;
  min-height: 160px;
}

.dvtk-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dvtk-shadow-lg);
}

.dvtk-feature-card__image {
  background: linear-gradient(180deg, #edf4ff, #dbe8ff);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dvtk-feature-card__image img {
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

.dvtk-feature-card__body {
  padding: 22px;
}

.dvtk-feature-card__tag {
  display: inline-block;
  color: var(--dvtk-blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dvtk-feature-card__body h3 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.dvtk-feature-card__body p {
  margin-top: 10px;
  color: var(--dvtk-muted);
  font-size: 15px;
  line-height: 1.55;
}

.dvtk-section {
  padding: 10px 0;
}

.dvtk-section--soft {
  background: linear-gradient(180deg, rgba(219, 233, 255, 0.28), rgba(255, 255, 255, 0.76));
}

.dvtk-section__head {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.dvtk-section__head.align-left {
  margin-left: 0;
  text-align: left;
}

.dvtk-section__head h2 {
  margin-top: 16px;
  color: var(--dvtk-blue-950);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.dvtk-section__head p {
  margin-top: 14px;
  color: var(--dvtk-muted);
  font-size: 17px;
  line-height: 1.7;
}

.dvtk-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dvtk-route-card,
.dvtk-benefit-card,
.dvtk-news-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 34, 75, 0.08);
  box-shadow: var(--dvtk-shadow);
}

.dvtk-route-card {
  min-height: 220px;
  padding: 26px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dvtk-route-card strong {
  color: var(--dvtk-blue-950);
  font-size: 26px;
  line-height: 1.05;
}

.dvtk-route-card p {
  color: var(--dvtk-muted);
  font-size: 15px;
  line-height: 1.65;
}

.dvtk-route-card span {
  margin-top: auto;
  color: var(--dvtk-blue-600);
  font-weight: 700;
}

.dvtk-route-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dvtk-shadow-lg);
}

.dvtk-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dvtk-benefit-card {
  padding: 24px;
  border-radius: 24px;
}

.dvtk-benefit-card h3 {
  font-size: 22px;
  color: var(--dvtk-blue-950);
}

.dvtk-benefit-card p {
  margin-top: 12px;
  color: var(--dvtk-muted);
  font-size: 15px;
  line-height: 1.7;
}

.dvtk-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dvtk-news-card {
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dvtk-news-card__media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(180deg, #e9f2ff, #d9e8ff);
}

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

.dvtk-news-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.dvtk-news-card__meta {
  color: var(--dvtk-blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dvtk-news-card h3 {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.15;
}

.dvtk-news-card p {
  margin-top: 12px;
  color: var(--dvtk-muted);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}

.dvtk-news-card .dvtk-text-link {
  margin-top: 16px;
}

.dvtk-pagination-wrap {
  margin-top: 28px;
}

.dvtk-pagination-wrap .pagination {
  justify-content: center;
}

.dvtk-footer-cta {
  margin-top: 28px;
  padding: 0 0 18px;
}

.dvtk-footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 32px;
  color: #fff;
  background: linear-gradient(135deg, var(--dvtk-blue-950), var(--dvtk-blue-800) 60%, var(--dvtk-blue-600));
  box-shadow: var(--dvtk-shadow-lg);
}

.dvtk-footer-cta__inner h2 {
  margin-top: 14px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.04;
}

.dvtk-footer-cta__inner p {
  margin-top: 12px;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
}

.dvtk-footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dvtk-footer {
  padding: 18px 0 44px;
}

.dvtk-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 32px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(8, 21, 47, 0.08);
  box-shadow: var(--dvtk-shadow);
}

.dvtk-footer__brand img {
  width: 140px;
  height: auto;
}

.dvtk-footer__brand p {
  margin-top: 18px;
  color: var(--dvtk-muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 640px;
}

.dvtk-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.dvtk-footer__socials a,
.dvtk-mobile__socials a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--dvtk-sky-100);
  color: var(--dvtk-blue-700);
  font-size: 13px;
  font-weight: 700;
}

.dvtk-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.dvtk-footer__columns h3 {
  margin-bottom: 14px;
  color: var(--dvtk-blue-950);
  font-size: 18px;
}

.dvtk-footer__columns a {
  display: block;
  padding: 10px 0;
  color: var(--dvtk-muted);
  line-height: 1.45;
}

.dvtk-footer__columns a:hover {
  color: var(--dvtk-blue-700);
}

.dvtk-resource-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.dvtk-resource-strip a {
  min-height: 110px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(8, 21, 47, 0.08);
  box-shadow: var(--dvtk-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dvtk-resource-strip img {
  max-height: 58px;
  width: auto;
  object-fit: contain;
}

.dvtk-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding: 0 6px;
  color: var(--dvtk-muted);
  font-size: 14px;
}

.dvtk-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dvtk-mobile {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.dvtk-mobile__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(3, 10, 25, 0.44);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.dvtk-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  padding: 18px 18px 30px;
  background: linear-gradient(180deg, #0d1f46, #08152f 70%);
  color: #fff;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.28);
}

body.has-menu .dvtk-mobile {
  pointer-events: auto;
}

body.has-menu .dvtk-mobile__overlay {
  opacity: 1;
}

body.has-menu .dvtk-mobile__panel {
  transform: translateX(0);
}



.dvtk-mobile__brand img {
  width: 180px;
  height: auto;
}

.dvtk-mobile__close {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.dvtk-mobile__quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.dvtk-mobile__quicklinks a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.dvtk-mobile__nav {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.dvtk-mobile__group,
.dvtk-mobile__link.is-simple {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.dvtk-mobile__link {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  background: transparent;
}

.dvtk-mobile__link.is-simple {
  justify-content: flex-start;
}

.dvtk-mobile__toggle::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
}

.dvtk-mobile__group.is-open .dvtk-mobile__toggle::after {
  content: "−";
}

.dvtk-mobile__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.dvtk-mobile__group.is-open .dvtk-mobile__submenu {
  max-height: 720px;
}

.dvtk-mobile__submenu a {
  display: block;
  padding: 12px 18px;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.45;
}

.dvtk-mobile__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.post-body,
.godo-canvas,
.post-wrap,
.post-full-content,
.post-full {
  max-width: min(100%, 980px);
}

.post-body {
  font-size: 18px;
  line-height: 1.8;
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4 {
  color: var(--dvtk-blue-950);
  line-height: 1.12;
}

.post-body table {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--dvtk-shadow);
}

.post-body table td,
.post-body table th {
  border-color: rgba(15, 43, 95, 0.1);
  padding: 14px 16px;
}

@media (max-width: 1299px) {
  .dvtk-nav__list {
    flex-wrap: wrap;
    min-height: auto;
    padding: 10px 0;
  }

  .dvtk-nav__link {
    font-size: 13px;
    min-height: 46px;
  }

  .dvtk-hero__inner {
    grid-template-columns: 1fr;
  }

  .dvtk-route-grid,
  .dvtk-news-grid,
  .dvtk-benefits-grid,
  .dvtk-resource-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dvtk-footer__top,
  .dvtk-footer-cta__inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .dvtk-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .dvtk-topbar {
    display: none;
  }

  .dvtk-header__main {
    min-height: 78px;
  }

  .dvtk-brand__caption,
  .dvtk-nav {
    display: none;
  }

  .dvtk-brand__logo {
    width: 92px;
  }

  .dvtk-brand__title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .dvtk-shell {
    width: min(calc(100% - 20px), var(--dvtk-shell));
  }

  .dvtk-header__main {
    gap: 12px;
    min-height: 72px;
    padding: 12px 0;
  }

  .dvtk-brand {
    gap: 12px;
  }

  .dvtk-brand__spo {
    width: 40px;
    height: 40px;
  }

  .dvtk-brand__logo {
    width: 76px;
  }

  .dvtk-brand__eyebrow,
  .dvtk-brand__caption,
  .dvtk-header__actions .dvtk-icon-button:nth-child(3) {
    display: none;
  }

  .dvtk-brand__title {
    font-size: 18px;
  }

  .dvtk-hero {
    padding-top: 20px;
  }

  .dvtk-hero__content {
    min-height: auto;
    padding: 26px 20px;
    border-radius: 26px;
  }

  .dvtk-hero h1 {
    font-size: 34px;
  }

  .dvtk-hero__lead {
    font-size: 16px;
  }

  .dvtk-hero__stats,
  .dvtk-route-grid,
  .dvtk-news-grid,
  .dvtk-benefits-grid,
  .dvtk-resource-strip,
  .dvtk-footer__columns {
    grid-template-columns: 1fr;
  }

  .dvtk-feature-card {
    grid-template-columns: 1fr;
  }

  .dvtk-feature-card__image {
    min-height: 120px;
  }

  .dvtk-feature-card__body h3,
  .dvtk-news-card h3,
  .dvtk-route-card strong {
    font-size: 22px;
  }

  .dvtk-section {
    padding: 38px 0;
  }

  .dvtk-section__head h2 {
    font-size: 30px;
  }

  .dvtk-footer__top,
  .dvtk-footer-cta__inner {
    padding: 22px;
    border-radius: 24px;
  }

  .dvtk-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   DVTK FIX PACK 2026-03-21
========================= */
html,
body {
  overflow-x: hidden;
}

body {
  min-width: 320px;
}

.simply-viewport,
.simply-main {
  overflow-x: clip;
}

.dvtk-header {
  overflow: visible;
}

.dvtk-shell {
  position: relative;
}

.dvtk-topbar__inner,
.dvtk-header__main,
.dvtk-nav__list {
  min-width: 0;
}

.dvtk-header__main {
  gap: 18px;
}

.dvtk-brand {
  flex: 1 1 auto;
  min-width: 0;
}

.dvtk-brand__marks {
  gap: 14px;
}

.dvtk-brand__spo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 66px;
  padding: 10px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--dvtk-blue-950), var(--dvtk-blue-700));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 36px rgba(10, 31, 72, 0.18);
}

.dvtk-brand__spo {
  width: 118px;
  height: auto;
  object-fit: contain;
}

.dvtk-brand__logo {
  width: 94px;
  flex-shrink: 0;
}

.dvtk-brand__text {
  gap: 2px;
}

.dvtk-brand__title {
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.08;
}

.dvtk-brand__caption {
  display: none;
}

.dvtk-header__actions {
  margin-left: auto;
}

.dvtk-icon-button,
.dvtk-burger {
  flex-shrink: 0;
}

.dvtk-special-button {
  color: var(--dvtk-blue-900);
}

.dvtk-special-button__icon {
  width: 24px;
  height: 24px;
  display: block;
}

.dvtk-burger {
  display: none;
}

.dvtk-nav {
  overflow: visible;
}

.dvtk-nav__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  row-gap: 10px;
  padding: 14px 0;
  min-height: auto;
}

.dvtk-nav__item {
  position: relative;
  flex: 0 0 auto;
}

.dvtk-nav__item.has-mega {
  position: static;
}

.dvtk-nav__link {
  padding: 0 16px;
}

.dvtk-nav__link:hover,
.dvtk-nav__item:hover > .dvtk-nav__link {
  background: var(--dvtk-sky-100);
  color: var(--dvtk-blue-700);
}

.dvtk-nav__item.is-open > .dvtk-nav__link {
  background: var(--dvtk-sky-100);
  color: var(--dvtk-blue-700);
}

.dvtk-mega {
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  width: min(1160px, calc(100vw - 48px));
  margin-inline: auto;
  z-index: 25;
}

.dvtk-nav__item:hover .dvtk-mega {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}

.dvtk-nav__item.is-open .dvtk-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dvtk-hero__content {
  min-height: 500px;
}

.dvtk-feature-card {
  align-items: stretch;
}

.dvtk-feature-card__image {
  padding: 18px;
}

.dvtk-feature-card__image img {
  width: 100%;
  max-width: 108px;
  height: 74px;
  padding: 8px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(11, 31, 70, 0.08);
  object-fit: contain;
}

.dvtk-route-card,
.dvtk-benefit-card,
.dvtk-news-card,
.dvtk-feature-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dvtk-news-grid {
  align-items: stretch;
}

.dvtk-news-card {
  height: 100%;
}

.dvtk-news-card__media {
  height: clamp(220px, 22vw, 300px);
  aspect-ratio: auto;
  overflow: hidden;
}

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

.dvtk-news-card h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dvtk-news-card p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dvtk-mobile {
  display: none;
}

.dvtk-mobile__panel {
  width: min(420px, 100%);
}

.dvtk-mobile__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.dvtk-mobile__spo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 50px;
  padding: 8px 12px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.18);
}

.dvtk-mobile__spo-badge img {
  width: 96px;
  height: auto;
  object-fit: contain;
}

.dvtk-mobile__brand-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.dvtk-mobile__submenu {
  max-height: 0;
}

.dvtk-mobile__submenu a {
  background: transparent;
}

@media (max-width: 1399px) {
  .dvtk-brand__spo-badge {
    min-width: 132px;
    height: 58px;
    padding: 8px 14px;
  }

  .dvtk-brand__spo {
    width: 102px;
  }

  .dvtk-brand__logo {
    width: 84px;
  }

  .dvtk-nav__link {
    min-height: 48px;
    padding: 0 14px;
    font-size: 13px;
  }

  .dvtk-mega {
    width: min(1080px, calc(100vw - 40px));
  }
}

@media (max-width: 1180px) {
  .dvtk-topbar,
  .dvtk-nav {
    display: none;
  }

  .dvtk-burger {
    display: inline-flex;
  }

  .dvtk-mobile {
    display: block;
  }

  .dvtk-header__main {
    min-height: 80px;
    padding: 14px 0;
  }

  .dvtk-brand__title {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .dvtk-shell {
    width: min(calc(100% - 20px), var(--dvtk-shell));
  }

  .dvtk-header__main {
    gap: 12px;
    min-height: 74px;
    padding: 12px 0;
  }

  .dvtk-brand {
    gap: 10px;
  }

  .dvtk-brand__marks {
    gap: 10px;
  }

  .dvtk-brand__spo-badge {
    min-width: 96px;
    height: 42px;
    padding: 6px 10px;
    border-radius: 14px;
  }

  .dvtk-brand__spo {
    width: 72px;
  }

  .dvtk-brand__logo {
    width: 62px;
  }

  .dvtk-brand__eyebrow {
    display: none;
  }

  .dvtk-brand__title {
    font-size: 18px;
  }

  .dvtk-icon-button,
  .dvtk-burger {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .dvtk-hero {
    padding-top: 20px;
  }

  .dvtk-hero__inner,
  .dvtk-route-grid,
  .dvtk-news-grid,
  .dvtk-resource-strip,
  .dvtk-footer__columns {
    grid-template-columns: 1fr;
  }

  .dvtk-feature-card {
    grid-template-columns: 110px 1fr;
  }

  .dvtk-feature-card__body h3,
  .dvtk-news-card h3,
  .dvtk-route-card strong {
    font-size: 22px;
  }

  .dvtk-news-card__media {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .dvtk-header__actions .dvtk-special-button,
  .dvtk-header__actions .js-dark-mode {
    display: none;
  }

  .dvtk-brand__marks {
    gap: 8px;
  }

  .dvtk-brand__spo-badge {
    min-width: 82px;
    height: 36px;
    padding: 4px 8px;
  }

  .dvtk-brand__spo {
    width: 60px;
  }

  .dvtk-brand__logo {
    width: 54px;
  }

  .dvtk-brand__title {
    font-size: 17px;
  }

  .dvtk-feature-card {
    grid-template-columns: 92px 1fr;
    min-height: 144px;
  }

  .dvtk-feature-card__image {
    padding: 12px;
  }

  .dvtk-feature-card__image img {
    max-width: 76px;
    height: 56px;
    padding: 6px 8px;
  }

  .dvtk-mobile__panel {
    padding: 16px 14px 26px;
  }

  .dvtk-mobile__brand {
    gap: 10px;
  }

  .dvtk-mobile__spo-badge {
    min-width: 100px;
    height: 44px;
  }

  .dvtk-mobile__spo-badge img {
    width: 80px;
  }

  .dvtk-mobile__brand-text {
    font-size: 13px;
  }
}


/* =========================
   DVTK FIX PACK 2026-03-21 v3
========================= */
:root {
  --dvtk-shell: 1480px;
}

body.dvtk-menu-open {
  overflow: hidden;
}

body:not(.dvtk-menu-open) .dvtk-mobile {
  pointer-events: none;
}

.dvtk-header,
.dvtk-nav,
.dvtk-hero,
.dvtk-featured-story-wrap,
.dvtk-section,
.dvtk-footer-services,
.dvtk-footer {
  overflow-x: clip;
}

.dvtk-header__main {
  gap: 20px;
}

.dvtk-brand__marks {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dvtk-brand__mark-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 84px;
  border-radius: 22px;
  flex-shrink: 0;
}

.dvtk-brand__spo-badge {
  width: 154px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #173a87, #264fa6);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(10, 31, 72, 0.18);
}

.dvtk-brand__logo-badge {
  width: 84px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.98), rgba(236,243,255,0.98));
  border: 1px solid rgba(15,43,95,0.08);
  box-shadow: 0 16px 34px rgba(10, 31, 72, 0.10);
}

.dvtk-brand__spo {
  width: 118px;
  height: auto;
}

.dvtk-brand__logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.dvtk-brand__title {
  max-width: 820px;
}

.dvtk-nav__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0;
  overflow: visible;
}

.dvtk-nav__item {
  flex: 0 1 auto;
  min-width: 0;
}

.dvtk-nav__link {
  min-height: 48px;
  padding: 0 12px;
  font-size: 13px;
}

.dvtk-nav__item:hover .dvtk-mega {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}

.dvtk-nav__item.is-open .dvtk-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dvtk-hero {
  padding: 28px 0 18px;
}

.dvtk-hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 480px);
  gap: 22px;
  align-items: stretch;
}

.dvtk-hero__content {
  min-height: 540px;
  padding: 38px;
}

.dvtk-hero h1 {
  max-width: 10ch;
  overflow-wrap: anywhere;
  font-size: clamp(32px, 4vw, 56px);
}

.dvtk-hero__lead {
  max-width: 620px;
  font-size: 17px;
}

.dvtk-hero__aside {
  gap: 16px;
}

.dvtk-feature-card {
  grid-template-columns: 112px minmax(0, 1fr) 26px;
  align-items: center;
  min-height: 144px;
  padding-right: 18px;
  border-radius: 26px;
}

.dvtk-feature-card__image {
  min-height: 100%;
  padding: 18px 14px;
  background: linear-gradient(180deg, #edf4ff, #dde9ff);
}

.dvtk-feature-card__icon {
  width: 84px;
  height: 84px;
  margin: 0 auto;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(11, 31, 70, 0.10);
}

.dvtk-feature-card__image img {
  width: 62px;
  height: 42px;
  max-width: none;
  max-height: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.dvtk-feature-card__body {
  padding: 20px 0 20px 0;
  min-width: 0;
}

.dvtk-feature-card__body h3 {
  margin-top: 8px;
  font-size: 28px;
}

.dvtk-feature-card__body p {
  margin-top: 8px;
  font-size: 15px;
}

.dvtk-feature-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  color: var(--dvtk-blue-700);
  font-size: 22px;
  font-weight: 700;
}

.dvtk-news-card__media {
  height: clamp(230px, 23vw, 310px);
}

.dvtk-featured-story-wrap {
  padding: 6px 0 18px;
}

.dvtk-featured-story-slider {
  position: relative;
}

.dvtk-slider-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 5;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(18px);
}

.dvtk-slider-btn.simply-slider-prev {
  right: 84px;
}

.godo-f-story {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--dvtk-shadow-lg);
}

.godo-f-story__bg,
.godo-f-story__overlay {
  position: absolute;
  inset: 0;
}

.godo-f-story__bg {
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.godo-f-story__overlay {
  background: linear-gradient(90deg, rgba(7, 17, 39, 0.70) 0%, rgba(7, 17, 39, 0.28) 58%, rgba(7, 17, 39, 0.08) 100%);
}

.godo-f-story__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 48px 0;
}

.godo-f-story__panel {
  width: min(100%, 680px);
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(9, 25, 56, 0.92), rgba(16, 46, 106, 0.78));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 60px rgba(5, 16, 38, 0.28);
  color: #fff;
}

.godo-f-story__badge,
.godo-f-story__meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.godo-f-story__meta {
  margin-top: 14px;
  color: rgba(255,255,255,0.82);
}

.godo-f-story h2 {
  margin-top: 18px;
  font-size: clamp(30px, 3.2vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.godo-f-story h2 a {
  color: #fff;
}

.godo-f-story p {
  max-width: 56ch;
  margin-top: 18px;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.7;
}

.godo-f-story__actions {
  margin-top: 22px;
}

.dvtk-footer-services {
  padding: 18px 0 10px;
}

.dvtk-footer-services__grid {
  display: grid;
  gap: 18px;
}

.footer-items {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(8, 21, 47, 0.08);
  box-shadow: var(--dvtk-shadow);
}

.footer-items__head h2 {
  margin-top: 16px;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.08;
}

.footer-items__head p,
.footer-items--feedback p {
  margin-top: 12px;
  color: var(--dvtk-muted);
  line-height: 1.7;
}

.footer-items--feedback {
  display: flex;
  flex-direction: column;
}

.footer-items--feedback h3 {
  margin-top: 16px;
  font-size: 28px;
  color: var(--dvtk-blue-950);
}

.dvtk-gos-card {
  margin-top: 18px;
  padding: 22px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, var(--dvtk-blue-950), var(--dvtk-blue-800) 55%, var(--dvtk-blue-600));
  box-shadow: var(--dvtk-shadow-lg);
}

.dvtk-gos-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dvtk-gos-card__text {
  margin: 16px 0 20px;
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
}

.dvtk-footer__mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.dvtk-footer__mini-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--dvtk-sky-100);
  color: var(--dvtk-blue-700);
  font-size: 13px;
  font-weight: 700;
}

.dvtk-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 26px;
  align-items: start;
}

.dvtk-post-aside {
  position: sticky;
  top: 150px;
}

.dvtk-post-aside__box {
  padding: 22px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(8, 21, 47, 0.08);
  box-shadow: var(--dvtk-shadow);
}

.dvtk-post-aside__head h2 {
  margin-top: 14px;
  font-size: 30px;
  line-height: 1.08;
  color: var(--dvtk-blue-950);
}

.dvtk-post-links {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.dvtk-post-linkcard {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fbff, #eef5ff);
  border: 1px solid rgba(8, 21, 47, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dvtk-post-linkcard:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(10, 31, 72, 0.08);
}

.dvtk-post-linkcard__logo {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 10px 22px rgba(10, 31, 72, 0.08);
}

.dvtk-post-linkcard__logo img {
  width: 54px;
  height: 34px;
  object-fit: contain;
}

.dvtk-post-linkcard__text {
  min-width: 0;
}

.dvtk-post-linkcard__text strong {
  display: block;
  color: var(--dvtk-blue-950);
  font-size: 16px;
  line-height: 1.3;
}

.dvtk-post-linkcard__text small {
  display: block;
  margin-top: 4px;
  color: var(--dvtk-muted);
  font-size: 13px;
  line-height: 1.45;
}

.dvtk-post-linkcard__arrow {
  color: var(--dvtk-blue-700);
  font-size: 20px;
  font-weight: 700;
}

.dvtk-mobile {
  z-index: 110;
}

.dvtk-mobile__overlay {
  background: rgba(3, 10, 25, 0.54);
}

.dvtk-menu-open .dvtk-mobile {
  pointer-events: auto;
}

.dvtk-menu-open .dvtk-mobile__overlay {
  opacity: 1;
}

.dvtk-menu-open .dvtk-mobile__panel {
  transform: translateX(0);
}

@media (max-width: 1460px) {
  .dvtk-nav__link {
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 1299px) {
  .dvtk-nav__list {
    justify-content: flex-start;
    gap: 4px;
  }

  .dvtk-hero__inner {
    grid-template-columns: 1fr;
  }

  .dvtk-footer-services__grid,
  .dvtk-footer__top {
    grid-template-columns: 1fr;
  }

  .dvtk-post-layout {
    grid-template-columns: 1fr 300px;
  }
}

@media (max-width: 1180px) {
  .dvtk-topbar,
  .dvtk-nav {
    display: none;
  }

  .dvtk-burger {
    display: inline-flex;
  }

  .dvtk-mobile {
    display: block;
  }
}

@media (max-width: 1023px) {
  .dvtk-post-layout {
    grid-template-columns: 1fr;
  }

  .dvtk-post-aside {
    position: static;
  }
}

@media (max-width: 900px) {
  .dvtk-brand__mark-card {
    height: 64px;
    border-radius: 18px;
  }

  .dvtk-brand__spo-badge {
    width: 118px;
    padding: 10px 12px;
  }

  .dvtk-brand__logo-badge {
    width: 64px;
  }

  .dvtk-brand__spo {
    width: 88px;
  }

  .dvtk-brand__logo {
    width: 54px;
    height: 54px;
  }

  .dvtk-hero__content {
    min-height: auto;
    padding: 30px 22px;
  }

  .dvtk-hero h1 {
    max-width: none;
    font-size: 38px;
  }

  .godo-f-story,
  .godo-f-story__inner {
    min-height: 440px;
  }

  .godo-f-story__panel {
    width: 100%;
    padding: 26px;
  }

  .dvtk-feature-card {
    grid-template-columns: 98px minmax(0, 1fr) 18px;
    min-height: 128px;
    padding-right: 14px;
  }

  .dvtk-feature-card__icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
  }

  .dvtk-feature-card__image img {
    width: 54px;
    height: 36px;
  }

  .dvtk-feature-card__body h3 {
    font-size: 24px;
  }

  .dvtk-footer__columns,
  .dvtk-resource-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dvtk-header__actions .dvtk-special-button,
  .dvtk-header__actions .js-dark-mode {
    display: none;
  }

  .dvtk-brand__mark-card {
    height: 54px;
    border-radius: 16px;
  }

  .dvtk-brand__spo-badge {
    width: 98px;
  }

  .dvtk-brand__logo-badge {
    width: 54px;
  }

  .dvtk-brand__spo {
    width: 72px;
  }

  .dvtk-brand__logo {
    width: 44px;
    height: 44px;
  }

  .dvtk-brand__title {
    font-size: 17px;
  }

  .dvtk-feature-card {
    grid-template-columns: 88px minmax(0, 1fr);
    padding-right: 0;
  }

  .dvtk-feature-card__arrow {
    display: none;
  }

  .dvtk-feature-card__body h3 {
    font-size: 22px;
  }

  .dvtk-slider-btn {
    bottom: 16px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .dvtk-slider-btn.simply-slider-prev {
    right: 68px;
  }

  .godo-f-story h2 {
    font-size: 30px;
  }

  .godo-f-story p {
    font-size: 16px;
  }

  .footer-items,
  .dvtk-footer__top {
    padding: 22px;
    border-radius: 24px;
  }

  .dvtk-footer__columns,
  .dvtk-resource-strip {
    grid-template-columns: 1fr;
  }

  .dvtk-mobile__panel {
    width: min(100%, 380px);
  }
}

.dvtk-legacy-menu-toggle { display:none !important; }


/* =========================
   DVTK FIX PACK 2026-03-21 v4
========================= */
body.dvtk-menu-open {
  overflow: hidden;
}

.dvtk-theme-settings {
  display: none;
}

.dvtk-brand__marks {
  display: flex;
  align-items: center;
  gap: 16px;
}

.dvtk-brand__spo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 74px;
  padding: 0 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, #173a87, #264fa6);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 42px rgba(10, 31, 72, 0.18);
  flex-shrink: 0;
}

.dvtk-brand__spo {
  width: 104px;
  height: auto;
  object-fit: contain;
}

.dvtk-brand__logo,
.dvtk-brand__logo-badge,
.dvtk-brand__logo-badge img {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.dvtk-brand__logo {
  width: 74px;
  height: 74px;
  padding: 0;
  border-radius: 0;
  flex-shrink: 0;
}

.dvtk-nav__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 6px;
  padding: 12px 0;
  overflow: visible;
}

.dvtk-nav__item {
  flex: 0 0 auto;
}

.dvtk-nav__link {
  min-height: 48px;
  padding: 0 12px;
  font-size: 13px;
  white-space: nowrap;
}

.dvtk-nav__item:hover .dvtk-mega {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
}

.dvtk-nav__item.is-open .dvtk-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dvtk-featured-story-wrap {
  padding: 10px 0 18px;
}

.godo-f-story {
  min-height: 660px;
}

.godo-f-story__inner {
  min-height: 660px;
  align-items: stretch;
  padding: 56px 0;
}

.godo-f-story__panel {
  min-height: 430px;
  width: min(100%, 720px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.godo-f-story h2 {
  min-height: 3.15em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.godo-f-story p {
  min-height: 7em;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.godo-f-story__actions {
  margin-top: auto;
  padding-top: 24px;
}

.dvtk-hero__content {
  min-height: 540px;
}

.dvtk-resource-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.dvtk-resource-tile {
  min-height: 156px;
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(8, 21, 47, 0.08);
  box-shadow: var(--dvtk-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.dvtk-resource-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--dvtk-shadow-lg);
}

.dvtk-resource-tile__media {
  min-height: 58px;
  display: flex;
  align-items: center;
}

.dvtk-resource-tile__media img {
  max-width: 100%;
  max-height: 46px;
  width: auto;
  object-fit: contain;
}

.dvtk-resource-tile__label {
  display: block;
  color: var(--dvtk-blue-950);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.footer-items--feedback {
  display: flex;
  flex-direction: column;
}

.dvtk-gos-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: stretch;
  gap: 0;
  margin-top: 18px;
  padding: 0;
  overflow: hidden;
}

.dvtk-gos-card__content {
  padding: 28px;
}

.dvtk-gos-card__media {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: rgba(255,255,255,0.06);
}

.dvtk-gos-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content,
.post-header,
.post-body,
.post-wrap,
.post-full-content,
.post-full {
  min-width: 0;
}

.dvtk-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 344px;
  gap: 32px;
  align-items: start;
}

.dvtk-post-aside__box {
  padding: 24px;
  border-radius: 30px;
}

.dvtk-post-links {
  gap: 14px;
}

.dvtk-post-linkcard {
  grid-template-columns: 86px minmax(0, 1fr) 20px;
  min-height: 104px;
  padding: 16px;
  border-radius: 24px;
}

.dvtk-post-linkcard__logo {
  width: 86px;
  height: 86px;
  border-radius: 24px;
}

.dvtk-post-linkcard__logo img {
  width: 64px;
  height: 42px;
  object-fit: contain;
}

.dvtk-post-linkcard__text strong {
  font-size: 18px;
}

.post-image,
.kg-image-card,
.kg-gallery-card,
.kg-width-wide,
.kg-width-full {
  margin-left: auto;
  margin-right: auto;
}

.post-image img,
.kg-image-card img,
.kg-gallery-card img,
.post-body img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 28px;
}

.post-image img,
.post-header .post-image img,
.post-image .simply-zoom {
  width: 100%;
  object-fit: cover;
}

.post-body .kg-file-card-container {
  border-radius: 24px;
  overflow: hidden;
}

.dvtk-mobile {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 110;
  pointer-events: none;
}

.dvtk-mobile__overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(3, 10, 25, 0.58);
  transition: opacity 0.2s ease;
}

.dvtk-mobile__panel {
  position: absolute;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  padding: 18px 16px 32px;
  border-radius: 0;
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.dvtk-menu-open .dvtk-mobile {
  pointer-events: auto;
}

.dvtk-menu-open .dvtk-mobile__overlay {
  opacity: 1;
}

.dvtk-menu-open .dvtk-mobile__panel {
  transform: translateX(0);
}

.dvtk-mobile__nav {
  gap: 12px;
}

.dvtk-mobile__group,
.dvtk-mobile__link.is-simple {
  border-radius: 22px;
}

.dvtk-mobile__submenu {
  display: none;
  max-height: none !important;
  overflow: visible;
  transition: none;
}

.dvtk-mobile__submenu[hidden] {
  display: none !important;
}

.dvtk-mobile__group.is-open .dvtk-mobile__submenu {
  display: block;
}

.dvtk-mobile__group.is-open .dvtk-mobile__toggle::after {
  content: '−';
}

.dvtk-mobile__submenu a {
  padding: 14px 18px;
}

@media (max-width: 1460px) {
  .dvtk-nav__link {
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 1280px) {
  .dvtk-nav__list {
    gap: 4px;
  }

  .dvtk-nav__link {
    padding: 0 10px;
    font-size: 12px;
  }
}

@media (max-width: 1180px) {
  .dvtk-topbar,
  .dvtk-nav {
    display: none !important;
  }

  .dvtk-burger {
    display: inline-flex !important;
  }

  .dvtk-mobile {
    display: block !important;
  }
}

@media (max-width: 1023px) {
  .dvtk-post-layout,
  .dvtk-footer-services__grid,
  .dvtk-footer__top {
    grid-template-columns: 1fr;
  }

  .dvtk-post-aside {
    position: static;
  }

  .dvtk-gos-card {
    grid-template-columns: 1fr;
  }

  .dvtk-gos-card__media {
    min-height: 220px;
  }
}

@media (max-width: 900px) {
  .dvtk-brand__spo-badge {
    min-width: 100px;
    height: 58px;
    padding: 0 12px;
    border-radius: 18px;
  }

  .dvtk-brand__spo {
    width: 78px;
  }

  .dvtk-brand__logo {
    width: 58px;
    height: 58px;
  }

  .godo-f-story,
  .godo-f-story__inner {
    min-height: 520px;
  }

  .godo-f-story__panel {
    min-height: 360px;
    width: 100%;
  }

  .dvtk-resource-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .dvtk-header__actions .dvtk-special-button,
  .dvtk-header__actions .js-dark-mode {
    display: none;
  }

  .dvtk-brand__spo-badge {
    min-width: 78px;
    height: 44px;
    padding: 0 10px;
    border-radius: 14px;
  }

  .dvtk-brand__spo {
    width: 58px;
  }

  .dvtk-brand__logo {
    width: 44px;
    height: 44px;
  }

  .dvtk-brand__title {
    font-size: 17px;
  }

  .godo-f-story,
  .godo-f-story__inner {
    min-height: 460px;
  }

  .godo-f-story__panel {
    min-height: 320px;
    padding: 24px;
  }

  .godo-f-story h2 {
    min-height: 0;
    font-size: 30px;
  }

  .godo-f-story p {
    min-height: 0;
    font-size: 16px;
  }

  .dvtk-resource-strip {
    grid-template-columns: 1fr;
  }

  .dvtk-mobile__panel {
    padding: 16px 14px 28px;
  }
}

@media (max-width: 768px) {
  .dvtk-brand__title {
    display: none !important;
  }
}
/* =========================
   DVTK FINAL FIX PACK 2026-03-21
========================= */

html.dark {
  --dvtk-text: #eef4ff;
  --dvtk-muted: #aab8d5;
  --dvtk-border: rgba(255, 255, 255, 0.14);
  --dvtk-sky-100: rgba(255, 255, 255, 0.08);
  --dvtk-sky-200: rgba(255, 255, 255, 0.12);
  --dvtk-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  --dvtk-shadow-lg: 0 26px 80px rgba(0, 0, 0, 0.36);
}

html.dark body {
  background: radial-gradient(circle at top left, rgba(62, 130, 255, 0.14), transparent 22%), linear-gradient(180deg, #07122a 0%, #091832 54%, #0c1e3d 100%);
  color: var(--dvtk-text);
}

html.dark .dvtk-header,
html.dark .dvtk-nav,
html.dark .footer-items,
html.dark .dvtk-footer__top,
html.dark .dvtk-route-card,
html.dark .dvtk-benefit-card,
html.dark .dvtk-news-card,
html.dark .dvtk-feature-card,
html.dark .dvtk-college-card,
html.dark .dvtk-college-point,
html.dark .dvtk-post-aside__box,
html.dark .dvtk-post-linkcard,
html.dark .kg-file-card-container,
html.dark .kg-bookmark-card,
html.dark .post-body table {
  background: rgba(12, 26, 56, 0.88) !important;
  color: var(--dvtk-text);
  border-color: rgba(255, 255, 255, 0.10) !important;
  box-shadow: var(--dvtk-shadow);
}

html.dark .dvtk-nav {
  background: rgba(9, 24, 50, 0.88);
}

html.dark .dvtk-nav__link,
html.dark .dvtk-brand,
html.dark .dvtk-brand__title,
html.dark .dvtk-feature-card__body h3,
html.dark .dvtk-news-card h3,
html.dark .dvtk-section__head h2,
html.dark .dvtk-college-card__lead h2,
html.dark .dvtk-college-point strong,
html.dark .dvtk-post-linkcard__text strong,
html.dark .dvtk-post-aside__head h2,
html.dark .footer-items h2,
html.dark .footer-items h3,
html.dark .dvtk-footer__columns h3 {
  color: #f4f8ff !important;
}

html.dark .dvtk-section__head p,
html.dark .dvtk-college-card__lead p,
html.dark .dvtk-college-point p,
html.dark .dvtk-feature-card__body p,
html.dark .dvtk-news-card p,
html.dark .dvtk-post-linkcard__text small,
html.dark .footer-items__head p,
html.dark .footer-items--feedback p,
html.dark .dvtk-footer__brand p,
html.dark .dvtk-footer__columns a,
html.dark .dvtk-footer__bottom,
html.dark .dvtk-footer__bottom a,
html.dark .dvtk-post-linkcard__arrow,
html.dark .post-body,
html.dark .post-body p,
html.dark .post-body li,
html.dark .post-body td,
html.dark .post-body th {
  color: var(--dvtk-muted) !important;
}

html.dark .dvtk-icon-button,
html.dark .dvtk-burger,
html.dark .dvtk-mobile__close {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f4f8ff;
}

html.dark .dvtk-topbar {
  background: linear-gradient(90deg, #030a18, #0d2b60);
}

html.dark .dvtk-text-link,
html.dark .dvtk-footer-tag,
html.dark .dvtk-footer__bottom-links a:hover,
html.dark .dvtk-footer__columns a:hover {
  color: #8eb7ff !important;
}

html.dark .dvtk-badge,
html.dark .godo-f-story__badge,
html.dark .godo-f-story__meta {
  background: rgba(255, 255, 255, 0.10);
}

html.dark .dvtk-section--college,
html.dark #news-home {
  background: transparent;
}

.dvtk-featured-story-wrap {
  padding: 14px 0 24px;
}

.godo-f-story {
  min-height: 720px;
  border-radius: 42px;
  background: linear-gradient(135deg, #08152f, #12336d 68%, #3b76d8);
}

.godo-f-story__overlay {
  background: linear-gradient(90deg, rgba(5, 13, 28, 0.78) 0%, rgba(5, 13, 28, 0.26) 58%, rgba(5, 13, 28, 0.08) 100%);
}

.godo-f-story__inner {
  min-height: 720px;
  padding: 62px 0;
  align-items: center;
}

.godo-f-story__panel {
  width: min(100%, 760px);
  min-height: 500px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(9, 25, 56, 0.90), rgba(14, 43, 100, 0.78));
  backdrop-filter: blur(18px);
}

.godo-f-story h2 {
  min-height: 0 !important;
  margin-top: 20px;
  display: block !important;
  overflow: visible !important;
  font-size: clamp(38px, 4vw, 66px);
  line-height: 0.98;
}

.godo-f-story__description {
  max-width: 60ch;
  margin-top: 18px;
}

.godo-f-story p {
  min-height: 0 !important;
  margin-top: 0;
  display: block !important;
  overflow: visible !important;
  font-size: 20px;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.86);
}

.godo-f-story__actions {
  margin-top: auto;
  padding-top: 26px;
}

.dvtk-college-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(8, 21, 47, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--dvtk-shadow);
}

.dvtk-college-card__lead h2 {
  margin-top: 16px;
  color: var(--dvtk-blue-950);
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.06;
}

.dvtk-college-card__lead p {
  margin-top: 16px;
  color: var(--dvtk-muted);
  font-size: 17px;
  line-height: 1.8;
}

.dvtk-college-card__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: stretch;
}

.dvtk-college-point {
  padding: 24px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f8fbff, #edf4ff);
  border: 1px solid rgba(8, 21, 47, 0.06);
}

.dvtk-college-point strong {
  display: block;
  font-size: 22px;
  color: var(--dvtk-blue-950);
}

.dvtk-college-point p {
  margin-top: 10px;
  color: var(--dvtk-muted);
  line-height: 1.65;
}

.dvtk-footer-services {
  padding: 24px 0 16px;
}

.dvtk-footer-services__grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.85fr);
  align-items: start;
}

.footer-items {
  overflow: hidden;
}

.dvtk-resource-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dvtk-resource-tile {
  min-height: 168px;
}

.dvtk-resource-tile__media {
  min-height: 68px;
  justify-content: center;
}

.dvtk-resource-tile__media img {
  max-height: 52px;
}

.dvtk-gos-widget {
  margin-top: 18px;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(135deg, #173a87, #264fa6 55%, #3e82ff);
  box-shadow: var(--dvtk-shadow-lg);
}

#js-show-iframe-wrapper {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0 !important;
  max-width: 100%;
  overflow: hidden;
  color: #fff;
}

#js-show-iframe-wrapper .pos-banner-fluid,
#js-show-iframe-wrapper .bf-22 {
  display: grid;
  grid-template-columns: var(--pos-banner-fluid-22__grid-template-columns);
  grid-template-rows: var(--pos-banner-fluid-22__grid-template-rows);
  width: 100%;
  max-width: var(--pos-banner-fluid-22__max-width);
  background: var(--pos-banner-fluid-22__background);
}

#js-show-iframe-wrapper .bf-22__decor {
  min-height: 220px;
  background: var(--pos-banner-fluid-22__bg-url) var(--pos-banner-fluid-22__bg-url-position) no-repeat;
  background-size: cover;
  background-color: rgba(255,255,255,0.08);
  position: relative;
}

#js-show-iframe-wrapper .bf-22__logo-wrap {
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--pos-banner-fluid-22__logo-wrap-padding);
  background: #fff;
  border-radius: 0 0 18px 0;
}

#js-show-iframe-wrapper .bf-22__logo {
  width: var(--pos-banner-fluid-22__logo-width);
}

#js-show-iframe-wrapper .bf-22__slogan {
  margin-top: 8px;
  color: #005ca9;
  font-size: var(--pos-banner-fluid-22__slogan-font-size);
  font-weight: 800;
}

#js-show-iframe-wrapper .bf-22__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pos-banner-fluid-22__content-padding);
}

#js-show-iframe-wrapper .bf-22__text {
  margin: var(--pos-banner-fluid-22__text-margin);
  font-size: var(--pos-banner-fluid-22__text-font-size);
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
}

#js-show-iframe-wrapper .bf-22__bottom-wrap {
  display: flex;
  align-items: center;
}

#js-show-iframe-wrapper .bf-22__btn-wrap {
  width: 100%;
  max-width: var(--pos-banner-fluid-22__button-wrap-max-width);
}

#js-show-iframe-wrapper .pos-banner-btn_2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  background: #fff;
  color: #12336d;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

#js-show-iframe-wrapper .pos-banner-btn_2:hover {
  background: #e6efff;
}

.dvtk-footer--dark {
  padding: 22px 0 44px;
}

.dvtk-footer__top--dark {
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr) minmax(0, 1.1fr);
  gap: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.dvtk-footer--dark .dvtk-footer__brand,
.dvtk-footer--dark .footer-items--tags,
.dvtk-footer--dark .dvtk-footer__columns {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, #071226, #0d1f42 88%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--dvtk-shadow-lg);
}

.dvtk-footer--dark .dvtk-footer__brand p,
.dvtk-footer--dark .dvtk-footer__columns a,
.dvtk-footer--dark .dvtk-footer__bottom,
.dvtk-footer--dark .dvtk-footer__bottom a {
  color: rgba(230, 239, 255, 0.78);
}

.dvtk-footer--dark .dvtk-footer__brand img {
  width: 92px;
}

.dvtk-footer--dark .dvtk-footer__socials a {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.footer-items--tags h3 {
  margin-bottom: 18px;
}

.dvtk-footer-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.dvtk-footer-tag-row:first-of-type {
  border-top: 0;
}

.dvtk-footer-tag {
  color: #fff;
  line-height: 1.5;
}

.dvtk-footer-tag-arrow {
  color: rgba(255,255,255,0.48);
  font-size: 22px;
  line-height: 1;
}

.dvtk-footer__bottom--dark {
  margin-top: 18px;
  padding: 0 6px;
}

.post-content {
  min-width: 0;
}

.post-header,
.post-body,
.godo-canvas,
.post-wrap,
.post-full-content,
.post-full {
  max-width: 100%;
}

.post-body img,
.kg-image-card img,
.post-image img,
.post-header .post-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.dvtk-post-layout {
  align-items: start;
}

.dvtk-post-linkcard {
  align-items: center;
}

.dvtk-post-linkcard__text {
  min-width: 0;
}

.dvtk-post-linkcard__text strong {
  display: block;
  line-height: 1.2;
}

.dvtk-mobile__header {
  display: grid;
  gap: 16px;
  margin-bottom: 6px;
  justify-items: right;
}

.dvtk-mobile__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.dvtk-mobile__brand-marks {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.dvtk-mobile__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
}

.dvtk-mobile__mark--spo {
  width: 122px;
  height: 62px;
  background: linear-gradient(135deg, #173a87, #264fa6);
}

.dvtk-mobile__mark--spo img {
  width: 92px;
  object-fit: contain;
}

.dvtk-mobile__mark--logo {
  width: 66px;
  height: 66px;
  background: rgba(255,255,255,0.95);
}

.dvtk-mobile__mark--logo img {
  width: 52px;
  object-fit: contain;
}

.dvtk-mobile__brand-text {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.28;
}

.dvtk-mobile__header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dvtk-mobile__header-actions .dvtk-mobile__action,
.dvtk-mobile__header-actions .dvtk-mobile__close {
  width: 46px;
  height: 46px;
}

.dvtk-mobile__close {
  margin-left: auto;
}

.dvtk-mobile__link {
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  text-align: left;
  line-height: 1.3;
}

.dvtk-mobile__link span {
  display: block;
  flex: 1 1 auto;
}

.dvtk-mobile__toggle::after {
  margin-left: auto;
  flex: 0 0 auto;
  line-height: 1;
}

@media (max-width: 1180px) {
  .dvtk-header__actions .dvtk-burger {
    display: inline-flex !important;
  }
}

@media (max-width: 1023px) {
  .dvtk-footer-services__grid,
  .dvtk-footer__top--dark,
  .dvtk-college-card {
    grid-template-columns: 1fr;
  }

  .dvtk-college-card__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dvtk-gos-widget {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .dvtk-brand__title {
    display: none !important;
  }

  .godo-f-story,
  .godo-f-story__inner {
    min-height: 620px;
  }

  .godo-f-story__panel {
    min-height: 0;
    padding: 28px;
  }

  .godo-f-story h2 {
    font-size: 40px;
  }

  .godo-f-story p {
    font-size: 17px;
  }
}

@media (max-width: 640px) {
  .dvtk-header__main {
    min-height: 82px;
    padding: 14px 0;
  }

  .dvtk-header__actions {
    gap: 8px;
  }

  .dvtk-header__actions .dvtk-special-button,
  .dvtk-header__actions .dvtk-search-trigger {
    display: inline-flex !important;
  }

  .dvtk-header__actions .js-dark-mode {
    display: none !important;
  }

  .dvtk-icon-button,
  .dvtk-burger {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .dvtk-brand__mark-card.dvtk-brand__spo-badge {
    width: 98px;
    height: 48px;
    padding: 0 10px;
    border-radius: 16px;
  }

  .dvtk-brand__spo {
    width: 72px;
  }

  .dvtk-brand__mark-card.dvtk-brand__logo-badge {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .dvtk-brand__logo {
    width: 44px;
    height: 44px;
  }

  .godo-f-story,
  .godo-f-story__inner {
    min-height: 560px;
  }

  .godo-f-story {
    border-radius: 32px;
  }

  .godo-f-story__panel {
    padding: 24px;
    border-radius: 28px;
  }

  .godo-f-story h2 {
    font-size: 32px;
  }

  .godo-f-story p {
    font-size: 16px;
    line-height: 1.6;
  }

  .dvtk-college-card,
  .footer-items,
  .dvtk-footer--dark .dvtk-footer__brand,
  .dvtk-footer--dark .footer-items--tags,
  .dvtk-footer--dark .dvtk-footer__columns {
    padding: 22px;
    border-radius: 24px;
  }

  .dvtk-college-card__grid,
  .dvtk-resource-strip,
  .dvtk-footer__columns {
    grid-template-columns: 1fr;
  }

  .dvtk-mobile__panel {
    padding: 16px 14px 28px;
  }

  .dvtk-mobile__brand {
    align-items: flex-start;
  }

  .dvtk-mobile__brand-text {
    display: none;
  }

  .dvtk-mobile__mark--spo {
    width: 108px;
    height: 54px;
  }

  .dvtk-mobile__mark--logo {
    width: 58px;
    height: 58px;
  }

  .dvtk-mobile__header-actions {
    gap: 8px;
  }

  #js-show-iframe-wrapper .bf-22__decor {
    min-height: 170px;
  }

  #js-show-iframe-wrapper .bf-22__text {
    font-size: 18px;
  }
}


/* =========================
   DVTK HOTFIX PACK 2026-03-21 v7
========================= */
.dvtk-featured-story-wrap {
  padding: 18px 0 26px !important;
}

.dvtk-featured-story-slider,
.dvtk-featured-story-slider .tns-outer,
.dvtk-featured-story-slider .tns-ovh,
.dvtk-featured-story-slider .tns-inner,
.dvtk-featured-story-slider .simply-slider,
.dvtk-featured-story-slider .tns-item {
  min-height: 620px;
}

.godo-f-story,
.godo-f-story__inner {
  min-height: 620px !important;
}

.godo-f-story {
  border-radius: 38px !important;
}

.godo-f-story__inner {
  align-items: center !important;
  padding: 48px 0 !important;
}

.godo-f-story__panel {
  width: min(100%, 620px) !important;
  min-height: 320px !important;
  padding: 30px !important;
  justify-content: flex-start !important;
}

.godo-f-story h2 {
  margin-top: 18px !important;
  min-height: 0 !important;
  font-size: clamp(34px, 3.5vw, 54px) !important;
  line-height: 1.02 !important;
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}

.godo-f-story__description,
.godo-f-story__actions,
.godo-f-story p {
  display: none !important;
}

.dvtk-footer-services__grid {
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.9fr) !important;
  align-items: stretch !important;
}

.footer-items--resources,
.footer-items--feedback,
.dvtk-footer--dark .dvtk-footer__brand,
.dvtk-footer--dark .footer-items--tags,
.dvtk-footer--dark .dvtk-footer__columns {
  height: 100%;
}

.footer-items--feedback {
  justify-content: space-between;
}

.dvtk-gos-card {
  flex: 1 1 auto;
  min-height: 100%;
  grid-template-columns: minmax(0, 1.1fr) 220px !important;
  align-items: stretch !important;
}

.dvtk-gos-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dvtk-gos-card__content h3 {
  margin: 18px 0 0;
  font-size: 30px;
  line-height: 1.05;
  color: #fff;
}

.dvtk-gos-card__text {
  margin-top: 14px;
  color: rgba(255,255,255,0.86) !important;
}

.dvtk-gos-card__media {
  min-height: 100%;
  overflow: hidden;
}

.dvtk-gos-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.dvtk-footer--dark .dvtk-footer__brand,
.dvtk-footer--dark .footer-items--tags,
.dvtk-footer--dark .dvtk-footer__columns {
  background: linear-gradient(180deg, #0d2450, #12346f 88%) !important;
  border-color: rgba(255,255,255,0.10) !important;
}

.dvtk-footer--dark .dvtk-footer__brand p,
.dvtk-footer--dark .dvtk-footer__columns a,
.dvtk-footer--dark .dvtk-footer__bottom,
.dvtk-footer--dark .dvtk-footer__bottom a,
.dvtk-footer-tag,
.dvtk-footer-tag-arrow {
  color: rgba(245, 249, 255, 0.92) !important;
}

.dvtk-footer--dark .dvtk-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 18px 12px 4px !important;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.dvtk-footer__bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

.dvtk-footer__bottom-links a {
  color: #fff !important;
}

.dvtk-post-layout {
  grid-template-columns: minmax(0, 1fr) !important;
}

.dvtk-post-aside {
  display: none !important;
}

.dvtk-a11y-toolbar {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: #f6f6f6;
  border-bottom: 2px solid #111;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.dvtk-a11y-toolbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
  padding: 10px 0;
}

.dvtk-a11y-toolbar__group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dvtk-a11y-toolbar__label {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

.dvtk-a11y-toolbar__btn,
.dvtk-a11y-toolbar__exit {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 10px;
  border: 2px solid #111;
  background: #fff;
  color: #111;
  font-weight: 800;
}

.dvtk-a11y-toolbar__btn.is-active,
.dvtk-a11y-toolbar__exit:hover {
  background: #111;
  color: #fff;
}

html.dvtk-a11y-active body {
  padding-top: 0 !important;
}

html.dvtk-a11y-active {
  --dvtk-a11y-bg: #ffffff;
  --dvtk-a11y-surface: #ffffff;
  --dvtk-a11y-text: #111111;
  --dvtk-a11y-link: #0033aa;
}

html.dvtk-a11y-theme-black {
  --dvtk-a11y-bg: #000000;
  --dvtk-a11y-surface: #000000;
  --dvtk-a11y-text: #ffffff;
  --dvtk-a11y-link: #ffff00;
}

html.dvtk-a11y-theme-blue {
  --dvtk-a11y-bg: #9dd7ff;
  --dvtk-a11y-surface: #9dd7ff;
  --dvtk-a11y-text: #003366;
  --dvtk-a11y-link: #003366;
}

html.dvtk-a11y-font-sm { font-size: 16px; }
html.dvtk-a11y-font-md { font-size: 18px; }
html.dvtk-a11y-font-lg { font-size: 20px; }

html.dvtk-a11y-active body,
html.dvtk-a11y-active .simply-main,
html.dvtk-a11y-active .dvtk-header,
html.dvtk-a11y-active .dvtk-nav,
html.dvtk-a11y-active .godo-f-story,
html.dvtk-a11y-active .godo-f-story__panel,
html.dvtk-a11y-active .dvtk-route-card,
html.dvtk-a11y-active .dvtk-feature-card,
html.dvtk-a11y-active .dvtk-news-card,
html.dvtk-a11y-active .footer-items,
html.dvtk-a11y-active .dvtk-footer--dark .dvtk-footer__brand,
html.dvtk-a11y-active .dvtk-footer--dark .footer-items--tags,
html.dvtk-a11y-active .dvtk-footer--dark .dvtk-footer__columns,
html.dvtk-a11y-active .post-content,
html.dvtk-a11y-active .post-header,
html.dvtk-a11y-active .post-body,
html.dvtk-a11y-active .kg-file-card-container,
html.dvtk-a11y-active .kg-bookmark-card {
  background: var(--dvtk-a11y-surface) !important;
  color: var(--dvtk-a11y-text) !important;
  box-shadow: none !important;
  border-color: currentColor !important;
}

html.dvtk-a11y-active .godo-f-story__overlay,
html.dvtk-a11y-active .godo-f-story__bg,
html.dvtk-a11y-active .dvtk-topbar {
  opacity: 0.18;
}

html.dvtk-a11y-active h1,
html.dvtk-a11y-active h2,
html.dvtk-a11y-active h3,
html.dvtk-a11y-active strong,
html.dvtk-a11y-active .dvtk-brand__title,
html.dvtk-a11y-active .dvtk-nav__link,
html.dvtk-a11y-active .footer-items h2,
html.dvtk-a11y-active .footer-items h3,
html.dvtk-a11y-active .dvtk-footer__columns h3 {
  color: var(--dvtk-a11y-text) !important;
}

html.dvtk-a11y-active a,
html.dvtk-a11y-active .dvtk-footer__bottom a,
html.dvtk-a11y-active .dvtk-footer__columns a,
html.dvtk-a11y-active .dvtk-footer-tag {
  color: var(--dvtk-a11y-link) !important;
  text-decoration: underline;
}

html.dvtk-a11y-active .dvtk-icon-button,
html.dvtk-a11y-active .dvtk-burger,
html.dvtk-a11y-active .dvtk-mobile__close,
html.dvtk-a11y-active .dvtk-button,
html.dvtk-a11y-active .dvtk-post-linkcard,
html.dvtk-a11y-active .dvtk-resource-tile {
  background: transparent !important;
  color: var(--dvtk-a11y-text) !important;
  border: 2px solid currentColor !important;
}

html.dvtk-a11y-images-off img,
html.dvtk-a11y-images-off svg:not(.dvtk-special-button__icon):not(.icon) {
  opacity: 0 !important;
}

.dvtk-cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 1300;
}

.dvtk-cookie-banner__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(8, 21, 47, 0.96);
  color: #fff;
  box-shadow: 0 18px 48px rgba(8, 21, 47, 0.28);
}

.dvtk-cookie-banner__text strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.dvtk-cookie-banner__text p + p {
  margin-top: 10px;
}

.dvtk-cookie-banner__accept {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .dvtk-footer-services__grid,
  .dvtk-footer__top--dark,
  .dvtk-featured-story-slider,
  .dvtk-featured-story-slider .tns-outer,
  .dvtk-featured-story-slider .tns-ovh,
  .dvtk-featured-story-slider .tns-inner,
  .dvtk-featured-story-slider .simply-slider,
  .dvtk-featured-story-slider .tns-item {
    min-height: auto;
  }

  .dvtk-footer-services__grid {
    grid-template-columns: 1fr !important;
  }

  .dvtk-gos-card {
    grid-template-columns: 1fr !important;
  }

  .dvtk-gos-card__media {
    min-height: 220px;
  }

  .dvtk-cookie-banner {
    bottom: 12px;
  }

  .dvtk-cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
  }
}

@media (max-width: 767px) {
  .godo-f-story,
  .godo-f-story__inner {
    min-height: 480px !important;
  }

  .godo-f-story__panel {
    width: 100% !important;
    min-height: 250px !important;
    padding: 22px !important;
  }

  .godo-f-story h2 {
    font-size: 30px !important;
  }

  .dvtk-a11y-toolbar__inner {
    gap: 8px;
    padding: 8px 0;
  }

  .dvtk-a11y-toolbar__group {
    width: 100%;
    flex-wrap: wrap;
  }
}


/* =========================
   DVTK HOTFIX PACK 2026-03-21 v8
========================= */
body {
  background: #eef3fa;
}

.dvtk-footer-services,
.dvtk-footer--dark {
  background: linear-gradient(180deg, #061733 0%, #08224a 42%, #0a2a58 100%) !important;
}

.dvtk-footer-services {
  padding: 42px 0 20px !important;
}

.dvtk-footer--dark {
  padding: 0 0 34px !important;
}

.dvtk-footer-services__grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr) !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.footer-items--resources,
.footer-items--feedback,
.dvtk-footer--dark .dvtk-footer__brand,
.dvtk-footer--dark .footer-items--tags,
.dvtk-footer--dark .dvtk-footer__columns {
  background: linear-gradient(180deg, rgba(14, 38, 83, 0.98), rgba(10, 31, 68, 0.98)) !important;
  border: 1px solid rgba(153, 190, 255, 0.18) !important;
  box-shadow: 0 24px 60px rgba(4, 14, 34, 0.28) !important;
}

.footer-items--resources,
.footer-items--feedback {
  min-height: 610px;
}

.footer-items__head h2,
.footer-items__head p,
.dvtk-footer--dark .dvtk-footer__brand p,
.dvtk-footer--dark .dvtk-footer__columns a,
.dvtk-footer-tag,
.dvtk-footer-tag-arrow,
.dvtk-footer--dark .dvtk-footer__columns h3,
.dvtk-footer--dark .footer-items--tags h3,
.dvtk-footer--dark .dvtk-footer__brand,
.dvtk-footer__bottom,
.dvtk-footer__bottom a,
.dvtk-footer__bottom-note {
  color: #f4f8ff !important;
}

.dvtk-footer-services .dvtk-badge,
.dvtk-gos-card__badge,
.dvtk-footer__columns h3,
.footer-items--tags h3 {
  color: #ffffff !important;
}

.footer-items__head p,
.dvtk-footer--dark .dvtk-footer__brand p {
  opacity: 0.88;
}

.dvtk-gos-card {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 24px;
  min-height: 430px;
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(145deg, #15366f 0%, #2f6be7 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  position: relative;
}

.dvtk-gos-card::before,
.dvtk-gos-card::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.dvtk-gos-card::before {
  width: 280px;
  height: 280px;
  right: -90px;
  top: -110px;
}

.dvtk-gos-card::after {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: -120px;
}

.dvtk-gos-card > * {
  position: relative;
  z-index: 1;
}

.dvtk-gos-card__badge-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.dvtk-gos-card__caption {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.dvtk-gos-card h3 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
  color: #fff;
}

.dvtk-gos-card__text {
  margin: 0;
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9) !important;
}

.dvtk-gos-card__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dvtk-gos-card__list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.dvtk-gos-card .dvtk-button {
  align-self: flex-start;
  min-width: 220px;
  box-shadow: 0 14px 28px rgba(4, 14, 34, 0.2);
}

.dvtk-footer__top--dark {
  gap: 16px !important;
  align-items: stretch !important;
}

.dvtk-footer__bottom--dark {
  margin-top: 18px !important;
  padding: 18px 22px !important;
  border-radius: 22px;
  background: rgba(7, 21, 45, 0.82);
  border: 1px solid rgba(153, 190, 255, 0.12);
}

.dvtk-footer__bottom-note {
  font-weight: 700;
  color: #ffffff !important;
}

.dvtk-footer__bottom-note a,
.dvtk-footer__bottom-links a {
  color: #ffffff !important;
  opacity: 0.96;
}

.dvtk-footer__bottom-links a:hover,
.dvtk-footer__bottom-note a:hover {
  opacity: 1;
  text-decoration: underline;
}

.dvtk-college-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 26px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #ffffff, #f5f9ff 55%, #edf4ff);
  border: 1px solid rgba(16, 42, 85, 0.08);
  box-shadow: 0 24px 60px rgba(16, 42, 85, 0.08);
}

.dvtk-college-showcase__hero {
  padding: 10px 6px 10px 2px;
}

.dvtk-college-showcase__hero h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  color: #08152f;
}

.dvtk-college-showcase__hero p {
  margin-top: 18px;
  max-width: 58ch;
  font-size: 18px;
  line-height: 1.68;
  color: #50637d;
}

.dvtk-college-showcase__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.dvtk-college-showcase__chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eaf2ff;
  color: #1c4cc2;
  font-weight: 700;
  font-size: 14px;
}

.dvtk-college-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dvtk-college-showcase__card {
  min-height: 220px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0e2a5f, #143b83);
  color: #fff;
  box-shadow: 0 18px 40px rgba(8, 21, 47, 0.16);
}

.dvtk-college-showcase__card--accent {
  background: linear-gradient(135deg, #08152f, #1747a0 85%);
}

.dvtk-college-showcase__kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.dvtk-college-showcase__card h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.12;
  color: #fff;
}

.dvtk-college-showcase__card p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.dvtk-featured-story-wrap {
  padding: 14px 0 28px !important;
}

.dvtk-featured-story-slider,
.dvtk-featured-story-slider .tns-outer,
.dvtk-featured-story-slider .tns-ovh,
.dvtk-featured-story-slider .tns-inner,
.dvtk-featured-story-slider .simply-slider,
.dvtk-featured-story-slider .tns-item,
.godo-f-story,
.godo-f-story__inner {
  min-height: 560px !important;
  height: 560px !important;
}

.godo-f-story__panel {
  width: min(100%, 560px) !important;
  min-height: 290px !important;
  padding: 26px !important;
}

.godo-f-story__meta {
  margin-top: 14px;
  font-size: 16px;
}

.godo-f-story h2 {
  margin-top: 16px !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  line-height: 1.04 !important;
}

.godo-f-story__description,
.godo-f-story p {
  display: none !important;
}

.godo-f-story__actions {
  display: flex !important;
  margin-top: 24px;
}

.godo-f-story__button {
  min-width: 170px;
}

.dvtk-slider-btn {
  backdrop-filter: blur(10px);
}

.dvtk-scrolltop {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 1250;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #08152f, #1f57c4);
  color: #fff;
  box-shadow: 0 18px 38px rgba(8, 21, 47, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.dvtk-scrolltop .icon {
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
}

.dvtk-scrolltop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

html.dark .dvtk-college-showcase {
  background: linear-gradient(135deg, #0c1d3b, #102a58 55%, #14397a);
  border-color: rgba(153, 190, 255, 0.16);
}

html.dark .dvtk-college-showcase__hero h2,
html.dark .dvtk-college-showcase__hero p {
  color: #f4f8ff;
}

html.dark .dvtk-college-showcase__chips span {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

html.dark .dvtk-college-showcase__card {
  background: linear-gradient(180deg, #08152f, #112f67);
}

html.dvtk-a11y-active .dvtk-a11y-toolbar {
  background: var(--dvtk-a11y-surface);
}

html.dvtk-a11y-active .dvtk-a11y-toolbar__label,
html.dvtk-a11y-active .dvtk-a11y-toolbar__btn,
html.dvtk-a11y-active .dvtk-a11y-toolbar__exit {
  color: var(--dvtk-a11y-text) !important;
  border-color: var(--dvtk-a11y-text) !important;
}

html.dvtk-a11y-active .dvtk-a11y-toolbar__btn.is-active,
html.dvtk-a11y-active .dvtk-a11y-toolbar__exit:hover {
  background: var(--dvtk-a11y-text) !important;
  color: var(--dvtk-a11y-surface) !important;
}

@media (max-width: 1180px) {
  .dvtk-footer-services__grid,
  .dvtk-college-showcase {
    grid-template-columns: 1fr !important;
  }

  .footer-items--resources,
  .footer-items--feedback {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .dvtk-college-showcase {
    padding: 22px;
    border-radius: 26px;
  }

  .dvtk-college-showcase__grid {
    grid-template-columns: 1fr;
  }

  .dvtk-college-showcase__hero h2 {
    font-size: 32px;
  }

  .dvtk-featured-story-slider,
  .dvtk-featured-story-slider .tns-outer,
  .dvtk-featured-story-slider .tns-ovh,
  .dvtk-featured-story-slider .tns-inner,
  .dvtk-featured-story-slider .simply-slider,
  .dvtk-featured-story-slider .tns-item,
  .godo-f-story,
  .godo-f-story__inner {
    min-height: 460px !important;
    height: 460px !important;
  }

  .godo-f-story__panel {
    width: 100% !important;
    min-height: 240px !important;
    padding: 22px !important;
  }

  .godo-f-story h2 {
    font-size: 30px !important;
  }

  .dvtk-gos-card {
    min-height: 360px;
    padding: 22px;
  }

  .dvtk-scrolltop {
    right: 14px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* =========================
   DVTK HOTFIX PACK 2026-03-21 v9
========================= */
.dvtk-footer-services--light {
  background: transparent !important;
  padding: 44px 0 18px !important;
}

.dvtk-footer-services--light .dvtk-footer-services__grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr) !important;
  gap: 26px !important;
  align-items: stretch !important;
}

.dvtk-footer-services--light .footer-panel--light {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%) !important;
  border: 1px solid rgba(16, 42, 85, 0.08) !important;
  box-shadow: 0 24px 60px rgba(16, 42, 85, 0.08) !important;
  min-height: 100% !important;
}

.dvtk-footer-services--light .footer-items__head h2,
.dvtk-footer-services--light .footer-items__head p,
.dvtk-footer-services--light .dvtk-badge {
  color: #0d234a !important;
}

.dvtk-footer-services--light .footer-items__head p {
  opacity: 1;
  color: #617392 !important;
}

.dvtk-resource-strip--expanded {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 18px;
}

.dvtk-resource-strip--expanded .dvtk-resource-tile {
  min-height: 176px;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff !important;
  border: 1px solid rgba(16, 42, 85, 0.08) !important;
  box-shadow: 0 16px 34px rgba(16, 42, 85, 0.06) !important;
}

.dvtk-resource-strip--expanded .dvtk-resource-tile__media {
  width: 100%;
  max-width: 160px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dvtk-resource-strip--expanded .dvtk-resource-tile__media img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

.dvtk-resource-strip--expanded .dvtk-resource-tile__label {
  margin-top: 12px;
  color: #0d234a !important;
  line-height: 1.3;
}

.footer-panel--light-gos {
  display: flex;
  flex-direction: column;
}

.footer-panel--light-gos #js-show-iframe-wrapper {
  margin-top: 18px;
  border-radius: 28px !important;
  overflow: hidden;
  min-height: 100%;
}

.footer-social-premium {
  padding: 18px 0 14px;
  background: #ffffff;
}

.footer-social-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.footer-social-header h3 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a99b5;
}

.social-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33, 63, 120, 0.35), transparent);
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(16, 42, 85, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(16, 42, 85, 0.22);
}

.dvtk-footer--dark {
  background: #05070b !important;
  padding: 0 0 32px !important;
}

.dvtk-footer__top--dark {
  gap: 18px !important;
  align-items: stretch !important;
}

.footer-card-dark,
.dvtk-footer--dark .footer-items--tags,
.dvtk-footer--dark .dvtk-footer__columns,
.dvtk-footer--dark .dvtk-footer__brand {
  background: linear-gradient(180deg, #0b1630 0%, #10224a 100%) !important;
  border: 1px solid rgba(125, 160, 220, 0.16) !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24) !important;
}

.dvtk-footer--dark .dvtk-footer__brand,
.dvtk-footer--dark .footer-items--tags,
.dvtk-footer--dark .dvtk-footer__columns {
  border-radius: 28px !important;
  padding: 28px !important;
}

.dvtk-footer--dark .dvtk-footer__brand img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
}

.dvtk-footer--dark .dvtk-footer__brand p,
.dvtk-footer--dark .dvtk-footer__columns a,
.dvtk-footer--dark .dvtk-footer__columns h3,
.dvtk-footer--dark .footer-items--tags h3,
.dvtk-footer--dark .dvtk-footer-tag,
.dvtk-footer--dark .dvtk-footer-tag-arrow {
  color: #f7faff !important;
}

.dvtk-footer--dark .dvtk-footer__brand p,
.dvtk-footer--dark .dvtk-footer__columns a,
.dvtk-footer--dark .dvtk-footer-tag {
  opacity: 0.92;
}

.dvtk-footer--dark .dvtk-footer__columns a:hover,
.dvtk-footer--dark .dvtk-footer-tag:hover {
  opacity: 1;
  color: #ffffff !important;
}

.dvtk-footer__bottom--dark {
  margin-top: 20px !important;
  padding: 18px 0 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.dvtk-footer__bottom-note,
.dvtk-footer__bottom-note a,
.dvtk-footer__bottom-links a {
  color: #ffffff !important;
  opacity: 1 !important;
}

.dvtk-footer__bottom-links {
  gap: 18px !important;
}

.dvtk-college-showcase--why {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: 26px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(16, 42, 85, 0.08);
  box-shadow: 0 24px 60px rgba(16, 42, 85, 0.08);
}

.dvtk-college-showcase--why .dvtk-college-showcase__hero h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.05;
}

.dvtk-college-showcase--why .dvtk-college-showcase__hero p {
  max-width: 60ch;
}

.dvtk-college-showcase--why .dvtk-college-showcase__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dvtk-college-showcase--why .dvtk-college-showcase__card {
  min-height: 210px;
  background: linear-gradient(180deg, #f4f8ff 0%, #eaf1ff 100%);
  border: 1px solid rgba(39, 84, 168, 0.1);
  box-shadow: 0 14px 34px rgba(16, 42, 85, 0.08);
}

.dvtk-college-showcase--why .dvtk-college-showcase__card--accent {
  background: linear-gradient(135deg, #0c1f45 0%, #1748a4 100%);
}

.dvtk-college-showcase--why .dvtk-college-showcase__kicker {
  color: #50637d;
}

.dvtk-college-showcase--why .dvtk-college-showcase__card h3 {
  font-size: 24px;
  line-height: 1.16;
  color: #0d234a;
}

.dvtk-college-showcase--why .dvtk-college-showcase__card p {
  color: #4e5f79;
}

.dvtk-college-showcase--why .dvtk-college-showcase__card--accent .dvtk-college-showcase__kicker,
.dvtk-college-showcase--why .dvtk-college-showcase__card--accent h3,
.dvtk-college-showcase--why .dvtk-college-showcase__card--accent p {
  color: #fff;
}

.dvtk-featured-story-wrap {
  padding: 10px 0 26px !important;
}

.dvtk-featured-story-slider,
.dvtk-featured-story-slider .tns-outer,
.dvtk-featured-story-slider .tns-ovh,
.dvtk-featured-story-slider .tns-inner,
.dvtk-featured-story-slider .simply-slider,
.dvtk-featured-story-slider .tns-item,
.godo-f-story,
.godo-f-story__inner {
  min-height: 500px !important;
  height: 500px !important;
}

.godo-f-story__panel {
  width: min(100%, 480px) !important;
  min-height: 270px !important;
  padding: 22px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 14px !important;
}

.godo-f-story__badge,
.godo-f-story__meta {
  font-size: 13px !important;
}

.godo-f-story h2 {
  margin: 0 !important;
  font-size: clamp(22px, 2.4vw, 30px) !important;
  line-height: 1.08 !important;
  max-width: 11ch;
  min-height: 3.2em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.godo-f-story__actions {
  margin-top: auto !important;
}

.godo-f-story__button {
  min-width: 150px !important;
}

@media (max-width: 1180px) {
  .dvtk-footer-services--light .dvtk-footer-services__grid,
  .dvtk-college-showcase--why {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .dvtk-resource-strip--expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .dvtk-resource-strip--expanded {
    grid-template-columns: 1fr !important;
  }

  .footer-social-links {
    gap: 12px;
  }

  .social-btn {
    width: 52px;
    height: 52px;
  }

  .dvtk-college-showcase--why {
    padding: 22px;
    border-radius: 26px;
  }

  .dvtk-college-showcase--why .dvtk-college-showcase__grid {
    grid-template-columns: 1fr;
  }

  .dvtk-featured-story-slider,
  .dvtk-featured-story-slider .tns-outer,
  .dvtk-featured-story-slider .tns-ovh,
  .dvtk-featured-story-slider .tns-inner,
  .dvtk-featured-story-slider .simply-slider,
  .dvtk-featured-story-slider .tns-item,
  .godo-f-story,
  .godo-f-story__inner {
    min-height: 420px !important;
    height: 420px !important;
  }

  .godo-f-story__panel {
    width: 100% !important;
    min-height: 220px !important;
    padding: 18px !important;
  }

  .godo-f-story h2 {
    max-width: none;
    min-height: 0;
    font-size: 24px !important;
  }
}


/* ===== DVTK FIX10 ===== */
.dvtk-resources-section {
  padding: 48px 0 24px !important;
}

.dvtk-footer-services__single {
  display: block;
}

.dvtk-footer-services__single .footer-panel--light {
  min-height: auto !important;
}

.footer-items__head--center {
  text-align: center;
}

.footer-items__head--center p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.dvtk-nav {
  padding: 10px 0 !important;
}

.dvtk-nav__list {
  justify-content: center !important;
  gap: 8px 10px !important;
  flex-wrap: wrap !important;
}

.dvtk-nav__item {
  display: flex;
  align-items: stretch;
}

.dvtk-nav__link {
  padding: 14px 12px !important;
  font-size: 15px !important;
  line-height: 1.15 !important;
  border-radius: 14px !important;
  text-align: center;
}

.dvtk-featured-story-wrap {
  padding: 12px 0 34px !important;
}

.dvtk-featured-story-slider,
.dvtk-featured-story-slider .tns-outer,
.dvtk-featured-story-slider .tns-ovh,
.dvtk-featured-story-slider .tns-inner,
.dvtk-featured-story-slider .simply-slider,
.dvtk-featured-story-slider .tns-item,
.godo-f-story,
.godo-f-story__inner {
  min-height: 512px !important;
  height: 512px !important;
}

.godo-f-story__panel {
  width: 420px !important;
  max-width: calc(100% - 24px) !important;
  min-height: 348px !important;
  height: 348px !important;
  padding: 22px 22px 20px !important;
  gap: 14px !important;
  justify-content: flex-start !important;
}

.godo-f-story__badge,
.godo-f-story__meta {
  display: inline-flex !important;
  align-items: center;
  min-height: 34px;
  padding: 0 16px !important;
  font-size: 12px !important;
  letter-spacing: 0.04em;
}

.godo-f-story h2 {
  font-size: clamp(16px, 1.65vw, 21px) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.01em;
  max-width: 10ch !important;
  min-height: 7.1em !important;
  max-height: 7.1em !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 6 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-wrap: balance;
}

.godo-f-story__actions {
  margin-top: auto !important;
  width: 100%;
}

.godo-f-story__button {
  min-width: 152px !important;
  padding: 14px 24px !important;
  border-radius: 18px !important;
}

.dvtk-footer--dark {
  padding: 46px 0 32px !important;
  background: linear-gradient(180deg, #03050a 0%, #07111f 100%) !important;
}

.dvtk-footer__socialbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.dvtk-footer__socialtitle {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dvtk-footer__sociallinks {
  display: flex;
  gap: 16px;
}

.dvtk-footer__gos {
  margin-top: 22px;
  border-radius: 32px !important;
  padding: 26px !important;
}

.dvtk-footer__gos-head {
  margin-bottom: 18px;
}

.dvtk-footer__gos-head h3 {
  margin: 10px 0 8px;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.04;
}

.dvtk-footer__gos-head p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  max-width: 760px;
  font-size: 17px;
  line-height: 1.55;
}

.dvtk-footer__gos #js-show-iframe-wrapper {
  border-radius: 0 !important;
  overflow: hidden;
  background: transparent !important;
}

.dvtk-footer__gos .bf-22 {
  max-width: 100% !important;
}

.dvtk-footer__gos .bf-22__text {
  font-size: clamp(26px, 2.8vw, 48px) !important;
  line-height: 1.15 !important;
}

.dvtk-footer__gos .pos-banner-btn_2 {
  border-radius: 14px !important;
}

.dvtk-footer__bottom--dark {
  margin-top: 26px !important;
  padding-top: 18px !important;
}

.dvtk-footer__bottom-note,
.dvtk-footer__bottom-links a {
  font-size: 15px !important;
}

.dvtk-cookie-banner {
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 1400;
}

.dvtk-cookie-banner .dvtk-shell {
  max-width: 980px;
}

.dvtk-cookie-banner__inner {
  align-items: flex-start !important;
  gap: 18px !important;
  padding: 18px 20px !important;
  border-radius: 24px !important;
  background: rgba(7, 17, 31, 0.96) !important;
  border: 1px solid rgba(110, 150, 230, 0.18);
  box-shadow: 0 20px 48px rgba(7, 17, 31, 0.34) !important;
}

.dvtk-cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
}

.dvtk-cookie-banner__text strong {
  font-size: 18px !important;
}

.dvtk-cookie-banner__accept {
  min-width: 152px;
}

@media (max-width: 1180px) {
  .dvtk-nav__list {
    gap: 6px 8px !important;
  }

  .dvtk-nav__link {
    font-size: 14px !important;
    padding: 12px 10px !important;
  }

  .dvtk-featured-story-slider,
  .dvtk-featured-story-slider .tns-outer,
  .dvtk-featured-story-slider .tns-ovh,
  .dvtk-featured-story-slider .tns-inner,
  .dvtk-featured-story-slider .simply-slider,
  .dvtk-featured-story-slider .tns-item,
  .godo-f-story,
  .godo-f-story__inner {
    min-height: 470px !important;
    height: 470px !important;
  }

  .godo-f-story__panel {
    width: 390px !important;
    min-height: 320px !important;
    height: 320px !important;
  }

  .dvtk-footer__top--dark {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 900px) {
  .dvtk-resource-strip--expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .dvtk-footer__gos {
    padding: 18px !important;
  }
}

@media (max-width: 767px) {
  .dvtk-nav__list {
    justify-content: flex-start !important;
  }

  .dvtk-featured-story-slider,
  .dvtk-featured-story-slider .tns-outer,
  .dvtk-featured-story-slider .tns-ovh,
  .dvtk-featured-story-slider .tns-inner,
  .dvtk-featured-story-slider .simply-slider,
  .dvtk-featured-story-slider .tns-item,
  .godo-f-story,
  .godo-f-story__inner {
    min-height: 420px !important;
    height: 420px !important;
  }

  .godo-f-story__panel {
    width: calc(100% - 18px) !important;
    min-height: 260px !important;
    height: 260px !important;
    padding: 16px !important;
  }

  .godo-f-story h2 {
    max-width: 11ch !important;
    min-height: 5.8em !important;
    max-height: 5.8em !important;
    font-size: 15px !important;
    -webkit-line-clamp: 5 !important;
  }

  .dvtk-resource-strip--expanded {
    grid-template-columns: 1fr !important;
  }

  .dvtk-footer__sociallinks {
    gap: 12px;
  }

  .dvtk-footer__gos-head h3 {
    font-size: 24px;
  }

  .dvtk-footer__gos-head p {
    font-size: 15px;
  }

  .dvtk-cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .dvtk-cookie-banner .dvtk-shell {
    max-width: none;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .dvtk-cookie-banner__inner {
    padding: 14px !important;
    border-radius: 20px !important;
    max-height: min(62vh, 480px);
    overflow: auto;
  }

  .dvtk-cookie-banner__text {
    font-size: 13px;
  }

  .dvtk-cookie-banner__text strong {
    font-size: 16px !important;
  }

  .dvtk-cookie-banner__accept {
    width: 100%;
  }
}

/* ===== DVTK FINAL FIX11 ===== */
.dvtk-nav {
  padding: 12px 0 !important;
}

.dvtk-nav__list {
  justify-content: center !important;
  align-items: center !important;
  gap: 4px !important;
  flex-wrap: nowrap !important;
}

.dvtk-nav__item {
  flex: 0 0 auto;
}

.dvtk-nav__link {
  padding: 14px 10px !important;
  font-size: 15px !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
  border-radius: 14px !important;
}

.dvtk-featured-story-wrap {
  padding: 10px 0 34px !important;
}

.dvtk-featured-story-slider,
.dvtk-featured-story-slider .tns-outer,
.dvtk-featured-story-slider .tns-ovh,
.dvtk-featured-story-slider .tns-inner,
.dvtk-featured-story-slider .simply-slider,
.dvtk-featured-story-slider .tns-item,
.godo-f-story,
.godo-f-story__inner {
  min-height: 520px !important;
  height: 520px !important;
}

.godo-f-story__inner {
  display: flex !important;
  align-items: center !important;
}

.godo-f-story__panel {
  width: min(100%, 430px) !important;
  max-width: min(100%, 430px) !important;
  min-height: 368px !important;
  height: 368px !important;
  padding: 28px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  border-radius: 34px !important;
}

.godo-f-story__badge,
.godo-f-story__meta {
  min-height: 40px !important;
  padding: 0 18px !important;
  font-size: 13px !important;
}

.godo-f-story h2 {
  width: 100% !important;
  max-width: 290px !important;
  margin: 0 !important;
  font-size: clamp(16px, 1.45vw, 20px) !important;
  line-height: 1.06 !important;
  letter-spacing: -0.02em !important;
  min-height: 8.4em !important;
  max-height: 8.4em !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 6 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-wrap: pretty !important;
}

.godo-f-story h2 a {
  color: inherit !important;
}

.godo-f-story__actions {
  margin-top: auto !important;
  width: 100% !important;
  padding-top: 6px !important;
}

.godo-f-story__button {
  min-width: 156px !important;
  padding: 15px 24px !important;
  border-radius: 18px !important;
}

.dvtk-slider-btn {
  width: 54px !important;
  height: 54px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.36) !important;
  background: rgba(255,255,255,0.16) !important;
  backdrop-filter: blur(10px) !important;
  box-shadow: none !important;
}

.dvtk-why-dvtk {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(13, 35, 74, 0.08);
  box-shadow: 0 24px 60px rgba(16, 42, 85, 0.08);
}

.dvtk-why-dvtk__hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dvtk-why-dvtk__hero h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.05;
  color: #0d234a;
}

.dvtk-why-dvtk__hero p {
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
  color: #5d6d88;
  max-width: 62ch;
}

.dvtk-why-dvtk__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dvtk-why-dvtk__chips span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #eef4ff;
  color: #1748a4;
  font-weight: 700;
  font-size: 14px;
}

.dvtk-why-dvtk__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.dvtk-button--ghost {
  background: transparent !important;
  color: #1748a4 !important;
  border: 1px solid rgba(23, 72, 164, 0.16) !important;
  box-shadow: none !important;
}

.dvtk-why-dvtk__accordion {
  display: grid;
  gap: 14px;
}

.dvtk-why-dvtk__item {
  border: 1px solid rgba(13, 35, 74, 0.08);
  border-radius: 24px;
  background: #f8fbff;
  box-shadow: 0 14px 34px rgba(16, 42, 85, 0.06);
  overflow: hidden;
}

.dvtk-why-dvtk__item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  position: relative;
}

.dvtk-why-dvtk__item summary::-webkit-details-marker {
  display: none;
}

.dvtk-why-dvtk__item summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(23, 72, 164, 0.08);
  color: #1748a4;
  font-size: 24px;
  font-weight: 400;
}

.dvtk-why-dvtk__item[open] summary::after {
  content: '–';
}

.dvtk-why-dvtk__kicker {
  color: #1748a4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dvtk-why-dvtk__title {
  display: block;
  color: #0d234a;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
  max-width: calc(100% - 56px);
}

.dvtk-why-dvtk__content {
  padding: 0 24px 22px;
  color: #5d6d88;
  font-size: 16px;
  line-height: 1.65;
}

.dvtk-why-dvtk__content p {
  margin: 0;
}

.dvtk-resources-section {
  padding: 54px 0 26px !important;
}

.dvtk-resource-strip--expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
  margin-top: 26px !important;
}

.dvtk-resource-strip--expanded .dvtk-resource-tile {
  min-height: 198px !important;
  padding: 22px 18px !important;
  border-radius: 26px !important;
}

.dvtk-resource-strip--expanded .dvtk-resource-tile__media {
  max-width: 220px !important;
  height: 96px !important;
}

.dvtk-resource-strip--expanded .dvtk-resource-tile__media img {
  max-width: 92% !important;
  max-height: 86px !important;
  width: auto !important;
}

.dvtk-resource-strip--expanded .dvtk-resource-tile__label {
  margin-top: 16px !important;
  font-size: 17px !important;
  line-height: 1.32 !important;
  font-weight: 800 !important;
}

.dvtk-footer--dark {
  padding: 86px 0 34px !important;
  background: linear-gradient(180deg, #02050b 0%, #071220 100%) !important;
}

.dvtk-footer__top--dark {
  align-items: stretch !important;
}

.footer-card-dark {
  border-radius: 32px !important;
  padding: 28px !important;
  background: linear-gradient(180deg, rgba(12, 31, 69, 0.96) 0%, rgba(14, 39, 86, 0.92) 100%) !important;
  border: 1px solid rgba(92, 132, 215, 0.16) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24) !important;
}

.dvtk-footer__brand {
  display: flex !important;
  flex-direction: column;
  gap: 18px;
}

.dvtk-footer__brand img {
  width: 92px !important;
  height: 92px !important;
}

.dvtk-footer__brand p {
  margin: 0 !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: 17px !important;
  line-height: 1.75 !important;
}

.dvtk-footer__brand-socials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}

.dvtk-footer__brand-socials > span {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dvtk-footer__sociallinks--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dvtk-footer__sociallinks--inline .social-btn {
  width: 48px !important;
  height: 48px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: none !important;
}

.dvtk-footer__sociallinks--inline .social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14) !important;
}

.dvtk-footer__columns h3,
.footer-items--tags h3 {
  margin-bottom: 18px !important;
  color: #fff !important;
}

.dvtk-footer__columns a,
.dvtk-footer-tag,
.dvtk-footer-tag-arrow {
  color: rgba(255,255,255,0.88) !important;
}

.dvtk-footer__gos {
  max-width: 1240px;
  margin: 34px auto 0 !important;
  padding: 24px !important;
}

.dvtk-footer__gos-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px !important;
}

.dvtk-footer__gos-head h3 {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(28px, 2.4vw, 40px) !important;
  line-height: 1.05 !important;
}

.dvtk-footer__gos #js-show-iframe-wrapper {
  border-radius: 24px !important;
  overflow: hidden;
}

.dvtk-footer__gos .bf-22 {
  max-width: 100% !important;
}

.dvtk-footer__gos .bf-22__text {
  font-size: clamp(24px, 2.5vw, 38px) !important;
  line-height: 1.15 !important;
}

.dvtk-footer__gos .bf-22__content {
  padding-left: 44px !important;
}

.dvtk-footer__bottom--dark {
  margin-top: 26px !important;
  padding-top: 20px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
}

.dvtk-footer__bottom-note,
.dvtk-footer__bottom-note a,
.dvtk-footer__bottom-links a {
  color: #fff !important;
}

.dvtk-cookie-banner__inner {
  max-width: 900px;
  margin-inline: auto;
}

@media (max-width: 1260px) {
  .dvtk-nav__link {
    padding: 13px 8px !important;
    font-size: 14px !important;
  }

  .dvtk-featured-story-slider,
  .dvtk-featured-story-slider .tns-outer,
  .dvtk-featured-story-slider .tns-ovh,
  .dvtk-featured-story-slider .tns-inner,
  .dvtk-featured-story-slider .simply-slider,
  .dvtk-featured-story-slider .tns-item,
  .godo-f-story,
  .godo-f-story__inner {
    min-height: 500px !important;
    height: 500px !important;
  }

  .godo-f-story__panel {
    width: 392px !important;
    max-width: calc(100% - 24px) !important;
    min-height: 348px !important;
    height: 348px !important;
  }

  .dvtk-resource-strip--expanded {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .dvtk-why-dvtk {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 980px) {
  .dvtk-nav__list {
    flex-wrap: wrap !important;
    justify-content: center !important;
  }

  .dvtk-resource-strip--expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .dvtk-footer__top--dark {
    grid-template-columns: 1fr !important;
  }

  .dvtk-footer__gos-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .dvtk-footer__gos .bf-22__content {
    padding-left: 24px !important;
  }
}

@media (max-width: 767px) {
  .dvtk-featured-story-slider,
  .dvtk-featured-story-slider .tns-outer,
  .dvtk-featured-story-slider .tns-ovh,
  .dvtk-featured-story-slider .tns-inner,
  .dvtk-featured-story-slider .simply-slider,
  .dvtk-featured-story-slider .tns-item,
  .godo-f-story,
  .godo-f-story__inner {
    min-height: 430px !important;
    height: 430px !important;
  }

  .godo-f-story__inner {
    align-items: flex-end !important;
  }

  .godo-f-story__panel {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    min-height: 250px !important;
    height: 250px !important;
    padding: 18px !important;
    gap: 12px !important;
  }

  .godo-f-story__badge,
  .godo-f-story__meta {
    min-height: 34px !important;
    padding: 0 14px !important;
    font-size: 11px !important;
  }

  .godo-f-story h2 {
    max-width: 220px !important;
    font-size: 15px !important;
    min-height: 5.8em !important;
    max-height: 5.8em !important;
    -webkit-line-clamp: 4 !important;
  }

  .godo-f-story__button {
    min-width: 138px !important;
    padding: 13px 20px !important;
  }

  .dvtk-slider-btn {
    width: 48px !important;
    height: 48px !important;
  }

  .dvtk-why-dvtk {
    padding: 22px;
    border-radius: 26px;
  }

  .dvtk-why-dvtk__hero h2 {
    font-size: 30px;
  }

  .dvtk-why-dvtk__hero p {
    font-size: 16px;
  }

  .dvtk-why-dvtk__actions {
    flex-direction: column;
  }

  .dvtk-why-dvtk__title {
    font-size: 18px;
  }

  .dvtk-resource-strip--expanded {
    grid-template-columns: 1fr !important;
  }

  .dvtk-resource-strip--expanded .dvtk-resource-tile {
    min-height: 180px !important;
  }

  .dvtk-footer--dark {
    padding-top: 62px !important;
  }

  .dvtk-footer__bottom--dark {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .dvtk-footer__gos {
    padding: 16px !important;
  }

  .dvtk-footer__gos .bf-22__text {
    font-size: 22px !important;
  }

  .dvtk-cookie-banner__inner {
    max-width: none;
  }
}


/* ==== DVTK FINAL OVERRIDES FIX12 ==== */
.dvtk-featured-story-wrap { margin-top: 12px !important; }
.dvtk-featured-story-slider,
.dvtk-featured-story-slider .tns-outer,
.dvtk-featured-story-slider .tns-ovh,
.dvtk-featured-story-slider .tns-inner,
.dvtk-featured-story-slider .simply-slider,
.dvtk-featured-story-slider .tns-item { height: auto !important; }
.godo-f-story--image-only { position: relative !important; border-radius: 36px !important; overflow: hidden !important; min-height: 0 !important; height: auto !important; background: transparent !important; }
.godo-f-story__image-link { display: block !important; line-height: 0 !important; }
.godo-f-story__image { display: block !important; width: 100% !important; height: clamp(280px, 42vw, 520px) !important; object-fit: cover !important; border-radius: 36px !important; }
.godo-f-story__bg,.godo-f-story__overlay,.godo-f-story__inner,.godo-f-story__panel,.godo-f-story__badge,.godo-f-story__meta,.godo-f-story__actions,.godo-f-story h2,.godo-f-story p,.godo-f-story__description { display: none !important; }

.dvtk-slider-btn { width: 58px !important; height: 58px !important; border-radius: 18px !important; background: rgba(255,255,255,.86) !important; color: #11326e !important; border: 1px solid rgba(17,50,110,.14) !important; box-shadow: 0 20px 40px rgba(7, 22, 51, 0.16) !important; }
.dvtk-slider-btn:hover { transform: translateY(-2px); }

.dvtk-why-toggle-card { background: linear-gradient(180deg,#f7fbff 0%,#eef5ff 100%) !important; border: 1px solid rgba(16,44,98,.08) !important; border-radius: 36px !important; box-shadow: 0 24px 60px rgba(13, 32, 73, 0.08) !important; overflow: hidden !important; }
.dvtk-why-toggle-card__button { width: 100% !important; display: grid !important; gap: 12px !important; padding: 32px !important; text-align: left !important; background: transparent !important; border: 0 !important; color: #0f2e68 !important; cursor: pointer !important; }
.dvtk-why-toggle-card__button strong { font-size: clamp(30px, 3vw, 44px) !important; line-height: 1.05 !important; }
.dvtk-why-toggle-card__button span:last-child { color: #5f7397 !important; font-size: 18px !important; max-width: 760px !important; }
.dvtk-why-toggle-card__panel { padding: 0 32px 32px !important; }
.dvtk-why-toggle-card__intro { max-width: 900px !important; display: grid !important; gap: 14px !important; margin-bottom: 20px !important; }
.dvtk-why-toggle-card__intro h2 { margin: 0 !important; font-size: clamp(26px, 2.5vw, 38px) !important; line-height: 1.14 !important; color: #0f2e68 !important; }
.dvtk-why-toggle-card__intro p { margin: 0 !important; font-size: 18px !important; line-height: 1.65 !important; color: #52698d !important; }
.dvtk-why-toggle-card__grid { display: grid !important; grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 18px !important; }
.dvtk-why-mini { background: #fff !important; border: 1px solid rgba(16,44,98,.08) !important; border-radius: 24px !important; padding: 22px 22px 20px !important; box-shadow: 0 18px 44px rgba(11, 28, 64, 0.06) !important; }
.dvtk-why-mini h3 { margin: 0 0 10px !important; color: #12316b !important; font-size: 14px !important; text-transform: uppercase !important; letter-spacing: .08em !important; }
.dvtk-why-mini p { margin: 0 0 10px !important; color: #102c62 !important; font-size: 22px !important; line-height: 1.2 !important; font-weight: 800 !important; }
.dvtk-why-mini small { display: block !important; color: #5d7397 !important; font-size: 15px !important; line-height: 1.6 !important; }

.footer-panel--compact { padding: 28px 28px 30px !important; }
.footer-items__head--center h2 { max-width: 820px !important; margin-left: auto !important; margin-right: auto !important; }
.footer-items__head--center p { max-width: 760px !important; margin-left: auto !important; margin-right: auto !important; }
.dvtk-resource-grid--compact { display: grid !important; grid-template-columns: repeat(4, minmax(0,1fr)) !important; gap: 16px !important; }
.dvtk-resource-tile--compact { min-height: 190px !important; padding: 18px !important; border-radius: 24px !important; box-shadow: 0 10px 24px rgba(11, 29, 66, 0.05) !important; }
.dvtk-resource-tile--compact .dvtk-resource-tile__media { min-height: 92px !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.dvtk-resource-tile--compact .dvtk-resource-tile__media img { max-width: 78% !important; max-height: 72px !important; width: auto !important; height: auto !important; object-fit: contain !important; }
.dvtk-resource-tile--compact .dvtk-resource-tile__label { margin-top: 10px !important; font-size: 14px !important; line-height: 1.45 !important; text-align: center !important; }

.dvtk-footer--dark { padding-top: 80px !important; background: radial-gradient(circle at top, rgba(20,71,160,.18), rgba(4,11,28,0) 38%), #050b18 !important; }
.dvtk-footer__top--dark { align-items: stretch !important; gap: 18px !important; }
.footer-card-dark { border-radius: 28px !important; padding: 28px !important; background: linear-gradient(180deg, rgba(13,35,81,.92), rgba(8,24,57,.96)) !important; border: 1px solid rgba(120,154,224,.12) !important; box-shadow: 0 20px 50px rgba(0,0,0,.22) !important; }
.dvtk-footer__brand-socials { margin-top: 22px !important; display: grid !important; gap: 10px !important; }
.dvtk-footer__brand-socials span { font-size: 13px !important; text-transform: uppercase !important; letter-spacing: .08em !important; color: #9eb3d7 !important; }
.dvtk-footer__sociallinks--text { display: flex !important; flex-wrap: wrap !important; gap: 10px !important; }
.dvtk-footer__sociallinks--text a { display: inline-flex !important; align-items: center !important; justify-content: center !important; min-width: 84px !important; height: 42px !important; padding: 0 18px !important; border-radius: 999px !important; background: rgba(255,255,255,.08) !important; color: #fff !important; font-weight: 700 !important; border: 1px solid rgba(255,255,255,.08) !important; }
.dvtk-footer__sociallinks--text a:hover { background: #2f72e5 !important; border-color: #2f72e5 !important; color: #fff !important; transform: translateY(-1px); }

.dvtk-footer__gos-compact { margin-top: 20px !important; display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 24px !important; }
.dvtk-footer__gos-copy { max-width: 760px !important; display: grid !important; gap: 10px !important; }
.dvtk-footer__gos-copy h3 { margin: 0 !important; color: #fff !important; font-size: clamp(28px, 2.6vw, 46px) !important; line-height: 1.04 !important; }
.dvtk-footer__gos-copy p { margin: 0 !important; color: #d4def2 !important; font-size: 18px !important; line-height: 1.6 !important; }

.dvtk-gos-modal { position: fixed !important; inset: 0 !important; z-index: 12000 !important; display: flex !important; align-items: center !important; justify-content: center !important; padding: 24px !important; }
.dvtk-gos-modal[hidden] { display: none !important; }
.dvtk-gos-modal__backdrop { position: absolute !important; inset: 0 !important; background: rgba(3,10,24,.72) !important; border: 0 !important; }
.dvtk-gos-modal__dialog { position: relative !important; width: min(760px, 100%) !important; z-index: 1 !important; }
.dvtk-gos-modal__card { background: linear-gradient(180deg,#ffffff 0%, #eef5ff 100%) !important; border-radius: 28px !important; padding: 34px !important; box-shadow: 0 40px 100px rgba(0,0,0,.26) !important; border: 1px solid rgba(14,44,99,.08) !important; }
.dvtk-gos-modal__card h3 { margin: 12px 0 10px !important; color: #10316b !important; font-size: clamp(28px, 3vw, 42px) !important; }
.dvtk-gos-modal__card p { margin: 0 !important; color: #5e7395 !important; font-size: 18px !important; line-height: 1.65 !important; }
.dvtk-gos-modal__actions { margin-top: 22px !important; display: flex !important; flex-wrap: wrap !important; gap: 12px !important; }
.dvtk-gos-modal__close { position: absolute !important; top: -12px !important; right: -12px !important; width: 44px !important; height: 44px !important; border-radius: 50% !important; border: 0 !important; background: #143d8c !important; color: #fff !important; font-size: 28px !important; box-shadow: 0 16px 30px rgba(8,23,52,.26) !important; z-index: 2 !important; }

.dvtk-footer__bottom--dark { padding-top: 22px !important; margin-top: 22px !important; border-top: 1px solid rgba(255,255,255,.08) !important; }

@media (max-width: 1180px) {
  .dvtk-resource-grid--compact { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
  .dvtk-footer__gos-compact { flex-direction: column !important; align-items: flex-start !important; }
}
@media (max-width: 820px) {
  .godo-f-story__image { height: 260px !important; border-radius: 24px !important; }
  .dvtk-slider-btn { width: 48px !important; height: 48px !important; border-radius: 16px !important; }
  .dvtk-why-toggle-card__button, .dvtk-why-toggle-card__panel { padding-left: 18px !important; padding-right: 18px !important; }
  .dvtk-why-toggle-card__grid { grid-template-columns: 1fr !important; }
  .dvtk-resource-grid--compact { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .dvtk-resource-tile--compact { min-height: 156px !important; padding: 14px !important; }
  .dvtk-resource-tile--compact .dvtk-resource-tile__media { min-height: 76px !important; }
  .dvtk-resource-tile--compact .dvtk-resource-tile__media img { max-width: 82% !important; max-height: 58px !important; }
  .dvtk-footer__sociallinks--text a { min-width: 70px !important; height: 40px !important; padding: 0 14px !important; }
  .dvtk-gos-modal { padding: 16px !important; }
  .dvtk-gos-modal__card { padding: 22px !important; }
}
@media (max-width: 560px) {
  .dvtk-resource-grid--compact { grid-template-columns: 1fr !important; }
  .dvtk-why-toggle-card__button strong { font-size: 26px !important; }
  .dvtk-footer__sociallinks--text { gap: 8px !important; }
  .dvtk-footer__bottom-links { gap: 10px 16px !important; }
}

/* ==== DVTK FINAL OVERRIDES FIX13 ==== */
.dvtk-featured-story-wrap {
  margin-top: 14px !important;
  padding: 10px 0 34px !important;
}

.dvtk-featured-story-slider {
  position: relative !important;
}

.dvtk-featured-story-slider .simply-slider,
.dvtk-featured-story-slider .tns-outer,
.dvtk-featured-story-slider .tns-ovh,
.dvtk-featured-story-slider .tns-inner,
.dvtk-featured-story-slider .tns-item {
  width: 100% !important;
  height: auto !important;
}

.dvtk-featured-story-slider .simply-slider {
  display: block !important;
}

.godo-f-story--image-only {
  width: 100% !important;
  min-width: 100% !important;
  display: block !important;
  border-radius: 36px !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: 0 18px 54px rgba(10, 27, 61, 0.08) !important;
}

.godo-f-story--image-only .godo-f-story__image-link {
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  line-height: 0 !important;
}

.godo-f-story--image-only .godo-f-story__image {
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  height: clamp(340px, 43vw, 540px) !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 36px !important;
}

.godo-f-story__bg,
.godo-f-story__overlay,
.godo-f-story__inner,
.godo-f-story__panel,
.godo-f-story__badge,
.godo-f-story__meta,
.godo-f-story__description,
.godo-f-story__actions,
.godo-f-story h2,
.godo-f-story p {
  display: none !important;
}

.dvtk-slider-btn {
  width: 56px !important;
  height: 56px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(17, 49, 107, 0.12) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: #12316b !important;
  box-shadow: 0 18px 40px rgba(11, 27, 62, 0.12) !important;
}

.dvtk-slider-btn:hover {
  transform: translateY(-2px);
}

.dvtk-why-toggle-card {
  border-radius: 36px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%) !important;
  border: 1px solid rgba(14, 44, 99, 0.08) !important;
  box-shadow: 0 24px 60px rgba(11, 28, 64, 0.08) !important;
  overflow: hidden !important;
}

.dvtk-why-toggle-card__head {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 24px !important;
  padding: 34px !important;
}

.dvtk-why-toggle-card__lead {
  display: grid !important;
  gap: 14px !important;
  max-width: 900px !important;
}

.dvtk-why-toggle-card__lead h2 {
  margin: 0 !important;
  font-size: clamp(30px, 3vw, 46px) !important;
  line-height: 1.06 !important;
  color: #0f2f69 !important;
}

.dvtk-why-toggle-card__lead p {
  margin: 0 !important;
  color: #5e7293 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
  max-width: 72ch !important;
}

.dvtk-why-toggle-card__cta {
  flex: none !important;
  min-width: 164px !important;
  height: 56px !important;
  padding: 0 22px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(25, 74, 163, 0.16) !important;
  background: #2f72e5 !important;
  color: #fff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-weight: 800 !important;
  box-shadow: 0 20px 40px rgba(47, 114, 229, 0.22) !important;
}

.dvtk-why-toggle-card__cta svg {
  width: 18px;
  height: 18px;
  transition: transform .2s ease;
}

.dvtk-why-toggle-card__cta[aria-expanded="true"] svg {
  transform: rotate(90deg);
}

.dvtk-why-toggle-card__panel {
  padding: 0 34px 34px !important;
}

.dvtk-why-toggle-card__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.dvtk-why-mini {
  background: #fff !important;
  border: 1px solid rgba(14, 44, 99, 0.08) !important;
  border-radius: 24px !important;
  padding: 22px !important;
  box-shadow: 0 14px 34px rgba(11, 28, 64, 0.05) !important;
}

.dvtk-why-mini h3 {
  margin: 0 0 10px !important;
  color: #1848a4 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
}

.dvtk-why-mini p {
  margin: 0 0 10px !important;
  color: #102c62 !important;
  font-size: 22px !important;
  line-height: 1.22 !important;
  font-weight: 800 !important;
}

.dvtk-why-mini small {
  display: block !important;
  color: #607494 !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.dvtk-why-facts {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 18px !important;
}

.dvtk-why-fact {
  border-radius: 22px !important;
  background: #eef5ff !important;
  border: 1px solid rgba(24, 72, 164, 0.08) !important;
  padding: 18px !important;
  display: grid !important;
  gap: 8px !important;
}

.dvtk-why-fact strong {
  color: #12316b !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
}

.dvtk-why-fact span {
  color: #607494 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
}

.dvtk-resource-showcase {
  padding: 30px 0 16px !important;
}

.dvtk-resource-showcase__head {
  display: grid !important;
  justify-items: center !important;
  gap: 10px !important;
  text-align: center !important;
  margin-bottom: 20px !important;
}

.dvtk-resource-showcase__head h2 {
  margin: 0 !important;
  color: #0f2f69 !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  line-height: 1.08 !important;
}

.dvtk-resource-showcase__head p {
  margin: 0 !important;
  max-width: 760px !important;
  color: #627494 !important;
  font-size: 18px !important;
  line-height: 1.65 !important;
}

.dvtk-resource-carousel {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr) 56px !important;
  gap: 16px !important;
  align-items: center !important;
}

.dvtk-resource-carousel__track {
  display: flex !important;
  gap: 18px !important;
  overflow-x: auto !important;
  padding: 8px 2px 14px !important;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.dvtk-resource-carousel__track::-webkit-scrollbar {
  display: none;
}

.dvtk-resource-card {
  flex: 0 0 220px !important;
  min-width: 220px !important;
  min-height: 154px !important;
  border-radius: 26px !important;
  padding: 18px 18px 16px !important;
  background: #fff !important;
  border: 1px solid rgba(13, 35, 74, 0.08) !important;
  box-shadow: 0 16px 34px rgba(11, 28, 64, 0.06) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 14px !important;
  scroll-snap-align: start;
}

.dvtk-resource-card:hover {
  transform: translateY(-2px);
}

.dvtk-resource-card__media {
  min-height: 72px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.dvtk-resource-card__media img {
  max-width: 92% !important;
  max-height: 62px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

.dvtk-resource-card__title {
  color: #12316b !important;
  font-size: 15px !important;
  line-height: 1.38 !important;
  font-weight: 800 !important;
  text-align: center !important;
}

.dvtk-resource-carousel__btn {
  width: 52px !important;
  height: 52px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(18, 49, 107, 0.12) !important;
  background: #fff !important;
  color: #1350a8 !important;
  box-shadow: 0 14px 32px rgba(11, 28, 64, 0.08) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.dvtk-resource-carousel__btn svg {
  width: 22px;
  height: 22px;
}

.dvtk-footer__top--dark {
  gap: 15px !important;
  align-items: stretch !important;
}

.footer-card-dark {
  border-radius: 30px !important;
  padding: 30px !important;
  background: linear-gradient(180deg, rgba(11, 30, 70, 0.95), rgba(8, 22, 53, 0.98)) !important;
  border: 1px solid rgba(120, 154, 224, 0.12) !important;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24) !important;
}

.dvtk-footer__brand p {
  margin: 0 !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: 17px !important;
  line-height: 1.72 !important;
}

.dvtk-footer__brand-socials {
  margin-top: 22px !important;
  display: grid !important;
  gap: 10px !important;
}

.dvtk-footer__brand-socials > span {
  color: #9eb3d7 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
}

.dvtk-footer__sociallinks--text {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.dvtk-footer__sociallinks--text a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 92px !important;
  height: 42px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

.dvtk-footer__sociallinks--text a:hover {
  background: #2f72e5 !important;
  border-color: #2f72e5 !important;
  transform: translateY(-1px);
}

.dvtk-footer__gos-action {
  margin-top: 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.dvtk-footer__gos-copy {
  display: grid !important;
  gap: 10px !important;
  max-width: 760px !important;
}

.dvtk-footer__gos-copy h3 {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(30px, 2.8vw, 44px) !important;
  line-height: 1.05 !important;
}

.dvtk-footer__gos-copy p {
  margin: 0 !important;
  color: #d7e0f3 !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
}

.dvtk-gos-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 12000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 24px !important;
}

.dvtk-gos-modal[hidden] {
  display: none !important;
}

.dvtk-gos-modal__backdrop {
  position: absolute !important;
  inset: 0 !important;
  border: 0 !important;
  background: rgba(3, 10, 24, 0.72) !important;
}

.dvtk-gos-modal__dialog {
  position: relative !important;
  z-index: 1 !important;
  width: min(720px, 100%) !important;
}

.dvtk-gos-modal__card {
  border-radius: 28px !important;
  padding: 34px !important;
  background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%) !important;
  border: 1px solid rgba(14, 44, 99, 0.08) !important;
  box-shadow: 0 38px 96px rgba(0,0,0,0.26) !important;
}

.dvtk-gos-modal__card h3 {
  margin: 12px 0 10px !important;
  color: #10316b !important;
  font-size: clamp(28px, 3vw, 40px) !important;
}

.dvtk-gos-modal__card p {
  margin: 0 !important;
  color: #5d7396 !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.dvtk-gos-modal__actions {
  margin-top: 22px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.dvtk-gos-modal__close {
  position: absolute !important;
  top: -12px !important;
  right: -12px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 0 !important;
  background: #143d8c !important;
  color: #fff !important;
  font-size: 28px !important;
  box-shadow: 0 16px 32px rgba(8, 23, 52, 0.26) !important;
}

.dvtk-footer__bottom--dark {
  margin-top: 24px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

@media (max-width: 1180px) {
  .dvtk-why-toggle-card__head {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .dvtk-why-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .dvtk-footer__gos-action {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

@media (max-width: 900px) {
  .dvtk-resource-carousel {
    grid-template-columns: 1fr !important;
  }

  .dvtk-resource-carousel__btn {
    display: none !important;
  }

  .dvtk-resource-card {
    flex-basis: 190px !important;
    min-width: 190px !important;
  }
}

@media (max-width: 820px) {
  .godo-f-story--image-only .godo-f-story__image {
    height: 260px !important;
    border-radius: 24px !important;
  }

  .dvtk-why-toggle-card__head,
  .dvtk-why-toggle-card__panel {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .dvtk-why-toggle-card__grid,
  .dvtk-why-facts {
    grid-template-columns: 1fr !important;
  }

  .dvtk-gos-modal {
    padding: 16px !important;
  }

  .dvtk-gos-modal__card {
    padding: 22px !important;
  }
}

/* ==== DVTK FIX14 FEATURED REBUILD ==== */
.dvtk-featured-story-wrap {
  margin-top: 18px !important;
  padding: 10px 0 34px !important;
}

.dvtk-featured-story-slider {
  position: relative !important;
  border-radius: 40px !important;
}

.dvtk-featured-stage {
  position: relative !important;
  min-height: clamp(360px, 46vw, 560px) !important;
  border-radius: 40px !important;
  overflow: hidden !important;
  background: #dfe8f4 !important;
  box-shadow: 0 24px 64px rgba(10, 29, 70, 0.12) !important;
}

.dvtk-featured-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .42s ease, visibility .42s ease !important;
}

.dvtk-featured-slide.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 1 !important;
}

.dvtk-featured-slide .godo-f-story,
.dvtk-featured-slide .godo-f-story__image-link,
.dvtk-featured-slide .godo-f-story__image {
  width: 100% !important;
  height: 100% !important;
}

.godo-f-story--image-only {
  margin: 0 !important;
  border-radius: 40px !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: none !important;
}

.godo-f-story--image-only .godo-f-story__image-link {
  display: block !important;
  line-height: 0 !important;
}

.godo-f-story--image-only .godo-f-story__image {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(360px, 46vw, 560px) !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 40px !important;
}

.dvtk-featured-controls {
  position: absolute !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 3 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.dvtk-slider-btn {
  width: 56px !important;
  height: 56px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(20, 49, 107, 0.12) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #12316b !important;
  box-shadow: 0 18px 40px rgba(11, 27, 62, 0.12) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.dvtk-slider-btn:hover {
  transform: translateY(-2px) !important;
}

@media (max-width: 900px) {
  .dvtk-featured-stage,
  .godo-f-story--image-only .godo-f-story__image {
    min-height: 300px !important;
    border-radius: 28px !important;
  }

  .dvtk-featured-story-slider,
  .godo-f-story--image-only {
    border-radius: 28px !important;
  }

  .dvtk-featured-controls {
    right: 18px !important;
    bottom: 18px !important;
  }

  .dvtk-slider-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 16px !important;
  }
}

@media (max-width: 640px) {
  .dvtk-featured-story-wrap {
    padding: 8px 0 24px !important;
  }

  .dvtk-featured-stage,
  .godo-f-story--image-only .godo-f-story__image {
    min-height: 220px !important;
    border-radius: 22px !important;
  }

  .dvtk-featured-story-slider,
  .godo-f-story--image-only {
    border-radius: 22px !important;
  }

  .dvtk-featured-controls {
    right: 12px !important;
    bottom: 12px !important;
    gap: 8px !important;
  }

  .dvtk-slider-btn {
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
  }
}

/* ==== DVTK FIX15 FEATURED FINAL ==== */
.dvtk-featured-story-wrap {
  margin-top: 18px !important;
  padding: 12px 0 32px !important;
}

.dvtk-featured-story-slider {
  position: relative !important;
}

.dvtk-featured-stage {
  position: relative !important;
  width: 100% !important;
  min-height: clamp(320px, 42vw, 560px) !important;
  border-radius: 40px !important;
  overflow: hidden !important;
  background: #dbe5f3 !important;
  box-shadow: 0 20px 60px rgba(10, 29, 70, 0.12) !important;
}

.dvtk-featured-slide {
  position: absolute !important;
  inset: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .35s ease !important;
}

.dvtk-featured-slide.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 2 !important;
}

.godo-f-story--visual-only,
.godo-f-story--visual-only .godo-f-story__visual-link,
.godo-f-story--visual-only .godo-f-story__visual {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: inherit !important;
}

.godo-f-story--visual-only {
  margin: 0 !important;
  border-radius: 40px !important;
  overflow: hidden !important;
  background: transparent !important;
  box-shadow: none !important;
}

.godo-f-story--visual-only .godo-f-story__visual-link {
  border-radius: 40px !important;
  overflow: hidden !important;
}

.godo-f-story--visual-only .godo-f-story__visual {
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  min-height: clamp(320px, 42vw, 560px) !important;
}

.dvtk-featured-controls {
  position: absolute !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 5 !important;
  display: flex !important;
  gap: 12px !important;
}

.dvtk-slider-btn {
  width: 58px !important;
  height: 58px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(16, 41, 92, 0.12) !important;
  background: rgba(255,255,255,0.92) !important;
  color: #163778 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 18px 44px rgba(11, 27, 62, 0.14) !important;
}

.dvtk-slider-btn:hover {
  transform: translateY(-2px) !important;
}

@media (max-width: 900px) {
  .dvtk-featured-stage,
  .godo-f-story--visual-only .godo-f-story__visual {
    min-height: 280px !important;
    border-radius: 28px !important;
  }

  .godo-f-story--visual-only,
  .godo-f-story--visual-only .godo-f-story__visual-link {
    border-radius: 28px !important;
  }
}

@media (max-width: 640px) {
  .dvtk-featured-stage,
  .godo-f-story--visual-only .godo-f-story__visual {
    min-height: 220px !important;
    border-radius: 22px !important;
  }

  .godo-f-story--visual-only,
  .godo-f-story--visual-only .godo-f-story__visual-link {
    border-radius: 22px !important;
  }

  .dvtk-featured-controls {
    right: 12px !important;
    bottom: 12px !important;
    gap: 8px !important;
  }

  .dvtk-slider-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
  }
}


/* ==== DVTK FIX15B FEATURED BUTTONS REAL FIX ==== */
.dvtk-featured-controls {
  position: absolute !important;
  right: 24px !important;
  bottom: 24px !important;
  z-index: 20 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}
.dvtk-featured-controls .dvtk-slider-btn {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  top: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.dvtk-featured-controls .dvtk-slider-btn svg {
  width: 22px !important;
  height: 22px !important;
  display: block !important;
}


/* =========================
   DVTK HOTFIX PACK 2026-03-22 v9
========================= */
.dvtk-header__actions {
  gap: 12px !important;
}

.dvtk-special-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 10px !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, #ffffff 0%, #edf4ff 100%) !important;
  border: 1px solid rgba(18, 49, 107, 0.12) !important;
  box-shadow: 0 10px 28px rgba(10, 31, 72, 0.10) !important;
}

.dvtk-special-button__image {
  display: block !important;
  width: auto !important;
  max-width: 190px !important;
  height: 30px !important;
  object-fit: contain !important;
}

.dvtk-mobile__tools {
  display: flex !important;
  gap: 10px !important;
  margin-bottom: 18px !important;
}

.dvtk-mobile__special {
  width: 100% !important;
  min-height: 54px !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,0.09) !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.dvtk-mobile__special-icon {
  width: 28px !important;
  height: 28px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.14) !important;
  font-size: 14px !important;
}

.dvtk-footer__gos-action {
  margin-top: 24px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 28px !important;
  align-items: center !important;
  padding: 26px 30px !important;
  border-radius: 30px !important;
  background: linear-gradient(135deg, rgba(12, 33, 73, 0.98) 0%, rgba(16, 45, 98, 0.98) 58%, rgba(28, 82, 190, 0.92) 100%) !important;
  border: 1px solid rgba(153, 190, 255, 0.18) !important;
  box-shadow: 0 26px 64px rgba(4, 14, 34, 0.26) !important;
  overflow: hidden !important;
  position: relative !important;
}

.dvtk-footer__gos-action::before,
.dvtk-footer__gos-action::after {
  content: '' !important;
  position: absolute !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.07) !important;
  pointer-events: none !important;
}

.dvtk-footer__gos-action::before {
  width: 220px !important;
  height: 220px !important;
  top: -120px !important;
  right: -60px !important;
}

.dvtk-footer__gos-action::after {
  width: 180px !important;
  height: 180px !important;
  left: -70px !important;
  bottom: -110px !important;
}

.dvtk-footer__gos-copy,
.dvtk-footer__gos-actions {
  position: relative !important;
  z-index: 1 !important;
}

.dvtk-footer__gos-copy {
  display: grid !important;
  gap: 14px !important;
  max-width: 860px !important;
}

.dvtk-footer__gos-copy-top {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
}

.dvtk-footer__gos-kicker {
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.82) !important;
}

.dvtk-footer__gos-copy h3 {
  margin: 0 !important;
  max-width: 18ch !important;
  color: #fff !important;
  font-size: clamp(28px, 2.6vw, 48px) !important;
  line-height: 1.04 !important;
}

.dvtk-footer__gos-copy p {
  margin: 0 !important;
  max-width: 64ch !important;
  color: rgba(231, 240, 255, 0.92) !important;
  font-size: 17px !important;
  line-height: 1.68 !important;
}

.dvtk-footer__gos-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.dvtk-footer__gos-tags span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 38px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

.dvtk-footer__gos-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
}

.dvtk-footer__gos-actions .dvtk-button {
  min-width: 240px !important;
  min-height: 58px !important;
  padding: 0 24px !important;
  border-radius: 18px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  box-shadow: 0 18px 36px rgba(5, 15, 36, 0.22) !important;
}

.dvtk-footer__bottom--dark {
  display: grid !important;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 18px 28px !important;
}

.dvtk-footer__bottom-note {
  min-width: 0 !important;
}

.dvtk-footer__bottom-links {
  min-width: 0 !important;
  display: flex !important;
  justify-content: flex-end !important;
  flex-wrap: wrap !important;
  gap: 12px 18px !important;
}

.dvtk-footer__bottom-links a {
  display: inline-flex !important;
  align-items: center !important;
  min-width: 0 !important;
  word-break: break-word !important;
}

.dvtk-featured-story-slider {
  position: relative !important;
}

.dvtk-featured-stage {
  position: relative !important;
  overflow: hidden !important;
}

.dvtk-featured-controls {
  position: absolute !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 4 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px !important;
  border-radius: 22px !important;
}

.dvtk-slider-btn {
  position: relative !important;
  width: 54px !important;
  height: 54px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(20, 49, 107, 0.10) !important;
  background: rgba(255,255,255,0.94) !important;
  color: #12316b !important;
  box-shadow: 0 10px 26px rgba(11, 27, 62, 0.12) !important;
}

@media (max-width: 1180px) {
  .dvtk-special-button__image {
    max-width: 154px !important;
    height: 26px !important;
  }

  .dvtk-footer__gos-action {
    grid-template-columns: 1fr !important;
    align-items: flex-start !important;
  }

  .dvtk-footer__gos-actions {
    justify-content: flex-start !important;
  }
}

@media (max-width: 820px) {
  .dvtk-footer__bottom--dark {
    grid-template-columns: 1fr !important;
    align-items: flex-start !important;
  }

  .dvtk-footer__bottom-links {
    justify-content: flex-start !important;
  }
}

@media (max-width: 640px) {
  .dvtk-header__actions {
    gap: 8px !important;
  }

  .dvtk-special-button {
    padding: 0 8px !important;
    min-height: 42px !important;
    border-radius: 14px !important;
  }

  .dvtk-special-button__image {
    max-width: 112px !important;
    height: 22px !important;
  }

  .dvtk-footer__gos-action {
    padding: 22px 18px !important;
    border-radius: 24px !important;
    gap: 18px !important;
  }

  .dvtk-footer__gos-copy h3 {
    font-size: 22px !important;
    max-width: none !important;
  }

  .dvtk-footer__gos-copy p {
    font-size: 15px !important;
  }

  .dvtk-footer__gos-tags span {
    min-height: 34px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
  }

  .dvtk-footer__gos-actions,
  .dvtk-footer__gos-actions .dvtk-button {
    width: 100% !important;
  }

  .dvtk-footer__gos-actions .dvtk-button {
    min-width: 0 !important;
    min-height: 52px !important;
    border-radius: 16px !important;
  }

  .dvtk-footer__bottom-note {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }

  .dvtk-footer__bottom-links {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px 12px !important;
    width: 100% !important;
  }

  .dvtk-footer__bottom-links a {
    min-height: 40px !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
    white-space: normal !important;
  }

  .dvtk-featured-controls {
    right: 10px !important;
    bottom: 10px !important;
    gap: 8px !important;
    padding: 8px !important;
    border-radius: 18px !important;
  }

  .dvtk-slider-btn {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
  }
}


/* =========================
   DVTK HOTFIX PACK 2026-03-22 v10
========================= */
.dvtk-header__actions > .dvtk-special-button.dvtk-icon-button {
  width: 46px !important;
  min-width: 46px !important;
  height: 46px !important;
  min-height: 46px !important;
  padding: 0 !important;
  border-radius: 14px !important;
  background: #fff !important;
  border: 1px solid var(--dvtk-border) !important;
  box-shadow: 0 8px 28px rgba(10, 31, 72, 0.08) !important;
}

.dvtk-header__actions > .dvtk-special-button.dvtk-icon-button:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 12px 30px rgba(10, 31, 72, 0.12) !important;
}

.dvtk-header__actions > .dvtk-special-button .dvtk-special-button__icon {
  width: 24px !important;
  height: 24px !important;
  display: block !important;
}

.dvtk-special-button-source {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.dvtk-special-button-source .dvtk-special-button__image {
  width: auto !important;
  max-width: 300px !important;
  height: auto !important;
}

@media (max-width: 640px) {
  .dvtk-header__actions > .dvtk-special-button.dvtk-icon-button {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 14px !important;
  }
}

/* =========================
   DVTK HOTFIX PACK 2026-03-22 v10
   featured buttons smaller on mobile
========================= */
@media (max-width: 640px) {
  .dvtk-featured-controls {
    right: 10px !important;
    bottom: 10px !important;
    gap: 6px !important;
    padding: 5px !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 24px rgba(12, 31, 71, 0.12) !important;
  }

  .dvtk-featured-controls .dvtk-slider-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 12px !important;
    box-shadow: none !important;
  }

  .dvtk-featured-controls .dvtk-slider-btn svg {
    width: 18px !important;
    height: 18px !important;
  }
}

@media (max-width: 420px) {
  .dvtk-featured-controls {
    right: 8px !important;
    bottom: 8px !important;
    gap: 5px !important;
    padding: 4px !important;
    border-radius: 14px !important;
  }

  .dvtk-featured-controls .dvtk-slider-btn {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 10px !important;
  }

  .dvtk-featured-controls .dvtk-slider-btn svg {
    width: 16px !important;
    height: 16px !important;
  }
}

/* ===== FIX: чтобы хедер-в-nav влезал на 1366px / при 150% zoom ===== */
@media (max-width: 1500px) {
  .dvtk-nav .dvtk-shell {
    width: min(calc(100% - 20px), var(--dvtk-shell)) !important;
  }

  .dvtk-nav {
    padding: 10px 0 !important;
  }

  .dvtk-nav__list {
    gap: 2px !important;
    align-items: stretch !important;
  }

  .dvtk-nav__item {
    flex: 1 1 0 !important;
    min-width: 0 !important;
  }

  .dvtk-nav__link {
    width: 100% !important;
    min-height: 54px !important;
    padding: 10px 6px !important;
    font-size: 14px !important;
    line-height: 1.12 !important;
    white-space: normal !important;
    text-wrap: balance !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
  }
}

@media (max-width: 1280px) {
  .dvtk-nav .dvtk-shell {
    width: min(calc(100% - 12px), var(--dvtk-shell)) !important;
  }

  .dvtk-nav__list {
    gap: 1px !important;
  }

  .dvtk-nav__link {
    min-height: 50px !important;
    padding: 8px 4px !important;
    font-size: 13px !important;
    line-height: 1.08 !important;
    border-radius: 10px !important;
  }
}

/* ===== DVTK MOBILE FIX PACK 2026-03-23 ===== */
#specialButton.dvtk-special-button {
  text-decoration: none;
}

.dvtk-special-button__icon {
  pointer-events: none;
}

.dvtk-mobile__header {
  align-items: start;
}

.dvtk-mobile__header-actions {
  width: 100%;
  justify-content: flex-end;
}

.dvtk-mobile__close {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.dvtk-mobile__close svg {
  width: 20px !important;
  height: 20px !important;
}

.dvtk-mobile__mark--spo img,
.dvtk-brand__spo {
  display: block;
  height: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .simply-main {
    min-height: 0 !important;
  }

  .dvtk-featured-story-wrap {
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    padding: 8px 0 8px !important;
  }

  .dvtk-section--college {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .dvtk-brand__mark-card.dvtk-brand__spo-badge {
    width: 98px !important;
    height: 48px !important;
    padding: 0 8px !important;
    overflow: hidden !important;
  }

  .dvtk-brand__spo {
    width: 76px !important;
  }

  .dvtk-mobile__mark--spo {
    overflow: hidden !important;
  }

  .dvtk-mobile__mark--spo img {
    width: 92px !important;
  }

  .dvtk-header__actions > #specialButton.dvtk-special-button {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 0 !important;
    border-radius: 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .dvtk-header__actions > #specialButton .dvtk-special-button__icon {
    width: 24px !important;
    height: 24px !important;
  }
}


/* =========================
   DVTK HOTFIX PACK 2026-03-23 v11
========================= */
.dvtk-special-button__shim {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

html.dark .dvtk-header__actions > .dvtk-special-button.dvtk-icon-button {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
  color: #f4f8ff !important;
  box-shadow: none !important;
}

html.dark .dvtk-header__actions > .dvtk-special-button.dvtk-icon-button:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24) !important;
}

@media (max-width: 640px) {
  .dvtk-featured-story-wrap {
    margin: 8px 0 0 !important;
    padding: 8px 0 0 !important;
  }

  .dvtk-featured-story-slider,
  .dvtk-featured-stage {
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
  }

  .dvtk-featured-slide,
  .dvtk-featured-slide.is-active,
  .godo-f-story,
  .godo-f-story__inner,
  .godo-f-story--visual-only .godo-f-story__visual-link,
  .godo-f-story--visual-only .godo-f-story__visual {
    min-height: 0 !important;
    height: 100% !important;
  }

  .dvtk-section--college {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}


/* =========================
   DVTK HOTFIX PACK 2026-03-23 v3
========================= */
.dvtk-brand__mobile-short,
.dvtk-mobile__brand-short {
  display: none;
}

.dvtk-a11y-toolbar[hidden] {
  display: none !important;
}

.dvtk-a11y-toolbar__group:last-child {
  margin-left: auto;
}

.dvtk-a11y-toolbar__btn,
.dvtk-a11y-toolbar__exit {
  cursor: pointer;
}

@media (max-width: 768px) {
  .dvtk-featured-story-wrap {
    margin: 10px 0 16px !important;
    padding: 8px 0 16px !important;
  }

  .dvtk-section--college {
    padding-top: 8px !important;
  }
}

@media (max-width: 640px) {
  .dvtk-header__main {
    min-height: 72px !important;
    padding: 12px 0 !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .dvtk-brand {
    gap: 10px !important;
    min-width: 0 !important;
  }

  .dvtk-brand__marks {
    gap: 8px !important;
  }

  .dvtk-brand__mark-card.dvtk-brand__spo-badge {
    width: 88px !important;
    height: 44px !important;
    padding: 0 8px !important;
    border-radius: 14px !important;
  }

  .dvtk-brand__spo {
    width: 66px !important;
  }

  .dvtk-brand__mark-card.dvtk-brand__logo-badge,
  .dvtk-brand__text {
    display: none !important;
  }

  .dvtk-brand__mobile-short {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 44px !important;
    padding: 0 14px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border: 1px solid rgba(17, 44, 94, 0.10) !important;
    box-shadow: 0 10px 24px rgba(10, 31, 72, 0.10) !important;
    color: #173a87 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
    line-height: 1 !important;
  }

  .dvtk-header__actions {
    gap: 6px !important;
  }

  .dvtk-header__actions > .dvtk-icon-button,
  .dvtk-header__actions > .dvtk-burger {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    border-radius: 13px !important;
  }

  .dvtk-header__actions > .dvtk-special-button .dvtk-special-button__icon,
  .dvtk-header__actions > .dvtk-search-trigger .icon {
    width: 22px !important;
    height: 22px !important;
  }

  .dvtk-burger span {
    width: 18px !important;
  }

  .dvtk-mobile__header {
    gap: 12px !important;
  }

  .dvtk-mobile__brand {
    gap: 10px !important;
  }

  .dvtk-mobile__brand-marks {
    gap: 8px !important;
  }

  .dvtk-mobile__mark--logo {
    display: none !important;
  }

  .dvtk-mobile__mark--spo {
    width: 98px !important;
    height: 50px !important;
    border-radius: 16px !important;
  }

  .dvtk-mobile__mark--spo img {
    width: 78px !important;
  }

  .dvtk-mobile__brand-short {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 50px !important;
    padding: 0 14px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,0.96) !important;
    color: #173a87 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    letter-spacing: 0.08em !important;
  }

  .dvtk-mobile__brand-text {
    display: none !important;
  }

  .dvtk-a11y-toolbar__inner {
    gap: 8px 10px !important;
    padding: 8px 0 !important;
  }

  .dvtk-a11y-toolbar__group {
    gap: 6px !important;
  }

  .dvtk-a11y-toolbar__label {
    font-size: 12px !important;
  }

  .dvtk-a11y-toolbar__btn,
  .dvtk-a11y-toolbar__exit {
    min-height: 34px !important;
    padding: 0 10px !important;
    border-radius: 9px !important;
    font-size: 13px !important;
  }

  .dvtk-featured-story-wrap {
    margin: 10px 0 18px !important;
    padding: 8px 0 18px !important;
  }

  .dvtk-section--college {
    padding-top: 10px !important;
  }
}

html.dark .dvtk-brand__mobile-short,
html.dark .dvtk-mobile__brand-short {
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  color: #f4f8ff !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .gh-search-modal input,
  .gh-search-page-input,
  .gh-search-input,
  .kg-search-input,
  input[type="search"],
  input[type="text"] {
    font-size: 16px !important;
    line-height: 1.4 !important;
    min-height: 44px !important;
    -webkit-appearance: none;
    appearance: none;
  }

  .gh-search-modal,
  .gh-search-page,
  .gh-search {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
}

.dvtk-mobile__quick {
    padding: 10px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(19, 38, 78, 0.96) 0%, rgba(12, 28, 60, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.dvtk-mobile__quick-head {
    margin-bottom: 12px;
}

.dvtk-mobile__quick-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(71, 125, 255, 0.16);
    color: #9ec2ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.dvtk-mobile__quick-text {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.45;
}

.dvtk-mobile__quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.dvtk-mobile__quick-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(30, 50, 92, 0.98) 0%, rgba(23, 41, 77, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.dvtk-mobile__quick-card:hover,
.dvtk-mobile__quick-card:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(120, 166, 255, 0.22);
    background: linear-gradient(180deg, rgba(34, 58, 106, 1) 0%, rgba(25, 46, 86, 1) 100%);
}

.dvtk-mobile__quick-card.is-primary {
    grid-column: 1 / -1;
    padding: 16px 14px;
    border-color: rgba(255, 255, 255, 0.10);
}

.dvtk-mobile__quick-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 18px;
    line-height: 1;
}

.dvtk-mobile__quick-card.is-primary .dvtk-mobile__quick-icon {
    background: rgba(255, 255, 255, 0.14);
}

.dvtk-mobile__quick-content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1 1 auto;
}

.dvtk-mobile__quick-content strong {
    display: block;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    word-break: break-word;
}

.dvtk-mobile__quick-content small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.66);
    word-break: break-word;
}

.dvtk-mobile__quick-card.is-primary .dvtk-mobile__quick-content strong,
.dvtk-mobile__quick-card.is-primary .dvtk-mobile__quick-content small {
    color: #fff;
}

@media (max-width: 380px) {
    .dvtk-mobile__quick-grid {
        grid-template-columns: 1fr;
    }

    .dvtk-mobile__quick-card.is-primary {
        grid-column: auto;
    }
}