:root {
  --ink: #141414;
  --muted: #5a5a5a;
  --paper: #f7f4ef;
  --accent: #1a4d5d;
  --accent-2: #d78a3a;
  --light: #ffffff;
  --shadow: rgba(12, 20, 22, 0.15);
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-width: 320px;
}

body {
  margin: 0;
  font-family: "Georgia", "Times New Roman", serif;
  color: var(--ink);
  background: linear-gradient(120deg, #f7f4ef 0%, #f0e8da 100%);
}

.page-enter {
  animation: page-fade-in 0.7s ease both;
}

.home-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.13), transparent 22%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, #061631 0%, #0d4174 50%, #148cc6 100%);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.home-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.home-loader-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 34px 28px;
  text-align: center;
}

.home-loader-logo {
  width: 104px;
  height: 104px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(5, 18, 40, 0.34);
  animation: loader-logo-float 1.2s ease-in-out infinite alternate;
}

.home-loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-loader-kicker {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.home-loader-title {
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 10px 24px rgba(5, 18, 40, 0.22);
}

.home-loader-subtitle {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  max-width: 560px;
  line-height: 1.5;
}

.home-loader-progress {
  width: min(320px, 78vw);
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.18);
}

.home-loader-progress span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff 0%, #93ddff 100%);
  animation: loader-progress 1.4s ease-in-out infinite;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

iframe {
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  flex-direction: column;
  background: var(--light);
  box-shadow: 0 6px 20px var(--shadow);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 40px;
  background: #2f2f2f;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 0;
}

.top-icon {
  display: inline-flex;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.2);
}

.top-right {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 0;
}

.top-right a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-size: 12px;
  padding: 0 4px;
}

.lang-select {
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #ffffff;
}

@media (max-width: 900px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    overflow-x: visible;
    white-space: normal;
  }

  .top-left,
  .top-right {
    white-space: normal;
  }
}

.mid-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  gap: 16px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.brand {
  display: flex;
  gap: 16px;
  align-items: center;
  min-width: 0;
  flex: 1 1 560px;
  max-width: 100%;
}

.brand-mark {
  width: clamp(64px, 8vw, 96px);
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(15, 60, 130, 0.18);
  flex: 0 0 auto;
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.24s ease;
}

.brand:hover .brand-mark {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 28px rgba(15, 60, 130, 0.24);
  filter: saturate(1.08);
}

.brand:hover .brand-mark img {
  transform: scale(1.05);
}

.brand-title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: #243c8f;
  line-height: 1.15;
}

.brand-subtitle {
  font-size: clamp(11px, 1.2vw, 13px);
  color: var(--muted);
  overflow-wrap: anywhere;
  max-width: 760px;
}

.search-form {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex: 1 1 280px;
}

.search-form input {
  width: 260px;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 18px;
  border: 1px solid #d2d2d2;
}

.search-form button {
  border: none;
  background: #2d2c7a;
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
}

.site-nav {
  background: #2f9cc4;
  color: var(--light);
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.sub-bar {
  display: flex;
  justify-content: space-between;
  padding: 8px 40px;
  font-size: 12px;
  color: #1f3d5f;
  background: #ffffff;
  gap: 12px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--light);
  padding: 8px 12px;
  border-radius: 6px;
  margin: 12px 0;
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
  animation: rise-in 0.45s ease both;
}

.nav-item > a {
  color: var(--light);
  text-decoration: none;
  display: block;
  padding: 16px 8px;
  font-size: 13px;
  font-weight: 600;
}

.nav-item.active > a {
  color: var(--accent-2);
}

.dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 220px;
  background: var(--light);
  color: var(--ink);
  box-shadow: 0 14px 30px var(--shadow);
  padding: 8px 0;
  display: none;
  border-radius: 8px;
}

.nav-item:hover .dropdown {
  display: block;
}

.dropdown .nav-list {
  flex-direction: column;
  gap: 0;
}

.dropdown a {
  color: var(--ink);
  padding: 10px 16px;
}

.site-main {
  flex: 1;
  padding: 40px;
  width: 100%;
}

.about-page {
  display: grid;
  gap: 28px;
}

.about-hero-banner {
  background: linear-gradient(135deg, #1283bf 0%, #0d5f96 100%);
  border-radius: 18px;
  padding: 34px 28px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1), transparent 24%);
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-breadcrumbs {
  font-size: 13px;
  opacity: 0.9;
}

.about-hero-banner h1 {
  margin: 12px 0;
  font-size: 34px;
}

.about-hero-pill {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(4px);
  font-size: 13px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.about-content-column {
  display: grid;
  gap: 18px;
}

.about-category-card,
.about-post-card,
.sidebar-box {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(18, 53, 86, 0.09);
}

.about-category-card {
  padding: 20px 24px;
}

.about-category-card h2 {
  margin: 0;
  color: #1f5e96;
  font-size: 22px;
}

.about-post-card {
  padding: 18px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(18, 53, 86, 0.14);
}

.about-post-thumb {
  min-height: 110px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #edf4fa 0%, #d6e7f5 100%);
  position: relative;
}

.about-post-thumb::after {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 10px;
  background: rgba(31, 94, 150, 0.1);
}

.about-post-meta {
  color: #1480bd;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-post-body h3 {
  margin: 8px 0 10px;
  color: #203c89;
  font-size: 21px;
}

.about-post-body p {
  margin: 0 0 12px;
  color: #49545d;
  line-height: 1.7;
}

.about-post-body a,
.sidebar-box a {
  color: #0f68a4;
  text-decoration: none;
  font-weight: 700;
}

.about-sidebar {
  display: grid;
  gap: 16px;
}

.sidebar-box {
  padding: 18px;
}

.sidebar-title {
  background: #1684be;
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.sidebar-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.sidebar-search {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sidebar-search input {
  flex: 1;
  min-width: 0;
  border: 1px solid #c8dae7;
  border-radius: 10px;
  padding: 10px 12px;
}

.sidebar-search button {
  border: 0;
  border-radius: 10px;
  background: #203c89;
  color: #ffffff;
  padding: 10px 14px;
}

.hero {
  background: var(--light);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 40px var(--shadow);
}

.hero h1 {
  margin-top: 0;
  font-size: 30px;
}

.hero p {
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
}

.image-marquee {
  margin-top: 20px;
  overflow: hidden;
  border-radius: 0;
  background: #f2efe9;
  width: calc(100% + 64px);
  margin-left: -32px;
  margin-right: -32px;
}

.image-track {
  display: flex;
  gap: 16px;
  padding: 16px;
  animation: slide-left 24s linear infinite;
}

.image-track img {
  width: 520px;
  height: 260px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 10px 20px var(--shadow);
}

.headline-ticker {
  margin-top: 16px;
  overflow: hidden;
  background: #2f9cc4;
  color: var(--light);
  border-radius: 12px;
  padding: 10px 0;
}

.headline-track {
  display: inline-flex;
  gap: 32px;
  padding-left: 100%;
  animation: ticker 18s linear infinite;
  white-space: nowrap;
}

.headline-track span {
  font-size: 14px;
}

.quick-strip {
  margin-top: 18px;
  background: #3a2f7d;
  padding: 18px 16px;
  border-radius: 14px;
}

.quick-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.quick-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px 12px;
  text-decoration: none;
  color: #1b1b1b;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 10px 20px var(--shadow);
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 28px var(--shadow);
}

.quick-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(45, 44, 122, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.quick-card:hover::after {
  opacity: 1;
}

.quick-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #2d2c7a;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.quick-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.stats-strip {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.stat-card {
  background: #2490be;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 12px 22px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 32px var(--shadow);
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.stat-card:hover::after {
  opacity: 1;
}
.stat-icon {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.icon-tabs {
  margin-top: 26px;
  background: #3a2f7d;
  padding: 18px 20px;
  border-radius: 14px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  align-items: center;
}

.icon-tab {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 10px;
  text-decoration: none;
  color: #2d2c7a;
  display: grid;
  place-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 10px 20px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px var(--shadow);
}

.icon-tab img {
  width: 34px;
  height: 34px;
}

.feature-row {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.feature-main {
  min-height: 260px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 16px 28px var(--shadow);
  position: relative;
  overflow: hidden;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  text-align: center;
}

.feature-title {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 700;
}

.feature-button {
  padding: 8px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

.feature-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
  align-content: center;
}

.feature-mini {
  background: #2f9cc4;
  border-radius: 12px;
  padding: 12px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 12px 22px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 28px var(--shadow);
}

.feature-mini img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 8px;
}

.feature-mini span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.icon-tabs-secondary {
  margin-top: 26px;
  padding: 22px 20px;
  background: #3a2f7d;
  border-radius: 14px;
}

.icon-grid-secondary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.icon-tile {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 10px;
  text-decoration: none;
  color: #2d2c7a;
  display: grid;
  place-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 10px 20px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 26px var(--shadow);
}

.icon-tile img {
  width: 32px;
  height: 32px;
}

.moments-section,
.speaks-section {
  margin-top: 26px;
  text-align: center;
}

.moments-section h3,
.speaks-section h3 {
  color: #2c79b3;
  font-size: 16px;
  margin-bottom: 16px;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.moments-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 22px var(--shadow);
  position: relative;
}

.moments-card img {
  width: 100%;
  display: block;
}

.moments-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  padding: 18px;
}

.moments-overlay span {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 12px;
}

.speaks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.speaks-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 22px var(--shadow);
  text-align: left;
}

.speaks-card img {
  width: 100%;
  display: block;
}

.speaks-card p {
  padding: 12px 14px 0;
  font-size: 12px;
  color: #3f3f3f;
}

.speaks-more {
  display: inline-block;
  margin: 10px 14px 14px;
  padding: 6px 12px;
  border-radius: 14px;
  background: #4b4b4b;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
}

.connect-section {
  margin-top: 26px;
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 12px 22px var(--shadow);
}

.connect-header {
  text-align: center;
}

.connect-header h3 {
  margin: 0;
  color: #2c79b3;
  font-size: 16px;
}

.connect-tabs {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.connect-tab {
  border: 1px solid #d4d4d4;
  background: #ffffff;
  color: #2c79b3;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 11px;
  cursor: pointer;
}

.connect-tab.active {
  background: #0f4d86;
  color: #ffffff;
}

.connect-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.connect-card {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 10px;
  display: grid;
  gap: 6px;
}

.connect-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.connect-meta {
  font-size: 11px;
  color: #2c79b3;
}

.badge-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.badge-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 10px 20px var(--shadow);
}

.badge-title {
  background: #2c79b3;
  color: #ffffff;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

.badge-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  justify-items: center;
}

.badge-icons img {
  width: 32px;
  height: 32px;
}

.badge-main {
  width: 100%;
  max-width: 200px;
}

.badge-button {
  display: inline-block;
  margin-top: 10px;
  background: #2c79b3;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 11px;
}

.research-section {
  margin-top: 20px;
  background: #f0f0f0;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.research-title {
  color: #2c79b3;
  font-size: 12px;
  margin-bottom: 10px;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 10px;
  align-items: center;
}

.research-grid img {
  width: 100%;
  max-width: 70px;
  margin: 0 auto;
  background: #ffffff;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 6px 12px var(--shadow);
}

.photo-gallery {
  margin-top: 26px;
  text-align: center;
}

.gallery-title h3 {
  margin: 0;
  color: #2c79b3;
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.gallery-title h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2c79b3;
  margin: 8px auto 0;
  border-radius: 999px;
}

.gallery-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.gallery-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px var(--shadow);
}

.gallery-card img {
  width: 100%;
  display: block;
}

.gallery-caption {
  padding: 8px 10px;
  font-size: 11px;
  color: #2b2b2b;
}

.gallery-button {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 14px;
  border-radius: 16px;
  background: #4b4b4b;
  color: #ffffff;
  text-decoration: none;
  font-size: 11px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  align-items: start;
}

.footer-column {
  display: grid;
  gap: 10px;
  align-content: start;
}

.visitor-count {
  font-size: 12px;
  font-weight: 700;
  margin-top: 26px;
}

.footer-heading {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-heading.small {
  margin-top: 10px;
  font-size: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
}

.footer-text-block {
  font-size: 12px;
  display: grid;
  gap: 6px;
  overflow-wrap: anywhere;
}

.map-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 8px;
}

.map-card img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.footer-bar {
  margin-top: 18px;
  padding-top: 18px;
  padding-bottom: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  justify-content: space-between;
  gap: 48px;
  font-size: 11px;
  flex-wrap: wrap;
}

.footer-bar > div {
  flex: 1 1 320px;
}

.footer-bar > div:last-child {
  text-align: right;
}

.vc-desk {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.vc-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 24px var(--shadow);
}

.vc-image-wrap {
  border-radius: 12px;
  overflow: hidden;
}

.vc-card img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.vc-card img:hover {
  transform: scale(1.05);
}

.vc-caption {
  margin-top: 10px;
}

.vc-name {
  font-weight: 700;
}

.vc-title {
  font-size: 13px;
  color: var(--muted);
}

.vc-content h2 {
  margin-top: 0;
  font-size: 26px;
  color: #2c79b3;
  letter-spacing: 0.4px;
}

.vc-content {
  text-align: left;
}

.vc-content p {
  color: #3f3f3f;
  line-height: 1.6;
  text-align: justify;
  margin-bottom: 12px;
}

.vc-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #4b4b4b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 18px;
  font-size: 13px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.vc-button:hover {
  background: #2d2c7a;
}

.admin-panel {
  margin-top: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 12px 24px var(--shadow);
}

.admin-panel h1 {
  margin-top: 0;
  color: #2d2c7a;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.admin-form label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: #2a2a2a;
}

.admin-form input,
.admin-form select {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d4d4d4;
}

.admin-form button {
  grid-column: 1 / -1;
  justify-self: start;
  border: none;
  background: #2f9cc4;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
}

.admin-success {
  background: #e7f7ef;
  color: #116b3a;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 12px;
}

.admin-error {
  background: #ffe7e7;
  color: #9c1f1f;
  padding: 10px 12px;
  border-radius: 8px;
  margin-top: 12px;
}

.admin-list {
  margin-top: 20px;
}

.admin-list table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-list th,
.admin-list td {
  border-bottom: 1px solid #e6e6e6;
  padding: 10px 8px;
  text-align: left;
}

.triple-tabs {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.tab-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 22px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 360px;
}

.tab-card h3 {
  margin: 0;
  text-align: center;
  color: #2d2c7a;
  font-size: 18px;
  font-weight: 700;
  position: relative;
}

.tab-card h3 span {
  display: inline-block;
  padding-bottom: 6px;
  position: relative;
}

.tab-card h3 span::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #2d2c7a;
  margin: 8px auto 0;
  border-radius: 999px;
}

.tab-list {
  display: grid;
  gap: 10px;
}

.tab-row {
  background: #2b94c4;
  color: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 10px;
  align-items: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tab-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.18);
}

.tab-date {
  background: #ffffff;
  color: #2d2c7a;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 6px 4px;
  text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(45, 44, 122, 0.2);
}

.tab-title {
  font-size: 13px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.tab-more {
  margin-top: auto;
  text-align: right;
  color: #2d2c7a;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.tab-more:hover {
  text-decoration: underline;
}

.about-uni {
  margin-top: 36px;
  background: #ffffff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 12px 22px var(--shadow);
}

.about-title {
  text-align: center;
}

.about-title h2 {
  margin: 0;
  color: #2c79b3;
  font-size: 28px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.about-title h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #2d2c7a;
  margin: 8px auto 0;
  border-radius: 999px;
}

.about-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.about-subtitle {
  text-align: center;
  color: #2c79b3;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 14px 26px var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 14px 26px var(--shadow);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link {
  display: block;
  position: relative;
}

.video-play {
  position: absolute;
  inset: auto auto 16px 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 8px 12px;
  border-radius: 16px;
  font-size: 12px;
  letter-spacing: 0.6px;
}

.video-link:hover .video-play {
  background: rgba(45, 44, 122, 0.8);
}

.about-content h3 {
  color: #2c79b3;
  margin-top: 0;
  font-size: 20px;
}

.about-content p {
  color: #3f3f3f;
  line-height: 1.6;
  text-align: justify;
}

.about-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #4b4b4b;
  color: #ffffff;
  text-decoration: none;
  border-radius: 18px;
  font-size: 13px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.18);
}

.about-button:hover {
  background: #2d2c7a;
}

.contact-page,
.info-page {
  display: grid;
  gap: 24px;
}

.contact-hero,
.info-page-header {
  background: linear-gradient(135deg, #0e4a7f 0%, #1793cb 100%);
  color: #ffffff;
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 14px 28px rgba(16, 64, 102, 0.16);
}

.contact-kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  opacity: 0.88;
}

.contact-hero h1,
.info-page-header h1 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 4vw, 40px);
}

.contact-hero p,
.info-page-header p {
  margin: 0;
  max-width: 760px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
  gap: 24px;
}

.contact-main,
.contact-side {
  display: grid;
  gap: 18px;
}

.contact-panel,
.contact-map-panel,
.contact-side-card,
.info-card,
.location-card,
.location-map {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 28px rgba(18, 53, 86, 0.09);
}

.contact-panel h2,
.contact-map-copy h2,
.contact-side-card h3,
.info-card h2,
.location-card h2 {
  margin-top: 0;
  color: #203c89;
}

.contact-intro,
.contact-map-copy p,
.contact-side-card p,
.info-card p,
.location-card p {
  color: #49545d;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #2d3f4b;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #c8dae7;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  color: #22303b;
  background: #fbfdff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form button {
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #203c89 0%, #1684be 100%);
  color: #ffffff;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(14, 74, 127, 0.18);
}

.contact-alert {
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.contact-alert.success {
  background: #e8f7ef;
  color: #12653e;
}

.contact-alert.error {
  background: #fff0f0;
  color: #9a1f1f;
}

.contact-map-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.9fr);
  gap: 18px;
  align-items: center;
}

.contact-map-copy a,
.contact-side-card a {
  color: #0f68a4;
  text-decoration: none;
  font-weight: 700;
}

.contact-map-card img,
.location-map img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.contact-side-card ul {
  margin: 0;
  padding-left: 18px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
}

.quick-card,
.stat-card,
.tab-card,
.icon-tab,
.icon-tile,
.feature-main,
.feature-mini,
.moments-card,
.speaks-card,
.gallery-card,
.badge-card,
.contact-panel,
.contact-side-card,
.info-card,
.location-card {
  animation: rise-in 0.55s ease both;
}

.nav-list .nav-item:nth-child(1),
.quick-cards > *:nth-child(1),
.stats-strip > *:nth-child(1),
.triple-tabs > *:nth-child(1),
.icon-grid > *:nth-child(1),
.icon-grid-secondary > *:nth-child(1),
.feature-mini-grid > *:nth-child(1),
.moments-grid > *:nth-child(1),
.speaks-grid > *:nth-child(1),
.gallery-grid > *:nth-child(1) {
  animation-delay: 0.04s;
}

.nav-list .nav-item:nth-child(2),
.quick-cards > *:nth-child(2),
.stats-strip > *:nth-child(2),
.triple-tabs > *:nth-child(2),
.icon-grid > *:nth-child(2),
.icon-grid-secondary > *:nth-child(2),
.feature-mini-grid > *:nth-child(2),
.moments-grid > *:nth-child(2),
.speaks-grid > *:nth-child(2),
.gallery-grid > *:nth-child(2) {
  animation-delay: 0.1s;
}

.nav-list .nav-item:nth-child(3),
.quick-cards > *:nth-child(3),
.stats-strip > *:nth-child(3),
.triple-tabs > *:nth-child(3),
.icon-grid > *:nth-child(3),
.icon-grid-secondary > *:nth-child(3),
.feature-mini-grid > *:nth-child(3),
.moments-grid > *:nth-child(3),
.speaks-grid > *:nth-child(3),
.gallery-grid > *:nth-child(3) {
  animation-delay: 0.16s;
}

.nav-list .nav-item:nth-child(4),
.quick-cards > *:nth-child(4),
.stats-strip > *:nth-child(4),
.icon-grid > *:nth-child(4),
.icon-grid-secondary > *:nth-child(4) {
  animation-delay: 0.22s;
}

.nav-list .nav-item:nth-child(5),
.quick-cards > *:nth-child(5),
.icon-grid > *:nth-child(5),
.icon-grid-secondary > *:nth-child(5) {
  animation-delay: 0.28s;
}

@keyframes rise-in {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.card {
  background: var(--paper);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 20px var(--shadow);
}

.card-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.site-footer {
  margin-top: 26px;
  background: #2b8fbe;
  color: #ffffff;
  padding: 24px;
  border-radius: 14px;
}

.mid-social-popup {
  position: fixed;
  right: 14px;
  top: 230px;
  transform: none;
  display: grid;
  gap: 8px;
  z-index: 30;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  padding: 10px 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, #1c75bc 0%, #0f4d86 100%);
  box-shadow: 0 18px 32px rgba(10, 42, 84, 0.28);
}

.mid-social-popup.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  pointer-events: none;
}

.mid-social-link,
.mid-social-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(21, 64, 104, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mid-social-link span,
.mid-social-close {
  line-height: 1;
  text-transform: lowercase;
}

.mid-social-link:hover,
.mid-social-close:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 26px rgba(21, 64, 104, 0.32);
}

.social-instagram {
  background: #ffffff;
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin-left: 1px;
}

.social-facebook {
  background: #4267b2;
}

.social-x {
  background: #dfe5ec;
  color: #0b1b36 !important;
}

.social-youtube {
  background: #e53935;
}

.social-linkedin {
  background: #0a66c2;
}

.social-close {
  background: #0b2158;
}

.social-instagram span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fdc468 0%, #df4996 55%, #3c5a99 100%);
  color: #ffffff;
  font-weight: 700;
}

.social-facebook span,
.social-linkedin span {
  font-size: 18px;
}

.social-youtube span {
  font-size: 10px;
}

.social-x span,
.social-close {
  font-size: 18px;
}

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

.footer-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-bottom {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .top-bar,
  .mid-bar,
  .sub-bar,
  .site-main {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
  }

  .top-right {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    width: 100%;
  }

  .mid-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .search-form {
    width: 100%;
    justify-content: flex-start;
  }

  .brand {
    width: 100%;
  }

  .brand-mark {
    width: clamp(58px, 16vw, 84px);
  }

  .sub-bar {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-nav {
    padding: 0 20px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-wrap {
    display: none;
    padding-bottom: 16px;
  }

  .nav-wrap.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-item:hover .dropdown {
    display: none;
  }

  .nav-item.has-children > a::after {
    content: "v";
    margin-left: 6px;
  }

  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .nav-item.open .dropdown {
    display: block;
  }

  .dropdown a {
    color: var(--light);
    padding-left: 20px;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-post-card {
    grid-template-columns: 1fr;
  }

  .about-post-thumb {
    min-height: 150px;
  }

  .contact-grid,
  .location-layout,
  .contact-map-panel {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .vc-desk {
    grid-template-columns: 1fr;
  }

  .triple-tabs,
  .moments-grid,
  .speaks-grid,
  .gallery-grid,
  .badge-grid {
    grid-template-columns: 1fr;
  }

  .connect-grid,
  .icon-grid,
  .icon-grid-secondary,
  .quick-cards,
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .top-bar,
  .mid-bar,
  .sub-bar,
  .site-nav,
  .site-main,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .top-left,
  .top-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
  }

  .top-right a,
  .top-right .lang-select {
    display: inline-flex;
    align-items: center;
  }

  .top-right a {
    font-size: 11px;
    padding: 0;
  }

  .search-form input {
    width: 100%;
    min-width: 0;
  }

  .image-marquee {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
  }

  .image-track img {
    width: 80vw;
    height: 44vw;
    max-height: 240px;
  }

  .hero,
  .about-uni,
  .connect-section,
  .site-footer,
  .admin-panel {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .about-hero-banner {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .about-hero-banner h1 {
    font-size: 26px;
  }

  .brand {
    gap: 12px;
    align-items: flex-start;
  }

  .brand-title {
    font-size: 16px;
  }

  .brand-subtitle {
    font-size: 11px;
  }

  .search-form {
    width: 100%;
  }

  .search-form button {
    width: 100%;
    justify-content: center;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .mid-social-popup {
    right: 12px;
    top: 200px;
    padding: 8px 6px;
  }

  .mid-social-link,
  .mid-social-close {
    width: 38px;
    height: 38px;
  }

  .social-instagram {
    width: 36px;
    height: 36px;
  }

  .social-instagram span {
    width: 24px;
    height: 24px;
    font-size: 10px;
  }

  .connect-grid,
  .icon-grid,
  .icon-grid-secondary,
  .quick-cards,
  .stats-strip {
    grid-template-columns: 1fr;
  }

  .about-post-card,
  .tab-card,
  .badge-card,
  .moments-card,
  .speaks-card,
  .gallery-card {
    border-radius: 10px;
  }

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

  .nav-item > a {
    padding: 12px 6px;
    font-size: 12px;
  }

  .home-loader-title {
    font-size: 24px;
  }

  .home-loader-subtitle {
    font-size: 12px;
  }

  .footer-bar {
    flex-direction: column;
  }

  .footer-bar > div:last-child {
    text-align: left;
  }
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes page-fade-in {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-progress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(260%);
  }
}

@keyframes loader-logo-float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-6px);
  }
}
