﻿:root {
  --color-primary: #002145;
  --color-secondary: #bf0d3e;
  --color-background: #f7f7f7;
  --color-text: #1f2937;
  --color-surface: #ffffff;
  --color-border: rgba(15, 23, 42, 0.08);
  --color-topbar-bg: #3b2873;
  --color-topbar-text: #fdfdff;
  --color-footer-bg: #050505;
  --color-footer-heading: #c9a646;
  --font-family-base: Poppins;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  background: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

button, input, textarea {
  font-family: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-tagline {
  display: none;
}

.header-top-bar {
  background: var(--color-topbar-bg);
  color: var(--color-topbar-text);
  font-size: 0.85rem;
}

.header-top-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.55rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.header-top-link {
  font-weight: 600;
  color: inherit;
}

.header-top-link--primary {
  background: #f4f1ff;
  color: var(--color-topbar-bg);
  padding: 0.35rem 0.95rem;
  border-radius: 999px;
}

.header-utility-nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.utility-link {
  font-weight: 600;
  opacity: 0.9;
}

.utility-link--primary {
  background: #f4f1ff;
  color: var(--color-topbar-bg);
  padding: 0.35rem 1rem;
  border-radius: 999px;
}

.utility-link--outlined {
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.legacy-site-header {
  background: var(--color-surface);
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
  position: relative;
  z-index: 30;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: #111827;
}

.brand-link--logo {
  padding: 0.25rem 0;
}

.brand-logo {
  display: block;
  height: 48px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1 1 auto;
}

.legacy-site-nav {
  flex: 1 1 auto;
}

.legacy-site-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.legacy-nav-item {
  position: relative;
}

.legacy-nav-item.has-children {
  position: static;
}

.legacy-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 1rem;
  color: inherit;
  padding: 0.25rem 0;
  border-bottom: 3px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.legacy-nav-label {
  position: relative;
}

.legacy-nav-caret {
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: 0.2rem;
  transition: transform 0.2s ease;
}

.legacy-nav-link:hover, .legacy-nav-item.is-open > .legacy-nav-link {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

.legacy-nav-item.is-open > .legacy-nav-link .legacy-nav-caret {
  transform: rotate(-135deg);
}

.legacy-nav-submenu {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.legacy-nav-submenu .legacy-nav-link {
  border: none;
  font-size: 0.95rem;
}

.legacy-nav-item:hover > .legacy-nav-submenu {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 0.5rem);
  background: var(--color-surface);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  min-width: 220px;
  z-index: 45;
}

.legacy-mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.75rem);
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.22);
  padding: 2.5rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 40;
}

.legacy-mega-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.legacy-mega-columns {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.legacy-mega-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legacy-mega-heading {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.legacy-mega-summary {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
}

.legacy-mega-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.legacy-mega-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #111827;
  padding-right: 0.25rem;
}

.legacy-mega-link::after {
  content: "\2197";
  font-size: 0.85rem;
  color: var(--color-secondary);
  margin-left: 0.4rem;
}

.legacy-mega-link:hover {
  color: var(--color-secondary);
}

.legacy-mega-link--single {
  font-weight: 600;
}

.legacy-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 20;
}

.legacy-site-header.nav-open .legacy-nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
}

.header-search input[type="search"] {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  padding: 0.2rem 0.4rem;
  min-width: 10rem;
}

.header-search input[type="search"]:focus {
  outline: none;
}

.header-search-submit {
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.header-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  color: #111827;
  font-weight: 600;
  cursor: pointer;
}

.header-search-button--icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: #f1f5f9;
}

.header-search-icon {
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.header-search-icon::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 0.2rem;
  background: currentColor;
  border-radius: 999px;
  bottom: -0.35rem;
  right: -0.1rem;
  transform: rotate(45deg);
}

.header-cta {
  background: var(--color-secondary);
  color: #fff;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(191, 13, 62, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(191, 13, 62, 0.4);
}

.locale-switcher {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
}

.locale-link {
  color: #4b5563;
  font-weight: 600;
}

.locale-link:hover {
  color: var(--color-secondary);
}

.site-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
}

.hero {
  padding: 4rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.25);
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

.hero p {
  max-width: 540px;
  font-size: 1.1rem;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: #0f172a;
  color: #fff;
  margin: 0 0 3rem;
  min-height: 420px;
  box-shadow: 0 35px 78px rgba(15, 23, 42, 0.35);
}

.hero-slider__track {
  display: flex;
  height: 100%;
  width: 100%;
  transition: transform 0.6s ease;
}

.hero-slider__slide {
  position: relative;
  min-width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-slider__media {
  position: absolute;
  inset: 0;
}

.hero-slider__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.4) 60%, rgba(17, 24, 39, 0.1) 100%);
}

.hero-slider__content {
  position: relative;
  z-index: 2;
  padding: 4.5rem 4rem;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-slider__content--center {
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.hero-slider__content--right {
  margin-left: auto;
  align-items: flex-end;
  text-align: right;
}

.hero-slider__accent {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.hero-slider__title {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-slider__subtitle {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 500;
  opacity: 0.9;
}

.hero-slider__description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
}

.hero-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-slider__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-secondary);
  color: #fff;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 24px 44px rgba(191, 13, 62, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-slider__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 52px rgba(191, 13, 62, 0.55);
}

.hero-slider__indicators {
  position: absolute;
  left: 4rem;
  bottom: 2.5rem;
  display: flex;
  gap: 0.75rem;
  z-index: 4;
}

.hero-slider__indicator {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-slider__indicator.is-active {
  background: #fff;
  border-color: #fff;
  width: 36px;
}

.hero-slider__controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 1.5rem;
  z-index: 4;
}

.hero-slider__control {
  pointer-events: auto;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 23, 42, 0.45);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.hero-slider__control:hover {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.7);
  transform: scale(1.05);
}

.hero-slider__control-icon {
  font-size: 1.35rem;
  line-height: 1;
}

.site-footer {
  background: var(--color-footer-bg);
  color: #f5f5f5;
  padding: 4rem 2.5rem 2.5rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: flex-start;
}

.footer-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-brand-logo {
  display: block;
  width: auto;
  height: 42px;
  margin-bottom: 0.75rem;
}

.footer-description {
  margin: 0;
  opacity: 0.85;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.95rem;
}

.footer-contact-link {
  color: inherit;
  font-weight: 600;
}

.footer-columns {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-heading {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-footer-heading);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: #f5f5f5;
  opacity: 0.85;
  font-weight: 500;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-social-link:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.footer-meta {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.65;
  display: grid;
  gap: 0.35rem;
}

.cms-entry {
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.12);
  padding: 3.5rem;
  margin: 0 auto 3.5rem;
  max-width: 920px;
}

.cms-entry--post {
  border-top: 6px solid var(--color-secondary);
}

.cms-entry__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.cms-entry__title {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: #101828;
}

.cms-entry__meta {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.55);
}

.cms-entry__summary {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(15, 23, 42, 0.75);
}

.cms-entry__cover {
  margin: 0 0 2rem;
}

.cms-entry__cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.16);
}

.cms-entry__body {
  color: #1f2937;
  font-size: 1.05rem;
  line-height: 1.85;
}

.cms-entry__body > *:last-child {
  margin-bottom: 0;
}

.rich-text-content img {
  max-width: 100%;
  border-radius: 1.25rem;
  margin: 2rem 0;
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.18);
}

.rich-text-content h2 {
  margin-top: 2.5rem;
  font-size: 1.85rem;
  color: #0f172a;
}

.cms-entry__blocks {
  margin-top: 3rem;
  display: grid;
  gap: 2.75rem;
}
.cms-entry__blocks--no-content {
  margin-top: 0;
}

.ku-page-detail {
  padding: 12px 0 56px;
  background: #edf0f5;
}

.ku-page-detail__container {
  max-width: 100%;
  padding: 0 80px;
}

.ku-page-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 0;
  align-items: start;
}

.ku-page-detail__main {
  min-width: 0;
}

.ku-page-detail__article {
  margin: 0;
}

.ku-page-detail__content {
  color: #2f3748;
  font-size: 16px;
  line-height: 1.6;
}

.ku-page-detail__content p {
  margin: 0 0 18px;
  font-size: 16px;
  line-height: 1.58;
}

.ku-page-detail__content img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 0 20px;
  border-radius: 0;
  box-shadow: none;
}

.ku-page-detail__sidebar {
  min-width: 0;
  position: sticky;
  top: 100px;
  padding: 0 0 0 24px;
}
.ku-page-detail__mobile-menu-bar { display: none; }
.ku-page-detail__drawer-overlay { display: none; }

.ku-page-detail__side-menu {
  border-left: 4px solid #8950fc;
  background: #f5f7f9;
}

.ku-page-detail__side-link {
  display: block;
  padding: 16px 20px;
  color: #464e5f;
  font-size: 16px;
  line-height: 1.35;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.ku-page-detail__side-link:last-child { border-bottom: none; }
.ku-page-detail__side-link.is-active { background: rgba(137,80,252,0.15); color: #8950fc; font-weight: 600; }
.ku-page-detail__side-link:hover { color: #8950fc; background: rgba(137,80,252,0.08); }

@media (max-width: 1024px) {
  .ku-page-detail__layout { grid-template-columns: 1fr; }
  .ku-page-detail__sidebar {
    position: fixed;
    top: 0; left: -320px; bottom: 0;
    width: 280px;
    padding: 0;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  }
  .ku-page-detail__sidebar.is-open { left: 0; }
  .ku-page-detail__mobile-menu-bar {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  .ku-page-detail__open-sidebar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #8950fc;
    border-radius: 4px;
    background: transparent;
    color: #8950fc;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    cursor: pointer;
    font-family: inherit;
  }
  .ku-page-detail__drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 9998;
  }
  .ku-page-detail__drawer-overlay.is-open { display: block; }
}

.ku-news-detail {
  padding: 36px 0 64px;
  background: #edf0f5;
}

.ku-news-detail__container {
  max-width: 1620px;
  margin: 0 auto;
  padding: 0 32px;
}

.ku-news-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 26px;
  align-items: start;
}

.ku-news-detail__main {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.ku-news-detail__article {
  background: #ffffff;
  border-radius: 10px;
  padding: 34px 42px;
}

.ku-news-detail__title {
  margin: 0 0 28px;
  font-size: clamp(1.8rem, 1.65vw, 2.95rem) !important;
  line-height: 1.12;
  color: #2f2f2f;
}

.ku-news-detail__cover {
  margin: 0 0 28px;
}

.ku-news-detail__cover img {
  width: 100%;
  border-radius: 8px;
  display: block;
  max-height: 720px;
  object-fit: cover;
}

.ku-news-detail__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #d8c9ff;
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 28px;
}

.ku-news-detail__published {
  color: #747484;
  font-size: 14px;
}

.ku-news-detail__category {
  font-size: 13px;
  color: #7d57f5;
  background: #f5f1ff;
  border-radius: 999px;
  padding: 5px 12px;
}

.ku-news-detail__content {
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.7;
}

.ku-news-detail__sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 20px;
  width: 100%;
}

.ku-news-detail__panel {
  background: #ffffff;
  border-radius: 10px;
  padding: 26px 24px;
  width: 100%;
  box-sizing: border-box;
}

.ku-news-detail__panel-title {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 1.28vw, 2.35rem) !important;
  line-height: 1;
  color: #2f2f2f;
  border-bottom: 1px solid #ececf2;
  padding-bottom: 10px;
}

.ku-news-detail__search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ku-news-detail__search-input {
  flex: 1 1 auto;
  height: 48px;
  border-radius: 6px;
  border: 1px solid #e2e5ec;
  padding: 0 14px;
}

.ku-news-detail__search-btn {
  border: none;
  border-radius: 8px;
  height: 48px;
  padding: 0 20px;
  background: #a6192e;
  color: #fff;
  font-weight: 600;
}

.ku-news-detail__category-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  max-height: 300px;
  overflow-y: auto;
}

.ku-news-detail__category-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #404353;
  font-size: 13px;
}

.ku-news-detail__category-list a {
  color: inherit;
  text-decoration: none;
}

.ku-news-detail__category-list a:hover {
  color: #a6192e;
}

.ku-news-detail__latest {
  display: grid;
  gap: 12px;
}

.ku-news-detail__latest-category {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
}

.ku-news-detail__latest-category a {
  color: #7d57f5;
  text-decoration: none;
}

.ku-news-detail__latest-item {
  margin: -6px 0 8px;
  color: #2f2f2f;
  font-size: 12px;
  line-height: 1.45;
}

.ku-news-detail__latest-item a {
  color: inherit;
  text-decoration: none;
}

.ku-news-detail__related {
  margin-top: 0;
  background: #ffffff;
  border-radius: 10px;
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  gap: 24px;
  padding: 22px;
  max-width: 100%;
  box-sizing: border-box;
}

.ku-news-detail__related-image {
  display: block;
  width: 100%;
}

.ku-news-detail__related-image img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.ku-news-detail__related-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.ku-news-detail__related-title {
  margin: 0;
  font-size: clamp(1.45rem, 1.2vw, 2.1rem) !important;
  line-height: 1.2;
  color: #2f2f2f;
}

.ku-news-detail__related-summary {
  margin: 0;
  color: #464e5f;
  font-size: 14px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ku-news-detail__related-link {
  margin: 0;
  text-align: right;
}

.ku-news-detail__related-link a {
  color: #343b4f;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 600;
}

.ku-event-detail {
  padding: 34px 0 64px;
  background: #edf0f5;
}

.ku-event-detail__container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 32px;
}

.ku-event-detail__layout {
  display: grid;
  grid-template-columns: minmax(320px, 560px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.ku-event-detail__sidebar {
  display: grid;
  gap: 20px;
}

.ku-event-detail__cover {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
}

.ku-event-detail__cover img {
  width: 100%;
  display: block;
  max-height: 760px;
  object-fit: cover;
}

.ku-event-detail__info-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 22px 24px;
}

.ku-event-detail__info-title {
  margin: 0 0 14px;
  color: #a6192e;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
}

.ku-event-detail__info-row, .ku-event-detail__location {
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2f2f2f;
  font-size: 16px;
  line-height: 1.55;
}

.ku-event-detail__location {
  margin-bottom: 0;
}

.ku-event-detail__info-icon {
  width: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  justify-content: center;
}

.ku-event-detail__calendar {
  margin: 20px 0 0;
}

.ku-event-detail__calendar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  border-radius: 6px;
  border: 1px solid #a6192e;
  color: #a6192e;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.ku-event-detail__content {
  min-width: 0;
  color: #464e5f;
  font-size: 17px;
  line-height: 1.6;
}

.ku-event-detail__category {
  margin: 0 0 8px;
  color: #4e5566;
  font-size: 18px;
  line-height: 1.25;
}

.ku-event-detail__title {
  margin: 0 0 20px;
  color: #a6192e;
  font-size: clamp(2.2rem, 2.7vw, 4.1rem) !important;
  line-height: 1.05;
}

.ku-event-detail__summary {
  margin: 0 0 22px;
  color: #464e5f;
  font-size: 20px;
  line-height: 1.55;
}

.ku-event-detail__rich {
  color: #464e5f;
  font-size: 17px;
  line-height: 1.7;
}

.ku-event-detail__rich img {
  max-width: 100%;
  border-radius: 8px;
  margin: 16px 0 22px;
  box-shadow: none;
}

.ku-event-detail__nav {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: center;
}

.ku-event-detail__nav-btn {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #a6192e;
  border-radius: 8px;
  color: #a6192e;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 8px 22px;
}

.ku-event-detail__nav-btn--next {
  justify-self: end;
}

.ku-events-archive {
  background: #edf0f5;
  padding: 34px 0 58px;
}

.ku-events-archive__container {
  max-width: 1720px;
  margin: 0 auto;
  padding: 0 32px;
}

.ku-events-archive__layout {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.ku-events-archive__filters {
  display: grid;
  gap: 14px;
}

.ku-events-archive__filter-header {
  background: #dde1e6;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ku-events-archive__filter-title {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-family: "lust-text", serif;
  color: #2f2f2f;
}

.ku-events-archive__clear-x {
  border: 0;
  background: transparent;
  color: #2f3548;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.ku-events-archive__chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ku-events-archive__chips button {
  border: 0;
  border-radius: 9px;
  background: #a6192e;
  color: #fff;
  padding: 6px 11px;
  font-size: 14px;
  cursor: pointer;
}

.ku-events-archive__chips button.is-clear {
  background: #959bb0;
}

.ku-events-archive__panel {
  background: #dde1e6;
  border-radius: 10px;
  overflow: hidden;
}

.ku-events-archive__panel-title {
  width: 100%;
  border: 0;
  background: transparent;
  color: #2f2f2f;
  font-size: 15px;
  font-family: "lust-text", serif;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.ku-events-archive__panel-body {
  padding: 0 20px 16px;
  display: grid;
  gap: 8px;
}

.ku-events-archive__panel.is-collapsed .ku-events-archive__panel-body {
  display: none;
}

.ku-events-archive__panel-body--scroll {
  max-height: 350px;
  overflow-y: auto;
}

.ku-events-archive__check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2f2f2f;
  font-size: 16px;
}

.ku-events-archive__check input {
  width: 22px;
  height: 22px;
  margin: 0;
}

.ku-events-archive__date-range {
  margin-top: 8px;
  width: 100%;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: #eceff3;
  color: #596072;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  cursor: pointer;
}

.ku-events-archive__main {
  min-width: 0;
}

.ku-events-archive__search {
  margin: 0 0 18px auto;
  max-width: 420px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
}

.ku-events-archive__search-input {
  border: 0;
  border-radius: 8px 0 0 8px;
  height: 46px;
  background: #eef0f4;
  padding: 0 16px;
  font-size: 14px;
}

.ku-events-archive__search-btn {
  border: 0;
  border-radius: 0 8px 8px 0;
  background: #a6192e;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.ku-events-archive__heading {
  margin: 0 0 16px;
  color: #2f2f2f;
  font-size: 56px;
  line-height: 1;
}

.ku-events-archive__cards {
  display: grid;
  gap: 18px;
}

.ku-events-archive__card {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  background: #dde1e6;
  border-radius: 8px;
  overflow: hidden;
  min-height: 520px;
}

.ku-events-archive__card-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.ku-events-archive__card-body {
  padding: 22px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ku-events-archive__card-category {
  margin: 0;
  color: #4c5365;
  font-size: 15px;
}

.ku-events-archive__card-title {
  margin: 0;
  font-size: clamp(2.2rem, 2.2vw, 3.15rem) !important;
  line-height: 1.08;
}

.ku-events-archive__card-title a {
  color: #a6192e;
  text-decoration: none;
}

.ku-events-archive__card-meta {
  margin: 0;
  color: #2f2f2f;
  font-size: 13px;
  line-height: 1.42;
  display: flex;
  align-items: flex-start;
  gap: 7px;
}

.ku-events-archive__card-meta strong {
  font-weight: 700;
}

.ku-events-archive__card-summary {
  margin: 8px 0 0;
  color: #464e5f;
  font-size: 14px;
  line-height: 1.5;
}

.ku-events-archive__card-actions {
  margin: auto 0 0;
}

.ku-events-archive__card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 37px;
  padding: 0 20px;
  border-radius: 8px;
  border: 1px solid #a6192e;
  color: #a6192e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.ku-events-archive__empty {
  padding: 28px 0 18px;
  text-align: center;
  color: #4b5568;
  font-size: 18px;
}

.ku-events-archive__empty-art {
  margin: 0 auto 14px;
  width: 140px;
  height: 140px;
  border-radius: 18px;
  background: #e6ebf0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 62px;
}

.ku-events-archive__pagination {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ku-events-archive__pagination button {
  min-width: 36px;
  height: 36px;
  border-radius: 7px;
  border: 0;
  background: transparent;
  color: #4b5568;
  font-size: 16px;
  cursor: pointer;
}

.ku-events-archive__pagination button.is-active {
  background: #a6192e;
  color: #fff;
}

.cms-slider {
  position: relative;
  background: #0b1120;
  color: #f8fafc;
  border-radius: 1.75rem;
  padding: 2.5rem;
  box-shadow: 0 32px 68px rgba(15, 23, 42, 0.28);
}

.cms-slider__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.cms-slider__heading {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fdfbff;
}

.cms-slider__note {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.75;
}

.cms-slider__viewport {
  position: relative;
}

.cms-slider__slides {
  position: relative;
}

.cms-slider__slide {
  display: none;
  gap: 2.25rem;
  align-items: stretch;
}

.cms-slider__slide.is-active {
  display: flex;
}

.cms-slider__slide--media-left {
  flex-direction: row-reverse;
}

.cms-slider__media {
  flex: 1 1 50%;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  min-height: 320px;
}

.cms-slider__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cms-slider__media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(140deg, rgba(148, 163, 184, 0.65), rgba(30, 64, 175, 0.45));
}

.cms-slider__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.cms-slider__eyebrow {
  margin: 0;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
  opacity: 0.6;
}

.cms-slider__title {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 700;
}

.cms-slider__description {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.85;
}

.cms-slider__actions {
  display: flex;
  gap: 1rem;
}

.cms-slider__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  background: #fdf2f8;
  color: #0b1120;
  font-weight: 600;
  text-decoration: none;
}

.cms-slider__controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.cms-slider__control {
  pointer-events: auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(15, 23, 42, 0.28);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cms-slider__control:hover {
  background: rgba(15, 23, 42, 0.45);
  transform: scale(1.05);
}

.cms-slider__thumbs {
  margin-top: 2rem;
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.cms-slider__thumb {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(15, 23, 42, 0.35);
  color: #f8fafc;
  cursor: pointer;
  min-width: 220px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.cms-slider__thumb.is-active {
  border-color: var(--color-secondary);
  transform: translateY(-4px);
}

.cms-slider__thumb img {
  width: 72px;
  height: 48px;
  object-fit: cover;
  border-radius: 1rem;
}

.cms-slider__dots {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.65rem;
  justify-content: center;
}

.cms-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cms-slider__dot.is-active {
  transform: scale(1.4);
  background: #fff;
}

@media (max-width: 1024px) {
  .legacy-site-header {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .header-actions {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .legacy-site-nav .nav-list {
    flex-wrap: wrap;
    gap: 1.25rem;
  }
  .hero-slider {
    min-height: 360px;
    border-radius: 1.5rem;
  }
  .hero-slider__content {
    padding: 3.5rem 3rem;
  }
  .hero-slider__title {
    font-size: 2.5rem;
  }
  .hero-slider__indicators {
    left: 3rem;
    bottom: 2rem;
  }
  .cms-entry {
    padding: 3rem;
  }
  .ku-news-detail__layout {
    grid-template-columns: 1fr;
  }
  .ku-news-detail__sidebar {
    position: static;
  }
  .ku-news-detail__article {
    padding: 34px;
  }
  .ku-news-detail__related {
    grid-template-columns: 1fr;
  }
  .ku-event-detail__container {
    padding: 0 20px;
  }
  .ku-event-detail__layout {
    grid-template-columns: 1fr;
  }
  .ku-event-detail__sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
  .ku-event-detail__cover img {
    max-height: 620px;
  }
  .ku-event-detail__title {
    font-size: 3.05rem !important;
  }
  .ku-event-detail__summary {
    font-size: 18px;
  }
  .ku-events-archive__container {
    padding: 0 20px;
  }
  .ku-events-archive__layout {
    grid-template-columns: 1fr;
  }
  .ku-events-archive__heading {
    font-size: 42px;
  }
  .ku-events-archive__card {
    grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
    min-height: 460px;
  }
  .ku-events-archive__card-image img {
    min-height: 460px;
  }
  .cms-slider {
    padding: 2rem;
  }
  .cms-slider__slide {
    flex-direction: column;
    gap: 1.75rem;
  }
  .cms-slider__media {
    min-height: 260px;
  }
  .cms-slider__content {
    padding-top: 1.75rem;
  }
  .cms-slider__controls {
    display: none;
  }
  .legacy-mega-panel {
    position: static;
    box-shadow: none;
    border: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    padding: 1.5rem 0;
    display: none;
  }
  .legacy-mega-panel.is-open {
    display: block;
  }
  .mega-columns {
    padding: 0;
  }
  .legacy-nav-overlay {
    display: none;
  }
}

@media (max-width: 720px) {
  .header-top-content {
    padding: 0.5rem 1.25rem;
  }
  .legacy-site-header {
    padding: 1rem 1.25rem;
  }
  .site-content {
    padding: 2.5rem 1.25rem;
  }
  .hero-slider {
    border-radius: 1.25rem;
    min-height: 320px;
  }
  .hero-slider__content {
    padding: 2.75rem 1.75rem;
    align-items: flex-start;
    text-align: left;
  }
  .hero-slider__content--center,
  .hero-slider__content--right {
    align-items: flex-start;
    text-align: left;
  }
  .hero-slider__title {
    font-size: 2.1rem;
  }
  .hero-slider__subtitle {
    font-size: 1.1rem;
  }
  .hero-slider__indicators {
    position: static;
    margin-top: 1.5rem;
    justify-content: center;
  }
  .hero-slider__controls {
    display: none;
  }
  .cms-entry {
    padding: 2.25rem 1.75rem;
  }
  .cms-entry__title {
    font-size: 2rem;
  }
  .ku-page-detail {
    padding: 8px 0 38px;
  }
  .ku-page-detail__container {
    padding: 0 14px;
  }
  .ku-page-detail__content {
    font-size: 17px;
  }
  .ku-page-detail__content p {
    font-size: 17px;
    margin-bottom: 14px;
  }
  .ku-page-detail__side-link {
    font-size: 16px;
    padding: 12px 14px;
  }
  .ku-news-detail__article {
    padding: 26px 20px;
  }
  .ku-news-detail__title {
    font-size: 2.1rem !important;
  }
  .ku-news-detail__meta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .ku-news-detail__panel-title {
    font-size: 2rem !important;
  }
  .ku-news-detail__category-list li, .ku-news-detail__latest-item {
    font-size: 16px;
  }
  .ku-news-detail__related {
    padding: 18px;
  }
  .ku-news-detail__related-summary {
    font-size: 14px;
  }
  .ku-news-detail__related-link a {
    font-size: 18px;
  }
  .ku-event-detail {
    padding: 24px 0 46px;
  }
  .ku-event-detail__container {
    padding: 0 14px;
  }
  .ku-event-detail__sidebar {
    grid-template-columns: 1fr;
  }
  .ku-event-detail__info-card {
    padding: 18px 16px;
  }
  .ku-event-detail__info-title {
    font-size: 34px;
  }
  .ku-event-detail__content {
    font-size: 16px;
  }
  .ku-event-detail__title {
    font-size: 2.2rem !important;
  }
  .ku-event-detail__summary {
    font-size: 17px;
  }
  .ku-event-detail__info-row, .ku-event-detail__location {
    font-size: 15px;
  }
  .ku-event-detail__nav {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ku-event-detail__nav-btn, .ku-event-detail__nav-btn--next {
    justify-self: start;
  }
  .ku-events-archive {
    padding: 20px 0 42px;
  }
  .ku-events-archive__container {
    padding: 0 14px;
  }
  .ku-events-archive__search {
    margin: 0 0 14px;
    max-width: 100%;
  }
  .ku-events-archive__heading {
    font-size: 34px;
  }
  .ku-events-archive__filter-title {
    font-size: 28px;
  }
  .ku-events-archive__panel-title {
    font-size: 30px;
  }
  .ku-events-archive__check {
    font-size: 15px;
  }
  .ku-events-archive__date-range {
    font-size: 14px;
  }
  .ku-events-archive__card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .ku-events-archive__card-image img {
    min-height: 220px;
  }
  .ku-events-archive__card-body {
    padding: 16px;
  }
  .ku-events-archive__card-title {
    font-size: 2rem !important;
  }
  .cms-slider {
    padding: 1.75rem 1.5rem;
  }
  .cms-slider__heading {
    font-size: 1.5rem;
  }
  .cms-slider__content {
    padding-top: 1.5rem;
  }
  .cms-slider__thumbs {
    gap: 0.75rem;
  }
  .cms-slider__thumb {
    min-width: 180px;
    padding: 0.55rem 0.85rem;
  }
  .cms-slider__thumb img {
    width: 60px;
    height: 42px;
  }
}
