:root {
  --heading-color: #10284b;
  --body-color: #59667d;
  --accent-color: #2457d6;
  --accent-soft: #e8f0ff;
  --accent-dark: #12315c;
  --support-color: #11b6a4;
  --warm-color: #f5b23a;
  --surface-color: #ffffff;
  --surface-alt: #f6f9ff;
  --border-color: rgba(16, 40, 75, 0.12);
  --secondary-color: linear-gradient(135deg, #2457d6 0%, #11b6a4 100%);
  --shadow-soft: 0 16px 40px rgba(15, 37, 75, 0.08);
  --shadow-strong: 0 26px 60px rgba(15, 37, 75, 0.14);
}

body.v-site {
  background:
    radial-gradient(circle at top left, rgba(36, 87, 214, 0.08), transparent 25%),
    radial-gradient(circle at top right, rgba(17, 182, 164, 0.08), transparent 18%),
    linear-gradient(180deg, #f7f9fe 0%, #ffffff 16%, #f8fbff 100%);
  color: var(--body-color);
}

body.v-site .container,
body.v-site .container-fluid {
  position: relative;
  z-index: 1;
}

body.v-site h1,
body.v-site h2,
body.v-site h3,
body.v-site h4,
body.v-site h5,
body.v-site h6 {
  color: var(--heading-color);
}

body.v-site p {
  line-height: 1.8;
}

body.v-site .td_accent_color {
  color: var(--accent-color) !important;
}

body.v-site .td_height_120,
body.v-site .td_height_112 {
  height: 92px;
}

body.v-site .td_height_80 {
  height: 64px;
}

body.v-site .td_height_60,
body.v-site .td_height_50 {
  height: 40px;
}

body.v-site .td_section_subtitle_up {
  letter-spacing: 0.14em;
}

body.v-site .td_header_search_wrap {
  display: none;
}

body.v-site .td_main_header {
  padding-top: 12px;
}

body.v-site .td_site_header.td_style_1.td_type_3 {
  background-color: transparent;
}

body.v-site .td_site_header.td_style_1.td_sticky_active {
  background-color: transparent;
  box-shadow: none;
}

body.v-site .td_main_header .container-fluid {
  max-width: 1460px;
  padding: 0 18px;
}

body.v-site .td_main_header_in {
  min-height: 78px;
  padding: 0 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 34px rgba(12, 33, 73, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.v-site .td_site_header.td_style_1.td_type_3 .td_nav_list_wrap {
  background: transparent;
  box-shadow: none;
}

body.v-site .td_site_header.td_style_1 .td_main_header_left {
  gap: 16px;
}

body.v-site .td_site_header.td_style_1 .td_main_header_left .td_site_branding {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

body.v-site .td_site_header.td_style_1 .td_main_header_right {
  gap: 0;
}

body.v-site .td_site_header.td_style_1.td_type_3 .td_nav .td_nav_list > li > a {
  color: var(--heading-color);
}

body.v-site .td_site_header.td_style_1.td_type_3 .td_nav .td_nav_list > li > a:hover {
  color: var(--accent-color);
}

body.v-site .td_site_header.td_style_1.td_type_3 .td_nav_list_wrap_in {
  gap: 22px;
}

body.v-site .td_nav_list {
  gap: 10px;
  align-items: center;
}

body.v-site .td_nav_list > li {
  margin-right: 0;
}

body.v-site .td_nav_list > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
}

body.v-site .td_nav_list > li > a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2457d6 0%, #11b6a4 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

body.v-site .td_nav_list > li > a:hover {
  color: var(--accent-color);
}

body.v-site .td_nav_list > li > a.is-active,
body.v-site .td_nav_list > li > a.is-active-server {
  color: var(--accent-color);
}

body.v-site .td_nav_list > li > a:hover::after,
body.v-site .td_nav_list > li > a.is-active::after,
body.v-site .td_nav_list > li > a.is-active-server::after {
  transform: scaleX(1);
}

body.v-site .td_hamburger_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(16, 40, 75, 0.08);
  background: rgba(16, 40, 75, 0.06);
  transition: transform 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

body.v-site .td_hamburger_btn span,
body.v-site .td_hamburger_btn::before,
body.v-site .td_hamburger_btn::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--heading-color);
  transform: translateX(-50%);
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease, bottom 0.28s ease, background-color 0.28s ease;
}

body.v-site .td_hamburger_btn span {
  top: 50%;
  transform: translate(-50%, -50%);
}

body.v-site .td_hamburger_btn::before {
  top: 17px;
}

body.v-site .td_hamburger_btn::after {
  bottom: 17px;
}

body.v-site .td_hamburger_btn:hover {
  transform: translateY(-1px);
  background: rgba(16, 40, 75, 0.1);
  box-shadow: 0 10px 24px rgba(16, 40, 75, 0.1);
}

html.td_hamburger_active body.v-site .td_hamburger_btn {
  background: rgba(36, 87, 214, 0.12);
}

html.td_hamburger_active body.v-site .td_hamburger_btn span {
  opacity: 0;
}

html.td_hamburger_active body.v-site .td_hamburger_btn::before {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

html.td_hamburger_active body.v-site .td_hamburger_btn::after {
  bottom: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

body.v-site .td_side_header .td_side_header_in {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
}

body.v-site .v-side-nav {
  display: grid;
  gap: 10px;
}

body.v-site .v-side-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(36, 87, 214, 0.08);
  color: var(--heading-color);
  font-weight: 600;
}

body.v-site .v-side-nav a:hover {
  color: var(--accent-color);
  background: rgba(36, 87, 214, 0.12);
}

body.v-site .v-side-nav a.is-active,
body.v-site .v-side-nav a.is-active-server {
  color: var(--accent-color);
  background: rgba(36, 87, 214, 0.14);
  box-shadow: inset 3px 0 0 var(--accent-color);
}

body.v-site .td_page_heading {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 168px 0 108px;
  background:
    radial-gradient(circle at 14% 22%, rgba(94, 59, 238, 0.3), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(17, 182, 164, 0.26), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(36, 87, 214, 0.12), transparent 34%),
    linear-gradient(180deg, #f3f8ff 0%, #e7f1ff 42%, #f7fbff 100%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: min(100%, 1920px) auto;
}

body.v-site .td_page_heading .container {
  position: relative;
  z-index: 1;
}

body.v-site .td_page_heading .container::before,
body.v-site .td_page_heading .container::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body.v-site .td_page_heading .container::before {
  left: -54px;
  bottom: 8px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 95, 255, 0.26) 0%, rgba(124, 95, 255, 0) 68%);
  filter: blur(12px);
  opacity: 0.95;
}

body.v-site .td_page_heading .container::after {
  right: 4%;
  top: 56px;
  width: 116px;
  height: 116px;
  background-image: radial-gradient(circle, rgba(36, 87, 214, 0.26) 2px, transparent 2.4px);
  background-size: 18px 18px;
  opacity: 0.7;
}

body.v-site .td_page_heading::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 18px;
  width: 260px;
  height: 260px;
  border-radius: 40% 60% 48% 52%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, rgba(94, 59, 238, 0.18), rgba(17, 182, 164, 0.18));
  filter: blur(2px);
  opacity: 0.8;
  pointer-events: none;
}

body.v-site .td_page_heading.td_bg_filed::before {
  background:
    linear-gradient(128deg, rgba(8, 23, 59, 0.8) 0%, rgba(24, 66, 129, 0.62) 42%, rgba(17, 182, 164, 0.3) 100%),
    radial-gradient(circle at 18% 24%, rgba(136, 117, 255, 0.36), transparent 30%),
    radial-gradient(circle at 84% 20%, rgba(17, 182, 164, 0.32), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}

body.v-site .td_page_heading .td_page_heading_in {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 34px 40px 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 247, 255, 0.96) 54%, rgba(234, 250, 247, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 34px 82px rgba(12, 29, 69, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

body.v-site .td_page_heading .td_page_heading_in {
  outline: 1px solid rgba(255, 255, 255, 0.54);
}

body.v-site .td_page_heading .td_page_heading_in::before {
  content: "";
  position: absolute;
  top: -46px;
  right: -12px;
  width: 236px;
  height: 164px;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(94, 59, 238, 0.22), rgba(17, 182, 164, 0.2));
  transform: rotate(15deg);
  pointer-events: none;
}

body.v-site .td_page_heading .td_page_heading_in::after {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -72px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 59, 238, 0.18) 0%, rgba(94, 59, 238, 0) 68%);
  pointer-events: none;
}

body.v-site .td_page_heading .td_page_heading_in > * {
  position: relative;
  z-index: 1;
}

body.v-site .td_page_heading .td_page_heading_in > p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2457d6 0%, #11b6a4 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 28px rgba(36, 87, 214, 0.18);
  color: #ffffff !important;
  opacity: 1 !important;
  font-size: 14px;
  letter-spacing: 0.14em;
}

body.v-site .td_page_heading .td_page_heading_in > h1 {
  max-width: 12ch;
  margin: 12px auto 0;
  font-size: clamp(38px, 5.3vw, 64px);
  font-weight: 800;
  background: linear-gradient(135deg, #112a56 0%, #2457d6 46%, #11b6a4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
  text-shadow: 0 14px 28px rgba(16, 40, 75, 0.12);
  position: relative;
}

body.v-site .td_page_heading .td_page_heading_in > h1::after {
  content: "";
  display: block;
  width: 108px;
  height: 6px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2457d6 0%, #11b6a4 100%);
  box-shadow: 0 14px 28px rgba(36, 87, 214, 0.24);
}

body.v-site .td_page_heading .breadcrumb {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px !important;
}

body.v-site .td_page_heading .breadcrumb-item {
  display: inline-flex;
  align-items: center;
  float: none;
}

body.v-site .td_page_heading .breadcrumb,
body.v-site .td_page_heading .breadcrumb a {
  color: rgba(16, 40, 75, 0.68) !important;
}

body.v-site .td_page_heading .breadcrumb-item.active {
  color: var(--heading-color) !important;
}

body.v-site .td_page_heading .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(16, 40, 75, 0.32) !important;
  padding-right: 10px;
}

body.v-site .td_page_heading .breadcrumb a:hover {
  color: var(--secondary-color) !important;
}

body.v-site .v-page-back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2457d6 0%, #11b6a4 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 18px 34px rgba(36, 87, 214, 0.22);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

body.v-site .v-page-back:hover {
  transform: translateX(-4px);
  color: #ffffff;
  background: linear-gradient(135deg, #163fa8 0%, #149a8f 100%);
  box-shadow: 0 22px 40px rgba(36, 87, 214, 0.24);
}

body.v-site .v-page-back__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2457d6 0%, #11b6a4 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(36, 87, 214, 0.18);
}

body.v-site .td_page_heading .td_page_heading_shape_1,
body.v-site .td_page_heading .td_page_heading_shape_2,
body.v-site .td_page_heading .td_page_heading_shape_3,
body.v-site .td_page_heading .td_page_heading_shape_4,
body.v-site .td_page_heading .td_page_heading_shape_5,
body.v-site .td_page_heading .td_page_heading_shape_6 {
  z-index: 0;
  pointer-events: none;
}

body.v-site .td_page_heading .td_page_heading_shape_1 {
  left: 3%;
  top: 26%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 95, 255, 0.26) 0%, rgba(124, 95, 255, 0) 72%);
  filter: blur(10px);
  opacity: 1;
}

body.v-site .td_page_heading .td_page_heading_shape_2 {
  left: auto;
  right: 12%;
  top: 16%;
  width: 118px;
  height: 118px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(36, 87, 214, 0.24), rgba(17, 182, 164, 0.22));
  box-shadow: 0 20px 40px rgba(36, 87, 214, 0.12);
  transform: rotate(12deg);
  opacity: 1;
}

body.v-site .td_page_heading .td_page_heading_shape_3 {
  left: 8%;
  top: 56%;
  opacity: 0.42;
}

body.v-site .td_page_heading .td_page_heading_shape_3 img {
  width: 84px;
  filter: hue-rotate(-10deg) saturate(1.1);
}

body.v-site .td_page_heading .td_page_heading_shape_4 {
  left: auto;
  right: 14%;
  top: 48%;
  opacity: 0.58;
}

body.v-site .td_page_heading .td_page_heading_shape_4 img {
  width: 116px;
  filter: saturate(1.15);
}

body.v-site .td_page_heading .td_page_heading_shape_5 {
  left: auto;
  right: 6%;
  top: 24%;
  opacity: 0.34;
}

body.v-site .td_page_heading .td_page_heading_shape_5 img {
  width: 132px;
}

body.v-site .td_page_heading .td_page_heading_shape_6 {
  left: 88%;
  top: 70%;
  width: 84px;
  height: 84px;
  border: 0;
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, rgba(94, 59, 238, 0.8), rgba(17, 182, 164, 0.76));
  box-shadow: 0 18px 38px rgba(36, 87, 214, 0.18);
  opacity: 0.92;
}

body.v-site .td_footer {
  position: relative;
  overflow: hidden;
  padding-top: 44px;
  background:
    radial-gradient(circle at 16% 18%, rgba(82, 117, 255, 0.24), transparent 20%),
    radial-gradient(circle at 84% 14%, rgba(17, 182, 164, 0.18), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(98, 83, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #12274c 0%, #0a1931 100%);
}

body.v-site .td_footer::before,
body.v-site .td_footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
  opacity: 0.8;
}

body.v-site .td_footer::before {
  top: 82px;
  left: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(94, 114, 255, 0.28) 0%, rgba(94, 114, 255, 0) 70%);
}

body.v-site .td_footer::after {
  right: -90px;
  bottom: 90px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(17, 182, 164, 0.22) 0%, rgba(17, 182, 164, 0) 72%);
}

body.v-site .v-footer__shell {
  position: relative;
}

body.v-site .v-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.84fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: stretch;
}

body.v-site .v-footer__grid > * {
  min-width: 0;
}

body.v-site .td_footer_widget.v-footer__card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 30px 30px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 50px rgba(2, 10, 27, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body.v-site .td_footer_widget.v-footer__card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 100%);
}

body.v-site .td_footer_widget.v-footer__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 58px rgba(2, 10, 27, 0.24);
}

body.v-site .v-footer__card--brand {
  background:
    radial-gradient(circle at top right, rgba(87, 114, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0.04) 100%);
}

body.v-site .v-footer__card--connect {
  background:
    radial-gradient(circle at top left, rgba(17, 182, 164, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.085) 0%, rgba(255, 255, 255, 0.04) 100%);
}

body.v-site .v-footer__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.v-site .v-footer__logo {
  margin-bottom: 18px;
}

body.v-site .v-footer__logo img {
  width: min(100%, 236px);
  height: auto;
}

body.v-site .v-footer__title,
body.v-site .td_footer_widget_title.v-footer__title {
  margin-bottom: 14px;
  color: #ffffff !important;
  font-size: clamp(28px, 2.4vw, 36px);
  line-height: 1.08;
}

body.v-site .v-footer__intro,
body.v-site .v-footer__text {
  margin: 0 0 22px;
  color: rgba(232, 239, 255, 0.78);
  font-size: 16px;
  line-height: 1.85;
}

body.v-site .v-footer__contact-list,
body.v-site .v-footer__email-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.v-site .v-footer__contact-list li,
body.v-site .v-footer__email-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  position: static;
  transition: transform 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

body.v-site .v-footer__contact-list i,
body.v-site .v-footer__email-list i {
  margin-top: 0;
  position: static;
  left: auto;
  top: auto;
  font-size: 20px;
  line-height: 1;
}

body.v-site .v-footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(87, 114, 255, 0.22) 0%, rgba(17, 182, 164, 0.18) 100%);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

body.v-site .v-footer__contact-copy {
  min-width: 0;
}

body.v-site .v-footer__contact-list a,
body.v-site .v-footer__email-list a,
body.v-site .v-footer__contact-copy,
body.v-site .v-footer__contact-list li,
body.v-site .v-footer__email-list li {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.7;
}

body.v-site .v-footer__contact-copy,
body.v-site .v-footer__contact-copy a,
body.v-site .v-footer__email-list a {
  display: block;
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
  transition: color 0.28s ease, opacity 0.28s ease;
}

body.v-site .v-footer__contact-list li:hover,
body.v-site .v-footer__email-list li:hover {
  transform: translateX(6px);
  border-color: rgba(122, 143, 255, 0.18);
  background: linear-gradient(135deg, rgba(87, 114, 255, 0.12), rgba(17, 182, 164, 0.08));
  box-shadow: 0 16px 26px rgba(4, 16, 46, 0.18);
}

body.v-site .v-footer__contact-list li:hover .v-footer__contact-icon,
body.v-site .v-footer__email-list li:hover .v-footer__contact-icon {
  transform: translateY(-2px) scale(1.04);
  background: linear-gradient(135deg, rgba(87, 114, 255, 0.82) 0%, rgba(17, 182, 164, 0.66) 100%);
  box-shadow: 0 14px 22px rgba(26, 46, 109, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

body.v-site .v-footer__contact-list li:hover .v-footer__contact-copy,
body.v-site .v-footer__contact-list li:hover .v-footer__contact-copy a,
body.v-site .v-footer__email-list li:hover a {
  color: #ffffff;
  opacity: 1;
}

body.v-site .v-footer__contact-list li:hover .v-footer__contact-copy .v-contact-inline-links a,
body.v-site .v-footer__contact-list li:hover .v-footer__contact-copy .v-contact-inline-links__sep {
  color: #8fe6ff;
  opacity: 1;
  text-shadow: 0 0 18px rgba(143, 230, 255, 0.22);
}

body.v-site .v-footer__contact-copy .v-contact-inline-links a:hover,
body.v-site .v-footer__contact-copy a:hover,
body.v-site .v-footer__email-list a:hover {
  color: #8fe6ff;
  opacity: 1;
  text-shadow: 0 0 18px rgba(143, 230, 255, 0.22);
}

body.v-site .v-contact-inline-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}

body.v-site .v-contact-inline-links a {
  display: inline;
  white-space: nowrap;
}

body.v-site .v-contact-inline-links__sep {
  opacity: 0.7;
}

body.v-site .v-contact-inline-links--contact-card {
  flex-wrap: nowrap;
  gap: 4px 10px;
}

body.v-site .v-contact-inline-links--contact-card a {
  color: inherit;
  text-decoration: none;
}

body.v-site .v-contact-inline-links--contact-card a:hover {
  color: var(--accent-color);
}

body.v-site .v-footer__contact-copy .v-contact-inline-links a {
  display: inline;
}

body.v-site .v-footer__contact-list a:hover,
body.v-site .v-footer__email-list a:hover {
  color: #8fe6ff;
  opacity: 1;
  text-shadow: 0 0 18px rgba(143, 230, 255, 0.22);
}

body.v-site .v-footer__link-grid {
  display: grid;
  /* grid-template-columns: repeat(2, minmax(0, 1fr)); */
  gap: 14px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.v-site .v-footer__link-grid li {
  margin: 0;
}

body.v-site .v-footer__link-grid a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

body.v-site .v-footer__link-grid a:hover {
  color: #8fe6ff;
  transform: translateY(-3px);
  background: linear-gradient(135deg, rgba(87, 114, 255, 0.18), rgba(17, 182, 164, 0.14));
  border-color: rgba(143, 230, 255, 0.2);
  box-shadow: 0 14px 26px rgba(7, 18, 53, 0.22), 0 0 22px rgba(143, 230, 255, 0.12);
  text-shadow: 0 0 18px rgba(143, 230, 255, 0.18);
}

body.v-site .v-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: 0;
  margin-top: 6px;
}

body.v-site .v-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

body.v-site .v-footer__socials a:hover {
  color: #8fe6ff;
  transform: translateY(-3px) scale(1.04);
  background: linear-gradient(135deg, rgba(87, 114, 255, 0.22), rgba(17, 182, 164, 0.18));
  border-color: rgba(143, 230, 255, 0.22);
  box-shadow: 0 14px 26px rgba(7, 18, 53, 0.22), 0 0 24px rgba(143, 230, 255, 0.14);
  text-shadow: 0 0 16px rgba(143, 230, 255, 0.2);
}

body.v-site .td_footer_bottom.v-footer__bottom {
  margin-top: 34px;
  padding: 24px 0 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.v-site .v-footer__bottom-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  border-top: 0;
}

body.v-site .v-footer__bottom-in .td_copyright {
  margin: 0;
  color: rgba(232, 239, 255, 0.82);
}

body.v-site .v-footer__bottom-in .td_copyright:not(.v-footer__copyright) {
  display: none;
}

body.v-site .v-footer__bottom-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.v-site .v-footer__bottom-links a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.28s ease, background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, color 0.28s ease;
}

body.v-site .v-footer__bottom-links a:hover {
  color: #8fe6ff;
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(87, 114, 255, 0.18), rgba(17, 182, 164, 0.14));
  border-color: rgba(143, 230, 255, 0.2);
  box-shadow: 0 12px 22px rgba(7, 18, 53, 0.2), 0 0 18px rgba(143, 230, 255, 0.12);
  text-shadow: 0 0 16px rgba(143, 230, 255, 0.18);
}

body.v-site .v-footer .td_footer_address_widget li {
  margin-bottom: 0;
}

.v-metric-strip {
  position: relative;
  z-index: 3;
  margin: -72px auto 0;
  max-width: 1280px;
  padding: 0 18px;
}

.v-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.v-metric-card {
  position: relative;
  overflow: hidden;
  min-height: 154px;
  padding: 24px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 44px rgba(15, 37, 75, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.v-metric-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2457d6 0%, #11b6a4 100%);
}

.v-metric-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--heading-color);
  font-size: 34px;
  line-height: 1;
}

.v-metric-card span {
  display: block;
  color: var(--body-color);
  font-size: 14px;
  line-height: 1.7;
}

.v-page-band {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 28px;
  margin-bottom: 42px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 246, 255, 0.98) 100%);
  border: 1px solid rgba(16, 40, 75, 0.08);
  box-shadow: var(--shadow-soft);
}

.v-page-band h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 40px);
}

.v-page-band p {
  margin: 0;
  color: var(--body-color);
}

.v-band-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(36, 87, 214, 0.08);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v-band-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.v-band-stat {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 40, 75, 0.08);
}

.v-band-stat strong {
  display: block;
  margin-bottom: 6px;
  color: var(--heading-color);
  font-size: 28px;
  line-height: 1;
}

.v-band-stat span {
  display: block;
  color: var(--body-color);
  font-size: 14px;
  line-height: 1.65;
}

body.v-site.page-index .td_hero.td_style_1.td_hero_img_section.v-hero-carousel-section {
  position: relative;
  padding: 0;
  background: linear-gradient(180deg, #dbe8ff 0%, #eef7ff 100%);
  min-height: 100vh;
}

body.v-site.page-index .v-hero-slider,
body.v-site.page-index .v-hero-slider .slick-list,
body.v-site.page-index .v-hero-slider .slick-track,
body.v-site.page-index .v-hero-slide {
  min-height: 100vh;
  height: 100vh;
}

body.v-site.page-index .v-hero-slide {
  position: relative;
  overflow: hidden;
}

body.v-site.page-index .v-hero-slider,
body.v-site.page-index .v-hero-slider .slick-list,
body.v-site.page-index .v-hero-slider .slick-list.draggable,
body.v-site.page-index .v-hero-slider .slick-track,
body.v-site.page-index .v-hero-slide,
body.v-site.page-index .v-hero-media,
body.v-site.page-index .v-hero-image,
body.v-site.page-index .v-hero-overlay,
body.v-site.page-index .v-hero-shell,
body.v-site.page-index .v-hero-shell-visual,
body.v-site.page-index .v-hero-shell-visual-img,
body.v-site.page-index .v-hero-content {
  cursor: pointer !important;
}

body.v-site.page-index .v-hero-media {
  display: block;
  width: 100%;
  height: 100%;
}

body.v-site.page-index .v-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: brightness(1.04) saturate(1.06);
}

body.v-site.page-index .v-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(17, 182, 164, 0.16), transparent 26%),
    radial-gradient(circle at left center, rgba(36, 87, 214, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(10, 26, 58, 0.62) 0%, rgba(18, 44, 94, 0.46) 32%, rgba(72, 86, 171, 0.2) 64%, rgba(12, 31, 61, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(8, 22, 45, 0.42) 100%);
}

body.v-site.page-index .v-hero-shell {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  width: 100%;
  max-width: 1320px;
  z-index: 2;
}

body.v-site.page-index .v-hero-shell--with-image {
  justify-content: center;
}

body.v-site.page-index .v-hero-content {
  position: relative;
  max-width: 760px;
  margin-top: 86px;
  padding: 38px 40px 34px;
  text-align: center;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(33, 45, 75, 0.46), rgba(25, 38, 66, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(15, 33, 68, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 2;
}

body.v-site.page-index .v-hero-content::before {
  content: "";
  position: absolute;
  inset: auto -80px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(17, 182, 164, 0.2) 0%, rgba(17, 182, 164, 0) 70%);
  pointer-events: none;
}

body.v-site.page-index .v-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.v-site.page-index .v-hero-content h1 {
  margin: 0 0 18px;
  display: inline-block;
  color: #ffffff;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: unset;
}

body.v-site.page-index .v-hero-shell-visual {
  flex: 0 1 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

body.v-site.page-index .v-hero-shell-visual-img {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(4, 10, 24, 0.3));
}

body.v-site.page-index .v-hero-content p {
  max-width: 54ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.7vw, 18px);
  line-height: 1.82;
}

body.v-site.page-index .v-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

body.v-site.page-index .v-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s ease;
}

body.v-site.page-index .v-hero-btn--primary {
  background: linear-gradient(135deg, #2457d6 0%, #11b6a4 100%);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(36, 87, 214, 0.28);
}

body.v-site.page-index .v-hero-btn--primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

body.v-site.page-index .v-hero-btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

body.v-site.page-index .v-hero-btn--ghost:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

body.v-site.page-index .v-hero-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(7, 18, 36, 0.3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

body.v-site.page-index .v-hero-controls {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

body.v-site.page-index .v-hero-arrow,
body.v-site.page-index .v-hero-dots {
  pointer-events: auto;
}

body.v-site.page-index .v-hero-arrow {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

body.v-site.page-index .v-hero-arrow:hover {
  background: rgba(17, 182, 164, 0.22);
  transform: translateY(calc(-50% - 2px));
}

body.v-site.page-index .v-hero-dots {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  grid-column: 2;
  display: flex;
  justify-content: center;
  justify-self: center;
}

body.v-site.page-index .v-hero-dots ul {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 16px;
  list-style: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.v-site.page-index .v-hero-prev {
  left: 14px;
}

body.v-site.page-index .v-hero-next {
  right: 14px;
}

body.v-site.page-index .v-hero-dots li {
  display: flex;
}

body.v-site.page-index .v-hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  font-size: 0;
  background: rgba(255, 255, 255, 0.36);
}

body.v-site.page-index .v-hero-dots .slick-active button {
  width: 34px;
  border-radius: 999px;
  background: #ffffff;
}

body.v-site.page-index #category .container,
body.v-site.page-index #timetable .container,
body.v-site.page-index .home-feature-shell .container,
body.v-site.page-index .home-events-shell .container,
body.v-site.page-index .home-career-shell .container {
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.96));
  border: 1px solid rgba(16, 40, 75, 0.08);
  box-shadow: var(--shadow-soft);
}

body.v-site.page-index #about .container {
  padding: 0 16px;
}

body.v-site.page-index #category .container.mt-5 {
  margin-top: 28px !important;
}

body.v-site.page-index .v-programmes-section {
  position: relative;
  overflow: hidden;
}

body.v-site.page-index .v-programmes-shell {
  position: relative;
}

body.v-site.page-index .v-programmes-shell::before,
body.v-site.page-index .v-programmes-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}

body.v-site.page-index .v-programmes-shell::before {
  top: -44px;
  right: 8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(36, 87, 214, 0.14) 0%, rgba(36, 87, 214, 0) 72%);
}

body.v-site.page-index .v-programmes-shell::after {
  bottom: -40px;
  left: -12px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(17, 182, 164, 0.12) 0%, rgba(17, 182, 164, 0) 72%);
}

body.v-site.page-index .v-programmes-heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

body.v-site.page-index .v-programmes-heading .td_section_heading {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  text-align: center;
}

body.v-site.page-index .v-programmes-heading .td_section_title {
  font-size: clamp(34px, 4.3vw, 60px);
}

body.v-site.page-index .v-programmes-lead {
  max-width: 60ch;
  margin: 18px auto 0;
  color: var(--body-color);
  font-size: 17px;
  line-height: 1.8;
}

body.v-site.page-index .v-programmes-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.v-site.page-index .v-programmes-summary__item {
  min-height: 116px;
  padding: 20px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 246, 255, 0.9));
  border: 1px solid rgba(16, 40, 75, 0.08);
  box-shadow: 0 18px 36px rgba(15, 37, 75, 0.08);
}

body.v-site.page-index .v-programmes-summary__item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
}

body.v-site.page-index .v-programmes-summary__item span {
  display: block;
  color: var(--body-color);
  font-size: 14px;
  line-height: 1.6;
}

body.v-site.page-index .v-programmes-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

body.v-site.page-index .v-programme-card {
  --programme-accent: #2457d6;
  --programme-accent-soft: rgba(36, 87, 214, 0.1);
  --programme-accent-strong: rgba(36, 87, 214, 0.18);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 372px;
  padding: 20px 20px 0;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, #ffffff 34%, rgba(244, 248, 255, 0.96) 100%),
    linear-gradient(135deg, var(--programme-accent-soft), rgba(255, 255, 255, 0));
  border: 1px solid rgba(16, 40, 75, 0.08);
  box-shadow: 0 20px 46px rgba(15, 37, 75, 0.1);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

body.v-site.page-index .v-programme-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, var(--programme-accent-strong) 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%, rgba(255, 255, 255, 0.2) 100%);
  opacity: 0.82;
  pointer-events: none;
}

body.v-site.page-index .v-programme-card:hover {
  transform: translateY(-8px);
  border-color: rgba(36, 87, 214, 0.16);
  box-shadow: 0 28px 56px rgba(15, 37, 75, 0.16);
}

body.v-site.page-index .v-programme-card > * {
  position: relative;
  z-index: 1;
}

body.v-site.page-index .v-programme-card__header,
body.v-site.page-index .v-programme-card__meta,
body.v-site.page-index .v-programme-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.v-site.page-index .v-programme-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--programme-accent-soft);
  color: var(--programme-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.v-site.page-index .v-programme-card__icon,
body.v-site.page-index .v-programme-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

body.v-site.page-index .v-programme-card__icon {
  background: rgba(255, 255, 255, 0.9);
  color: var(--programme-accent);
  box-shadow: inset 0 0 0 1px rgba(16, 40, 75, 0.06);
  font-size: 18px;
}

body.v-site.page-index .v-programme-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 14px;
}

body.v-site.page-index .v-programme-card__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 4px 2px;
}

body.v-site.page-index .v-programme-card__title-wrap h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.04;
}

body.v-site.page-index .v-programme-card__subtitle {
  margin: 6px 0 0;
  color: var(--programme-accent);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  text-align: center;
}

body.v-site.page-index .v-programme-card__description {
  margin: 18px 0 0;
  color: var(--body-color);
  font-size: 15px;
  line-height: 1.78;
}

body.v-site.page-index .v-programme-card__media {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  width: calc(100% + 40px);
  min-height: 170px;
  margin: auto -20px 0;
  padding: 12px 0 0;
  overflow: hidden;
  background: #ffffff;
  border-radius: 0 0 28px 28px;
}

body.v-site.page-index .v-programme-card__media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.92) 22%,
    rgba(255, 255, 255, 0.58) 58%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

body.v-site.page-index .v-programme-card__media img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center bottom;
  filter: none;
}

body.v-site.page-index .v-programme-card__meta {
  flex-wrap: wrap;
  margin-top: 22px;
}

body.v-site.page-index .v-programme-card__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(16, 40, 75, 0.06);
}

body.v-site.page-index .v-programme-card__meta strong {
  margin-right: 6px;
  color: var(--programme-accent);
}

body.v-site.page-index .v-programme-card__footer {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  min-height: 64px;
  padding: 10px 10px 10px 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.92));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 18px 34px rgba(16, 40, 75, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  color: var(--heading-color);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

body.v-site.page-index .v-programme-card__footer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(36, 87, 214, 0.06), rgba(17, 182, 164, 0.08));
  opacity: 0.6;
  pointer-events: none;
}

body.v-site.page-index .v-programme-card__footer > * {
  position: relative;
  z-index: 1;
}

body.v-site.page-index .v-programme-card__footer > span:first-child {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding-right: 12px;
  line-height: 1.1;
}

body.v-site.page-index .v-programme-card__arrow {
  width: 44px;
  height: 44px;
  background: var(--programme-accent);
  color: #ffffff;
  box-shadow: 0 14px 26px rgba(16, 40, 75, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.v-site.page-index .v-programme-card:hover .v-programme-card__footer {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 22px 40px rgba(16, 40, 75, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body.v-site.page-index .v-programme-card:hover .v-programme-card__arrow {
  transform: translateX(4px);
  box-shadow: 0 18px 30px rgba(16, 40, 75, 0.18);
}

body.v-site.page-index .v-programme-card--pre-ol {
  --programme-accent: #984be0;
  --programme-accent-soft: rgba(63, 91, 216, 0.12);
  --programme-accent-strong: rgba(63, 91, 216, 0.2);
}

body.v-site.page-index .v-programme-card--ol {
  --programme-accent: #1f78c8;
  --programme-accent-soft: rgba(31, 120, 200, 0.11);
  --programme-accent-strong: rgba(31, 120, 200, 0.18);
}

body.v-site.page-index .v-programme-card--al {
  --programme-accent: #0f8d86;
  --programme-accent-soft: rgba(15, 141, 134, 0.12);
  --programme-accent-strong: rgba(15, 141, 134, 0.18);
}

body.v-site.page-index .v-programme-card--other-courses {
  --programme-accent: #d6811f;
  --programme-accent-soft: rgba(214, 129, 31, 0.12);
  --programme-accent-strong: rgba(214, 129, 31, 0.18);
}

body.v-site.page-index .v-about-section {
  position: relative;
  overflow: hidden;
}

body.v-site.page-index .v-about-panel {
  position: relative;
  overflow: hidden;
}

body.v-site.page-index .v-about-panel::before,
body.v-site.page-index .v-about-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body.v-site.page-index .v-about-panel::before {
  inset: 0 0 0 auto;
  width: 44%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(249, 251, 255, 0.5) 28%, rgba(249, 251, 255, 0.92) 100%);
  z-index: 1;
}

body.v-site.page-index .v-about-panel::after {
  top: -70px;
  left: 24%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(36, 87, 214, 0.08) 0%, rgba(36, 87, 214, 0) 72%);
  z-index: 0;
}

body.v-site.page-index .v-about-stage {
  position: relative;
  z-index: 2;
}

body.v-site.page-index .v-about-copy-col {
  position: relative;
}

body.v-site.page-index .v-about-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 38px 40px 42px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(250, 252, 255, 0.72) 100%);
  border: 1px solid rgba(16, 40, 75, 0.08);
  box-shadow: 0 26px 56px rgba(15, 37, 75, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.v-site.page-index .v-about-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(36, 87, 214, 0.08) 0%, rgba(36, 87, 214, 0) 26%);
  pointer-events: none;
}

body.v-site.page-index .v-about-content .td_section_heading {
  position: relative;
  z-index: 1;
  margin-bottom: 0 !important;
}

body.v-site.page-index .v-about-content .td_section_title {
  font-size: clamp(34px, 3.7vw, 56px);
  line-height: 1.18;
}

body.v-site.page-index .v-about-copy {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: var(--body-color);
  font-size: 17px;
  line-height: 1.9;
}

body.v-site.page-index .v-about-copy--secondary {
  margin-top: 20px;
}

body.v-site.page-index .v-about-highlights {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.v-site.page-index .v-about-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(36, 87, 214, 0.08);
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
}

body.v-site.page-index .v-about-actions {
  position: relative;
  z-index: 2;
  margin-top: 34px;
}

body.v-site.page-index .v-about-actions--center {
  display: flex;
  justify-content: center;
}

body.v-site.page-index .v-about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 640px;
  margin-right: -64px;
}

body.v-site.page-index .v-about-visual::before {
  content: "";
  position: absolute;
  inset: 4% -6% 0 0;
  background: radial-gradient(circle at left center, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.7) 18%, rgba(255, 255, 255, 0) 42%);
  pointer-events: none;
  z-index: 1;
}

body.v-site.page-index .v-about-visual__img {
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: 620px;
  max-height: 760px;
  object-fit: contain;
  object-position: right center;
  opacity: 0.94;
}

body.v-site.page-index .v-about-play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  background: rgba(72, 87, 216, 0.96);
  color: #ffffff;
  box-shadow: 0 22px 34px rgba(72, 87, 216, 0.28);
}

body.v-site.page-index .v-about-play:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

body.v-site.page-index .v-about-play__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

body.v-site.page-index .v-about-play__label {
  font-size: 15px;
  font-weight: 700;
}

body.v-site.page-index .td_about.td_style_1 {
  padding: 42px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.96));
  border: 1px solid rgba(16, 40, 75, 0.08);
  box-shadow: var(--shadow-soft);
}

body.v-site.page-index .td_iconbox.td_style_2 .td_iconbox_in {
  min-height: 220px;
  padding: 28px 24px;
  border-radius: 26px;
  border: 1px solid rgba(16, 40, 75, 0.06);
  box-shadow: 0 14px 34px rgba(15, 37, 75, 0.06);
}

body.v-site.page-index .td_iconbox.td_style_2 .td_iconbox_icon:empty {
  display: none;
}

body.v-site.page-index .td_tabs .td_tab_links {
  gap: 10px;
  justify-content: center;
}

body.v-site.page-index .td_tabs .td_tab_links li a {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(36, 87, 214, 0.08);
  color: var(--heading-color);
}

body.v-site.page-index .td_tabs .td_tab_links li.active a {
  background: var(--secondary-color);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(36, 87, 214, 0.18);
}

body.v-site .tt-table-wrap,
body.v-site .cat-card,
body.v-site .gl-card,
body.v-site .teacher-card,
body.v-site .v-event-card,
body.v-site .v-contact-card,
body.v-site .v-profile-panel,
body.v-site .v-profile-card {
  box-shadow: var(--shadow-soft);
}

body.v-site .cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px 28px 26px;
  border-radius: 26px;
  border: 1px solid rgba(16, 40, 75, 0.08);
  background:
    radial-gradient(circle at top right, rgba(94, 59, 238, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 58%, #f3f8ff 100%);
  box-shadow: 0 18px 38px rgba(11, 25, 54, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

body.v-site .cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background:
    radial-gradient(circle at 8% 0%, rgba(36, 87, 214, 0.08), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(17, 182, 164, 0.08), transparent 24%);
  transform: none;
}

body.v-site .cat-card::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 24px;
  width: 104px;
  height: 104px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(94, 59, 238, 0.14), rgba(17, 182, 164, 0.1));
  opacity: 0.78;
  transform: rotate(12deg);
  pointer-events: none;
}

body.v-site .cat-card > * {
  position: relative;
  z-index: 1;
}

body.v-site .cat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(36, 87, 214, 0.14);
  box-shadow: 0 28px 56px rgba(12, 29, 69, 0.14);
}

body.v-site .cat-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(16, 40, 75, 0.08);
}

body.v-site .cat-card-header::after {
  display: none;
}

body.v-site .cat-card-heading {
  display: grid;
  gap: 14px;
  min-width: 0;
}

body.v-site .cat-card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(36, 87, 214, 0.08);
  color: #61708a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.v-site .cat-card-title {
  margin: 0;
  font-size: clamp(31px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: #10284b;
  text-wrap: balance;
}

body.v-site .cat-card-title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2457d6 0%, #11b6a4 100%);
  box-shadow: 0 8px 18px rgba(36, 87, 214, 0.18);
}

body.v-site .cat-card-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 22px;
  background: linear-gradient(135deg, #577ddb 0%, #51d1c2 100%);
  color: #ffffff;
  box-shadow: 0 18px 28px rgba(36, 87, 214, 0.2);
}

body.v-site .cat-card-orb i {
  font-size: 20px;
}

body.v-site .cat-card-desc {
  margin: 0 0 20px;
  color: rgba(16, 40, 75, 0.68);
  font-size: 16px;
  line-height: 1.78;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

body.v-site .cat-card-highlight {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 40, 75, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.v-site .cat-card-highlight strong {
  font-size: 17px;
  color: var(--heading-color);
  line-height: 1.2;
}

body.v-site .cat-card-highlight span {
  color: rgba(16, 40, 75, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

body.v-site .cat-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(16, 40, 75, 0.08);
}

body.v-site .cat-card-meta {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(36, 87, 214, 0.08);
  color: rgba(16, 40, 75, 0.78);
  font-size: 13px;
  font-weight: 700;
  opacity: 1;
}

body.v-site .cat-card-meta i {
  color: var(--secondary-color);
}

body.v-site .cat-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(36, 87, 214, 0.12), rgba(17, 182, 164, 0.16));
  color: #10284b;
  font-size: 14px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(36, 87, 214, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

body.v-site .cat-card-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(36, 87, 214, 0.14);
}

body.v-site .gallery-btn {
  background: var(--secondary-color);
  box-shadow: 0 14px 28px rgba(36, 87, 214, 0.2);
}

body.v-site .gl-filter-wrap {
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 40, 75, 0.08);
  box-shadow: var(--shadow-soft);
}

body.v-site .gl-card {
  border-radius: 22px;
}

body.v-site .gl-card-info {
  padding: 22px;
}

body.v-site .gl-filter-btn.active {
  background: var(--secondary-color);
  border-color: transparent;
}

body.v-site .teacher-card {
  border-radius: 24px;
  border: 1px solid rgba(16, 40, 75, 0.08);
}

body.v-site .teacher-card__button {
  background: var(--secondary-color) !important;
  border-radius: 14px !important;
}

body.v-site .v-event-card {
  border-radius: 22px !important;
  border: 1px solid rgba(16, 40, 75, 0.08);
}

body.v-site .v-contact-card,
body.v-site .v-profile-panel,
body.v-site .v-profile-card {
  border-radius: 22px;
  border: 1px solid rgba(16, 40, 75, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

body.v-site .v-profile-panel__hero {
  background: linear-gradient(135deg, #16326a 0%, #2457d6 55%, #11b6a4 100%);
}

body.v-site .v-profile-highlight {
  background: linear-gradient(135deg, #16326a 0%, #2457d6 55%, #11b6a4 100%) !important;
  box-shadow: var(--shadow-strong);
}

body.v-site .v-profile-chip {
  background: rgba(36, 87, 214, 0.1);
  color: var(--secondary-color);
}

body.v-site .v-profile-soft-card {
  background: linear-gradient(180deg, #f5f9ff 0%, #edf5ff 100%);
}

body.v-site .v-profile-action .td_btn_in {
  background: linear-gradient(135deg, #16326a 0%, #2457d6 55%, #11b6a4 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 34px rgba(36, 87, 214, 0.18);
}

body.v-site .v-profile-action--light .td_btn_in {
  background: rgba(255, 255, 255, 0.97) !important;
  color: #16326a !important;
  box-shadow: 0 16px 30px rgba(8, 23, 59, 0.16);
}

body.v-site .v-batch-card {
  height: 100%;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.11) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.v-site .v-batch-entry {
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

body.v-site .v-batch-entry__temp {
  color: #d7fff7;
}

body.v-site .v-batch-pill {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body.v-site .v-contact-social {
  background: linear-gradient(135deg, #16326a 0%, #2457d6 55%, #11b6a4 100%) !important;
}

@media (max-width: 1199px) {
  .v-page-band {
    grid-template-columns: 1fr;
  }

  .v-metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.v-site .v-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.v-site .v-footer__card--brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1200px) {
  body.v-site .v_header_center_brand,
  body.v-site .td_hamburger_btn {
    display: none;
  }
}

@media (max-width: 991px) {
  body.v-site .td_page_heading::after {
    width: 170px;
    height: 170px;
    right: 4%;
  }

  body.v-site .td_main_header_center {
    display: none;
  }

  body.v-site .td_site_header.td_style_1 .td_main_header_right {
    margin-left: auto;
    padding-right: 0;
    gap: 0;
  }

  body.v-site .td_page_heading {
    padding: 154px 0 92px;
  }

  body.v-site .td_page_heading .td_page_heading_in {
    padding: 28px 26px;
  }

  body.v-site .td_page_heading .td_page_heading_in::before {
    width: 148px;
    height: 148px;
  }

  body.v-site .td_page_heading .td_page_heading_in::after {
    width: 170px;
    height: 170px;
  }

  body.v-site .td_page_heading .container::before {
    width: 150px;
    height: 150px;
    left: -24px;
    bottom: 16px;
  }

  body.v-site .td_page_heading .container::after {
    width: 82px;
    height: 82px;
    right: 6%;
    top: 42px;
    background-size: 14px 14px;
  }

  body.v-site .td_page_heading .td_page_heading_shape_2 {
    right: 6%;
    top: 14%;
    width: 92px;
    height: 92px;
  }

  body.v-site .td_page_heading .td_page_heading_shape_4 {
    right: 8%;
    top: 58%;
  }

  body.v-site .td_page_heading .td_page_heading_shape_6 {
    left: auto;
    right: 5%;
    top: auto;
    bottom: 10%;
    width: 68px;
    height: 68px;
  }

  body.v-site .td_main_header_in {
    min-height: 76px;
    padding: 0 14px;
  }

  body.v-site .td_main_header_left .td_site_branding img {
    height: 46px !important;
  }

  body.v-site .td_hamburger_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    margin-right: 0;
    color: var(--heading-color);
    background: rgba(16, 40, 75, 0.08);
  }

  body.v-site .td_hamburger_btn span,
  body.v-site .td_hamburger_btn::before,
  body.v-site .td_hamburger_btn::after {
    width: 20px;
  }

  body.v-site .td_hamburger_btn span {
    transform: translate(-50%, -50%);
  }

  body.v-site .td_hamburger_btn::before {
    top: 16px;
  }

  body.v-site .td_hamburger_btn::after {
    bottom: 16px;
  }

  body.v-site .td_side_header {
    z-index: 1200;
  }

  body.v-site .td_side_header .td_side_header_in {
    width: min(100%, 380px);
    padding: 88px 24px 28px;
    box-shadow: -12px 0 32px rgba(10, 24, 54, 0.18);
  }

  body.v-site .td_side_header .td_side_header_heading {
    font-size: clamp(28px, 5vw, 36px);
  }

  body.v-site .td_side_header .td_side_header_title {
    font-size: 24px;
  }

  body.v-site .td_close {
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    color: var(--heading-color);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(16, 40, 75, 0.12);
    box-shadow: 0 12px 24px rgba(10, 24, 54, 0.14);
  }

  body.v-site .td_site_header.td_style_1 .td_nav_list_wrap {
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  body.v-site .td_nav_list {
    justify-content: center;
  }

  body.v-site.page-index #category .container,
  body.v-site.page-index #timetable .container,
  body.v-site.page-index .home-feature-shell .container,
  body.v-site.page-index .home-events-shell .container,
  body.v-site.page-index .home-career-shell .container,
  body.v-site.page-index .td_about.td_style_1,
  .v-page-band {
    padding: 28px;
  }

  body.v-site.page-index .v-programmes-heading {
    align-items: center;
  }

  body.v-site.page-index .v-programmes-summary {
    max-width: 720px;
  }

  body.v-site.page-index .v-programmes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.v-site.page-index .v-about-content {
    padding: 30px;
  }

  body.v-site.page-index .v-about-visual {
    min-height: 0;
    margin-right: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  body.v-site.page-index .v-about-play {
    position: static;
    margin-top: 20px;
    align-self: center;
  }

  body.v-site.page-index .v-hero-content {
    max-width: 680px;
    margin-top: 0;
    padding: 32px 30px 30px;
  }

  body.v-site.page-index .v-hero-controls {
    inset: 0;
  }

  body.v-site.page-index .v-hero-prev {
    left: 16px;
  }

  body.v-site.page-index .v-hero-next {
    right: 16px;
  }

  body.v-site.page-index .v-hero-dots {
    bottom: 34px;
  }

  body.v-site .v-footer__grid {
    grid-template-columns: 1fr;
  }

  body.v-site .v-footer__bottom-in {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  body.v-site .td_height_120,
  body.v-site .td_height_112 {
    height: 72px;
  }

  body.v-site .td_height_80 {
    height: 52px;
  }

  body.v-site .td_height_60,
  body.v-site .td_height_50 {
    height: 30px;
  }

  body.v-site .td_page_heading {
    padding: 136px 0 76px;
  }

  body.v-site .td_page_heading .td_page_heading_in {
    border-radius: 24px;
  }

  body.v-site .td_page_heading .td_page_heading_in > p {
    width: 100%;
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  body.v-site .td_page_heading .td_page_heading_in > h1::after {
    width: 82px;
    height: 5px;
    margin-top: 14px;
  }

  body.v-site .v-page-back {
    width: 100%;
    justify-content: center;
    padding-right: 14px;
  }

  .v-metric-strip {
    margin-top: -28px;
    padding: 0 12px;
  }

  .v-metric-grid,
  .v-band-stats {
    grid-template-columns: 1fr;
  }

  .v-metric-card,
  .v-page-band {
    padding: 22px;
  }

  body.v-site .td_footer_widget.v-footer__card {
    padding: 24px 22px;
    border-radius: 24px;
  }

  body.v-site .v-footer__link-grid {
    grid-template-columns: 1fr;
  }

  body.v-site .v-footer__socials a,
  body.v-site .v-footer__bottom-links a {
    width: 100%;
    justify-content: center;
  }

  body.v-site .v-footer__bottom-in {
    align-items: stretch;
    text-align: center;
  }

  body.v-site .cat-card {
    padding: 24px 20px 20px;
    border-radius: 22px;
  }

  body.v-site .cat-card-header {
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  body.v-site .cat-card-orb {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  body.v-site .cat-card-title {
    font-size: 28px;
  }

  body.v-site .cat-card-title::after {
    width: 56px;
    margin-top: 12px;
  }

  body.v-site .cat-card-highlight {
    padding: 14px 15px;
    border-radius: 18px;
  }

  body.v-site .cat-card-footer {
    align-items: stretch;
  }

  body.v-site .cat-card-meta,
  body.v-site .cat-card-btn {
    width: 100%;
    justify-content: center;
  }

  body.v-site.page-index .td_hero.td_style_1.td_hero_img_section.v-hero-carousel-section,
  body.v-site.page-index .v-hero-slider,
  body.v-site.page-index .v-hero-slider .slick-list,
  body.v-site.page-index .v-hero-slider .slick-track,
  body.v-site.page-index .v-hero-slide {
    min-height: 100svh;
    height: 100svh;
  }

  body.v-site.page-index .v-hero-shell {
    padding: 112px 16px 96px;
    max-width: none;
    align-items: center;
    justify-content: center;
  }

  body.v-site.page-index .v-hero-shell--with-image {
    align-items: center;
  }

  body.v-site.page-index .v-hero-content {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 24px 20px 24px;
    border-radius: 24px;
  }

  body.v-site.page-index .v-hero-eyebrow {
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  body.v-site.page-index .v-hero-content h1 {
    display: block;
    width: auto;
    max-width: 11ch;
    font-size: clamp(34px, 9vw, 48px);
    text-wrap: balance;
  }

  body.v-site.page-index .v-hero-shell-visual {
    display: flex;
    width: 100%;
    flex-basis: auto;
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
    justify-content: center;
  }

  body.v-site.page-index .v-hero-shell-visual-img {
    width: min(100%, 300px);
    max-height: 48svh;
  }

  body.v-site.page-index .v-hero-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  body.v-site.page-index .v-hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  body.v-site.page-index .v-hero-btn {
    width: 100%;
  }

  body.v-site.page-index .v-hero-caption {
    margin-top: 18px;
    font-size: 13px;
  }

  body.v-site.page-index .v-hero-controls {
    inset: 0;
    display: block;
    padding: 0;
  }

  body.v-site.page-index .v-hero-arrow {
    display: inline-flex;
    width: 46px;
    height: 46px;
    top: 50%;
  }

  body.v-site.page-index .v-hero-dots {
    bottom: 28px;
  }

  body.v-site.page-index .v-hero-dots ul {
    padding: 8px 12px;
  }

  body.v-site.page-index #category .container,
  body.v-site.page-index #timetable .container,
  body.v-site.page-index .home-feature-shell .container,
  body.v-site.page-index .home-events-shell .container,
  body.v-site.page-index .home-career-shell .container,
  body.v-site.page-index .td_about.td_style_1 {
    padding: 22px;
    border-radius: 24px;
  }

  body.v-site.page-index .v-programmes-heading .td_section_title {
    font-size: clamp(30px, 9vw, 44px);
  }

  body.v-site.page-index .v-programmes-lead {
    font-size: 15px;
    margin-top: 14px;
  }

  body.v-site.page-index .v-programmes-summary {
    grid-template-columns: 1fr;
  }

  body.v-site.page-index .v-programmes-summary__item {
    min-height: 0;
  }

  body.v-site.page-index .v-programmes-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 28px;
  }

  body.v-site.page-index .v-about-content {
    padding: 24px 22px;
    border-radius: 24px;
  }

  body.v-site.page-index .v-about-copy {
    font-size: 15px;
    line-height: 1.82;
  }

  body.v-site.page-index .v-about-highlights {
    margin-top: 22px;
  }

  body.v-site.page-index .v-about-highlights span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  body.v-site.page-index .v-about-actions {
    margin-top: 24px;
  }

  body.v-site.page-index .v-about-actions .gallery-btn {
    justify-content: center;
    width: 100%;
  }

  body.v-site.page-index .v-about-visual {
    min-height: 0;
    justify-content: center;
    margin-top: 8px;
  }

  body.v-site.page-index .v-about-visual::before {
    inset: 6% 0 0 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.18) 52%, rgba(255, 255, 255, 0) 78%);
  }

  body.v-site.page-index .v-about-visual__img {
    max-width: 100%;
    max-height: 420px;
    object-position: center;
  }

  body.v-site.page-index .v-about-play {
    margin-top: 18px;
    align-self: center;
  }

  body.v-site.page-index .v-programme-card {
    min-height: 338px;
    padding: 16px 16px 0;
    border-radius: 24px;
  }

  body.v-site.page-index .v-programme-card__body {
    margin-top: 12px;
  }

  body.v-site.page-index .v-programme-card__title-wrap h3 {
    font-size: clamp(23px, 6.2vw, 30px);
  }

  body.v-site.page-index .v-programme-card__description {
    font-size: 14px;
    line-height: 1.72;
  }

  body.v-site.page-index .v-programme-card__media {
    width: calc(100% + 32px);
    min-height: 148px;
    margin: auto -16px 0;
    padding: 10px 0 0;
  }

  body.v-site.page-index .v-programme-card__media img {
    width: 100%;
  }

  body.v-site.page-index .v-programme-card__footer {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 56px;
    padding: 8px 8px 8px 14px;
    font-size: 14px;
    border-radius: 20px;
  }

  body.v-site .gl-filter-wrap {
    padding: 12px;
  }

  body.v-site .gl-filter-btn {
    width: 100%;
    justify-content: center;
  }
}
