/* ============================================================
   ACEP — Assumption College English Program
   Bird's-Blood Red Theme · Pattern inspired by thaibrothers.net
   ============================================================ */

:root {
  /* Bird's Blood Red palette */
  --primary: #6B0F1A;
  --primary-dark: #4A0A12;
  --primary-light: #8B1A2B;
  --gold: #C9A961;
  --gold-dark: #A8893E;
  --cream: #F5EFE8;
  --cream-warm: #FBF7F2;
  --white: #FFFFFF;
  --gray-text: #555;
  --gray-light: #E8E2D8;
  --dark: #1A1A1A;
  --shadow: rgba(107, 15, 26, 0.08);
  --shadow-strong: rgba(107, 15, 26, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Sarabun", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: "Playfair Display", "Inter", "Sarabun", serif; line-height: 1.25; color: var(--primary); font-weight: 600; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); margin-bottom: 0.8rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
h4 { font-size: 1rem; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-light); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ============ TOP STATUS BAR ============ */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 6px 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.topbar .topbar-sep { margin: 0 12px; opacity: 0.5; }
.topbar .gold { color: var(--gold); }

/* ============ NAV ============ */
.nav {
  background: var(--white);
  padding: 14px 0;
  border-bottom: 3px solid var(--primary);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px var(--shadow);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand-logo {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-brand-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.nav-brand-logo .text-fallback {
  width: 100%; height: 100%;
  background: var(--primary); color: var(--white);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Playfair Display", serif; font-weight: 700; font-size: 1.4rem;
  letter-spacing: 0.05em;
}
.nav-brand-text { line-height: 1.15; white-space: nowrap; }
.nav-brand-text .name { font-family: "Playfair Display", serif; font-size: 1rem; font-weight: 600; color: var(--primary); }
.nav-brand-text .sub { font-size: 0.72rem; color: var(--gray-text); }

.nav-links { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; white-space: nowrap; }
.nav-links a {
  color: var(--dark);
  font-size: 0.88rem; font-weight: 500;
  padding: 7px 10px; border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover { background: var(--cream); color: var(--primary); }
.nav-links a.cta {
  background: var(--primary); color: var(--white);
  margin-left: 6px;
  white-space: nowrap;
}

/* ===== Google Translate widget styling ===== */
.nav-translate {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
}
.nav-translate::before {
  content: "🌐";
  margin-right: 4px;
  font-size: 0.95rem;
}
.nav-translate .goog-te-gadget {
  font-family: inherit !important;
  font-size: 0;
}
.nav-translate .goog-te-gadget > span > a {
  display: none !important;
}
.nav-translate .goog-te-gadget .goog-te-combo {
  font-family: inherit;
  font-size: 0.82rem;
  padding: 4px 6px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}
.nav-translate .goog-te-gadget .goog-te-combo:hover {
  border-color: var(--primary);
}
/* Hide Google Translate top banner that pushes content down */
body { top: 0 !important; }
.goog-te-banner-frame { display: none !important; }
.skiptranslate { display: none !important; }
/* Re-show our actual widget */
#google_translate_element .skiptranslate { display: inline-block !important; }
.nav-links a.cta:hover { background: var(--primary-light); }

/* dropdown */
.nav-dd { position: relative; }
.nav-dd-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--white); min-width: 240px;
  box-shadow: 0 8px 32px var(--shadow-strong);
  border-top: 3px solid var(--primary);
  border-radius: 0 0 8px 8px;
  padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s;
}
.nav-dd:hover .nav-dd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd-menu a { display: block; padding: 10px 18px; border-radius: 0; font-size: 0.9rem; }
.nav-dd-menu a:hover { background: var(--cream); }

/* ============ HERO with SLIDESHOW ============ */
.hero {
  position: relative;
  min-height: 460px;
  display: flex; align-items: center;
  background: var(--primary-dark);
  color: var(--white);
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active { opacity: 1; }
/* Hero photos — KG + Primary classroom · Preparatory Meeting (no kneeling, no old director) */
.hero-slide.s1 { background-image: url('assets/img/kindergarten/kg-1.jpg'); }
.hero-slide.s2 { background-image: url('assets/img/kindergarten/kg-60.jpg'); }
.hero-slide.s3 { background-image: url('assets/img/kindergarten/kg-30.jpg'); }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center,
      rgba(20,5,8,0.55) 0%,
      rgba(74,10,18,0.70) 60%,
      rgba(20,5,8,0.82) 100%),
    linear-gradient(180deg,
      rgba(20,5,8,0.30) 0%,
      rgba(20,5,8,0.55) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 56px 24px;
  max-width: 1180px; margin: 0 auto; width: 100%;
  text-align: center;
}
.hero-inner > * { max-width: 760px; margin-left: auto; margin-right: auto; }
.hero-cta { justify-content: center; }
@media (max-width: 720px) {
  .hero-overlay { background: linear-gradient(180deg, rgba(20,5,8,0.78) 0%, rgba(74,10,18,0.65) 100%); }
  .hero-inner > * { max-width: 100%; }
}

/* ============ HERO CAROUSEL CONTROLS ============ */
.hero-dots {
  position: absolute; z-index: 3;
  bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dot {
  width: 36px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: all 0.25s;
  border: none; padding: 0;
}
.hero-dot.active { background: var(--gold); width: 56px; }

/* ============ HERO THUMB STRIP (under hero, like thaibrothers) ============ */
.hero-thumbs {
  background: var(--primary-dark);
  padding: 12px 16px;
  border-bottom: 3px solid var(--gold);
  overflow-x: auto; overflow-y: hidden;
  scrollbar-width: thin;
}
.hero-thumbs-inner {
  display: flex; gap: 10px;
  max-width: 1180px; margin: 0 auto;
}
.hero-thumb {
  flex: 0 0 auto;
  width: 110px; height: 70px;
  border-radius: 4px; overflow: hidden;
  cursor: pointer; opacity: 0.5;
  transition: all 0.25s;
  border: 2px solid transparent;
  background-size: cover; background-position: center;
  position: relative;
  display: flex; align-items: flex-end;
}
.hero-thumb.active { opacity: 1; border-color: var(--gold); transform: scale(1.05); }
.hero-thumb:hover { opacity: 1; }
.hero-thumb .thumb-label {
  background: rgba(0,0,0,0.6); color: var(--white);
  font-size: 0.65rem; padding: 2px 4px; width: 100%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
/* Thumb backgrounds matching slides */
.hero-thumb.t1 { background-image: url('assets/img/kindergarten/kg-1.jpg'); }
.hero-thumb.t2 { background-image: url('assets/img/kindergarten/kg-60.jpg'); }
.hero-thumb.t3 { background-image: url('assets/img/kindergarten/kg-30.jpg'); }
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  padding: 6px 18px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.hero-slogan {
  font-family: "Playfair Display", "Inter", serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--white);
  margin: 2px 0 16px;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.hero-slogan::before { content: "“ "; opacity: 0.7; }
.hero-slogan::after  { content: " ”"; opacity: 0.7; }

/* ============ SLOGAN STRIP (between Hero/Stats or before Footer) ============ */
.slogan-strip {
  background: var(--gold);
  color: var(--primary-dark);
  padding: 26px 24px;
  text-align: center;
  border-top: 3px solid var(--primary);
  border-bottom: 3px solid var(--primary);
}
.slogan-strip .slogan-big {
  font-family: "Playfair Display", "Inter", serif;
  font-style: italic; font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--primary-dark);
  letter-spacing: 0.01em;
  margin: 0;
}
.slogan-strip .slogan-sub {
  font-size: 0.95rem;
  color: var(--primary);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero h1 .hl {
  color: var(--white);
  text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}
.hero h1 .strike {
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.55);
  text-decoration-thickness: 3px;
  color: rgba(255,255,255,0.55);
  opacity: 1;
  font-size: 0.7em;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.hero-tagline {
  font-size: 1.05rem;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.hero-tagline strong { color: var(--white); font-weight: 700; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gold); color: var(--primary-dark);
}
.btn-primary:hover { background: #D9BC78; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
}
.btn-ghost:hover { background: var(--white); color: var(--primary); }
.btn-red {
  background: var(--primary); color: var(--white);
}
.btn-red:hover { background: var(--primary-light); }

/* ============ STATS STRIP ============ */
.stats {
  background: var(--cream);
  padding: 36px 0;
  border-bottom: 1px solid var(--gray-light);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px; text-align: center;
}
.stat-item .num {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.stat-item .label {
  font-size: 0.9rem; color: var(--gray-text);
  margin-top: 4px;
}

/* ============ SECTION ============ */
.section { padding: 64px 0; }
.section-cream { background: var(--cream-warm); }
.section-dark { background: var(--primary-dark); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}
.eyebrow.gold { color: var(--gold); }
.section-title {
  text-align: center; margin-bottom: 32px;
}
.section-title h2 { margin-bottom: 8px; }
.section-title p { color: var(--gray-text); font-size: 1.05rem; }

/* ============ DIRECTOR MESSAGE ============ */
.director-card {
  background: var(--white);
  border-left: 6px solid var(--gold);
  padding: 32px 36px;
  border-radius: 8px;
  box-shadow: 0 4px 24px var(--shadow);
  display: grid; grid-template-columns: 320px 1fr; gap: 32px;
}
.director-card .photo {
  width: 100%; max-width: 280px;
  background: var(--cream); border-radius: 6px;
  display: flex; align-items: flex-start; justify-content: center;
  color: var(--gray-text); font-size: 0.8rem; text-align: center;
  align-self: start;
  overflow: hidden;
}
.director-card .photo img { width: 100%; height: auto; object-fit: contain; border-radius: 6px; display: block; }
.director-card .sig {
  font-family: "Playfair Display", serif; font-size: 1rem;
  color: var(--primary); font-weight: 600;
  margin-top: 18px; padding-top: 14px;
  border-top: 1px solid var(--gray-light);
}
.director-card .sig small { display: block; color: var(--gray-text); font-weight: normal; font-size: 0.85rem; }

/* ============ LANGUAGE TABS (Director's Message) ============ */
.lang-tabs { display: flex; gap: 6px; margin-bottom: 16px; border-bottom: 2px solid var(--gray-light); }
.lang-tab {
  padding: 8px 18px; border: none; background: transparent;
  font-size: 0.92rem; font-weight: 600; color: var(--gray-text);
  cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all 0.2s;
  font-family: inherit;
}
.lang-tab:hover { color: var(--primary); }
.lang-tab.active { color: var(--primary); border-bottom-color: var(--gold); }

.lang-panel { display: none; }
.lang-panel.active { display: block; }
.lang-panel p {
  font-size: 1rem; line-height: 1.75; margin-bottom: 14px;
  color: var(--dark);
}
.lang-panel.lang-zh p { font-size: 1.05rem; line-height: 1.85; }
.lang-panel.lang-th p { font-family: "Sarabun", "Inter", sans-serif; line-height: 1.85; }
.lang-panel p:first-of-type::first-letter {
  font-family: "Playfair Display", serif;
  font-size: 2.6em; float: left; line-height: 0.9;
  margin: 4px 8px 0 0; color: var(--primary); font-weight: 700;
}
.lang-panel.lang-zh p:first-of-type::first-letter,
.lang-panel.lang-th p:first-of-type::first-letter { font-size: 1em; float: none; margin: 0; color: inherit; font-family: inherit; font-weight: inherit; }

.lang-panel.lang-heart { display: none; }
.lang-panel.lang-heart.active { display: block; }
@media (max-width: 640px) {
  .lang-panel.lang-heart > div { grid-template-columns: 1fr !important; }
}

/* ============ UPDATES SECTION (News + Calendar + Album) ============ */
.updates-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.4fr;
  gap: 28px;
  align-items: start;
}
.updates-col h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}
.updates-col .col-sub {
  font-size: 0.85rem; color: var(--gray-text);
  margin-bottom: 14px;
}
.updates-col .col-cta {
  margin-top: 14px; text-align: right;
}
.updates-col .col-cta a {
  font-size: 0.85rem; font-weight: 600;
  color: var(--primary);
}
.updates-col .col-cta a:hover { color: var(--primary-light); }

/* Calendar items */
.cal-events { display: grid; gap: 10px; }
.cal-ev {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 12px 14px; border-radius: 4px;
  box-shadow: 0 1px 4px var(--shadow);
  display: grid; grid-template-columns: 56px 1fr; gap: 12px; align-items: center;
}
.cal-ev .date-box {
  text-align: center;
  background: var(--cream); border-radius: 4px;
  padding: 6px 4px;
}
.cal-ev .date-box .d {
  font-family: "Playfair Display", serif; font-weight: 700;
  color: var(--primary); font-size: 1.3rem; line-height: 1;
}
.cal-ev .date-box .m {
  font-size: 0.7rem; color: var(--gray-text);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.cal-ev .title { font-size: 0.88rem; color: var(--dark); font-weight: 500; line-height: 1.4; }
.cal-ev .meta { font-size: 0.78rem; color: var(--gray-text); margin-top: 2px; }

/* Compact news in updates section */
.updates-col .news-list { gap: 10px; }
.updates-col .news-item { padding: 12px 14px; }
.updates-col .news-item .date .day { font-size: 1.4rem; }
.updates-col .news-item h3 { font-size: 0.93rem; }
.updates-col .news-item p { font-size: 0.82rem; }

/* Compact album in updates section */
.updates-col .photo-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.updates-col .feed-skeleton { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }

@media (max-width: 980px) {
  .updates-grid { grid-template-columns: 1fr 1fr; }
  .updates-col.album-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .updates-grid { grid-template-columns: 1fr; }
  .updates-col.album-col { grid-column: auto; }
}

/* ============ FEED LOADING / EMPTY STATES ============ */
.feed-skeleton {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.feed-skel-card {
  aspect-ratio: 4/3; border-radius: 8px;
  background: linear-gradient(90deg, var(--cream) 0%, var(--gray-light) 50%, var(--cream) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.feed-fallback {
  text-align: center; padding: 40px 24px;
  background: var(--cream); border-radius: 12px;
  color: var(--gray-text);
}
.feed-fallback .feed-icon { font-size: 2.4rem; margin-bottom: 10px; color: var(--primary); opacity: 0.6; }
.feed-fallback h4 { color: var(--primary); margin-bottom: 8px; }
.feed-fallback p { font-size: 0.92rem; margin-bottom: 18px; }

/* ============ ALBUM / PHOTO GRID ============ */
.photo-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.photo-card {
  position: relative; overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 2px 12px var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.photo-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px var(--shadow-strong); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card .overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
  padding: 24px 16px 14px;
}
.photo-card .overlay .badge {
  display: inline-block; background: var(--gold); color: var(--primary-dark);
  font-size: 0.7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 3px; margin-bottom: 6px;
}
.photo-card .overlay .title { font-size: 0.92rem; font-weight: 500; }

/* ============ NEWS / ANNOUNCEMENT LIST ============ */
.news-list { display: grid; gap: 14px; }
.news-item {
  display: grid; grid-template-columns: 100px 1fr; gap: 18px;
  background: var(--white);
  border-left: 4px solid var(--primary);
  padding: 16px 20px; border-radius: 4px;
  box-shadow: 0 1px 6px var(--shadow);
  transition: box-shadow 0.2s;
}
.news-item:hover { box-shadow: 0 4px 16px var(--shadow-strong); }
.news-item .date {
  text-align: center;
  font-size: 0.85rem; color: var(--primary); font-weight: 600;
}
.news-item .date .day { display: block; font-size: 1.8rem; font-family: "Playfair Display", serif; line-height: 1; }
.news-item h3 { font-size: 1rem; margin-bottom: 4px; color: var(--dark); }
.news-item h3 a { color: var(--dark); }
.news-item h3 a:hover { color: var(--primary); }
.news-item p { font-size: 0.88rem; color: var(--gray-text); }

/* ============ PROGRAMS / CARDS ============ */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.prog-card {
  background: var(--white);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.prog-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px var(--shadow-strong); }
.prog-card .prog-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  position: relative;
}
.prog-card .prog-img img { width: 100%; height: 100%; object-fit: cover; }
.prog-card .prog-img .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--primary-dark);
  font-size: 0.75rem; font-weight: 700;
  padding: 4px 10px; border-radius: 3px;
}
.prog-card .prog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.prog-card h3 { color: var(--primary); margin-bottom: 8px; }
.prog-card p { font-size: 0.92rem; color: var(--gray-text); flex: 1; }
.prog-card .more {
  margin-top: 16px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 6px;
}

/* ============ TEACHER STANDARD (3 pillars) ============ */
.teacher-standard {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 36px 32px;
  border-radius: 12px;
  margin-bottom: 36px;
}
.teacher-standard h3 {
  color: var(--gold); margin-bottom: 6px;
  font-size: 1.3rem;
}
.teacher-standard .standard-intro {
  font-size: 0.98rem; color: rgba(255,255,255,0.88);
  margin-bottom: 24px; max-width: 760px;
}
.standard-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.standard-pillar {
  background: rgba(255,255,255,0.08);
  border-radius: 8px; padding: 20px;
  border-top: 3px solid var(--gold);
}
.standard-pillar .pillar-num {
  font-family: "Playfair Display", serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
  line-height: 1;
}
.standard-pillar .pillar-title {
  font-size: 1.05rem; font-weight: 600; color: var(--white);
  margin: 6px 0 8px;
}
.standard-pillar p {
  font-size: 0.88rem; color: rgba(255,255,255,0.82);
  line-height: 1.55; margin: 0;
}
.standard-pillar ul {
  margin: 0; padding-left: 16px;
  font-size: 0.85rem; color: rgba(255,255,255,0.88);
  line-height: 1.55;
}
.standard-pillar ul li { margin-bottom: 4px; }

/* ============ FACULTY DEVELOPMENT CALENDAR ============ */
.dev-calendar {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px; margin: 24px 0 8px;
}
.dev-cal-item {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 14px 18px; border-radius: 4px;
  box-shadow: 0 1px 6px var(--shadow);
}
.dev-cal-item .month {
  font-family: "Playfair Display", serif;
  font-weight: 700; color: var(--primary);
  font-size: 0.85rem; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 4px;
}
.dev-cal-item .event {
  font-size: 0.92rem; color: var(--dark); line-height: 1.4;
}

/* Photo strip for Faculty Development */
.dev-photos {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px; margin: 24px 0;
}
.dev-photo {
  aspect-ratio: 4/3; border-radius: 8px;
  background: linear-gradient(135deg, var(--cream), var(--gray-light));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--gray-text); font-size: 0.85rem; text-align: center;
  gap: 6px; padding: 12px;
  position: relative; overflow: hidden;
}
.dev-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dev-photo .caption-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(74,10,18,0.85));
  color: var(--white); padding: 18px 12px 10px;
  font-size: 0.85rem; text-align: left;
}

/* ============ TEACHER SPOTLIGHT ============ */
.teacher-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.teacher-card {
  background: var(--white);
  border-radius: 10px; overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.teacher-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px var(--shadow-strong); }
.teacher-portrait {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-text); font-size: 0.85rem; text-align: center;
}
.teacher-portrait img { width: 100%; height: 100%; object-fit: cover; }
.teacher-portrait .play-overlay {
  position: absolute; inset: 0;
  background: rgba(74,10,18,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.teacher-card:hover .play-overlay { opacity: 1; }
.teacher-portrait .play-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--gold); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.teacher-portrait .flag-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.95);
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.teacher-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.teacher-body h3 { color: var(--primary); margin-bottom: 4px; font-size: 1.2rem; }
.teacher-role {
  font-size: 0.85rem; color: var(--gold-dark); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}
.teacher-meta {
  font-size: 0.85rem; color: var(--gray-text);
  border-top: 1px solid var(--gray-light);
  padding-top: 10px; margin-bottom: 12px;
}
.teacher-meta div { margin-bottom: 3px; }
.teacher-meta strong { color: var(--dark); }
.teacher-quote {
  font-style: italic; font-size: 0.92rem;
  color: var(--dark); line-height: 1.55;
  padding-left: 12px; border-left: 3px solid var(--gold);
  margin-bottom: 14px; flex: 1;
}
.teacher-actions { display: flex; gap: 8px; }
.teacher-actions .btn {
  padding: 8px 14px; font-size: 0.82rem;
  flex: 1; text-align: center;
}

.teacher-coming-soon {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: var(--white);
  padding: 4px 10px; border-radius: 4px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* ============ FACILITY ITEMS ============ */
.facility-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.facility-card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  padding: 22px;
  border-radius: 6px;
  box-shadow: 0 2px 12px var(--shadow);
}
.facility-card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 8px; }
.facility-card p { font-size: 0.88rem; color: var(--gray-text); }

/* ============ PARTNER LOGOS ============ */
.partners {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px; align-items: center;
  padding: 24px 0;
}
.partners .logo {
  height: 60px;
  display: flex; align-items: center; justify-content: center;
  filter: grayscale(40%); opacity: 0.85;
  transition: all 0.2s;
}
.partners .logo:hover { filter: none; opacity: 1; }
.partners .logo img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* ============ NETWORK 15 SCHOOLS ============ */
.network {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.net-item {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 16px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  text-decoration: none;
  gap: 8px;
}
.net-item:hover {
  background: var(--primary); color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px var(--shadow-strong);
}
.net-item:hover .code, .net-item:hover .name { color: var(--white); }
.net-item .logo-wrap {
  width: 56px; height: 56px;
  background: var(--cream); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border: 2px solid var(--gray-light);
  flex-shrink: 0;
}
.net-item:hover .logo-wrap { background: var(--white); border-color: var(--gold); }
.net-item .logo-wrap img { width: 40px; height: 40px; object-fit: contain; }
.net-item .code {
  font-family: "Playfair Display", serif; font-weight: 700;
  color: var(--primary); font-size: 1rem; line-height: 1;
}
.net-item .name { font-size: 0.78rem; color: var(--gray-text); line-height: 1.35; }
.net-item.you-are-here {
  background: var(--primary); color: var(--white);
  border-color: var(--gold);
  border-width: 2px;
}
.net-item.you-are-here .code, .net-item.you-are-here .name { color: var(--white); }
.net-item.you-are-here .logo-wrap { background: var(--white); border-color: var(--gold); }
.net-item.you-are-here .here-badge {
  display: inline-block;
  background: var(--gold); color: var(--primary-dark);
  font-size: 0.65rem; font-weight: 700; padding: 2px 8px;
  border-radius: 999px; margin-top: 2px;
}

/* ============ CALENDAR ============ */
.cal-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.cal-tab {
  padding: 8px 18px; border-radius: 999px;
  background: var(--white); border: 2px solid var(--primary);
  color: var(--primary); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: all 0.2s;
}
.cal-tab:hover, .cal-tab.active { background: var(--primary); color: var(--white); }
.cal-list { display: grid; gap: 10px; max-width: 720px; margin: 0 auto; }
.cal-item {
  background: var(--white); padding: 14px 20px;
  border-radius: 6px; border-left: 4px solid var(--gold);
  display: grid; grid-template-columns: 80px 1fr; gap: 16px;
  box-shadow: 0 1px 6px var(--shadow);
}
.cal-item .time { font-weight: 600; color: var(--primary); font-size: 0.9rem; }

/* ============ CTA STRIP ============ */
.cta-strip {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  padding: 56px 24px;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: 12px; }
.cta-strip p { font-size: 1.05rem; margin-bottom: 28px; opacity: 0.95; }
.cta-strip .btn-primary { background: var(--gold); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
  align-items: start;
}
.contact-info p { margin-bottom: 8px; }
.contact-info strong { color: var(--primary); display: inline-block; min-width: 80px; }
.contact-map {
  background: var(--cream);
  min-height: 380px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ============ FOOTER ============ */
.footer {
  background: var(--primary-dark); color: rgba(255,255,255,0.85);
  padding: 48px 0 24px;
}
.footer h4 { color: var(--gold); font-family: "Sarabun", sans-serif; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 32px;
}
.footer-grid a { display: block; color: rgba(255,255,255,0.7); font-size: 0.9rem; padding: 4px 0; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand { font-family: "Playfair Display", serif; font-size: 1.4rem; color: var(--white); font-weight: 700; margin-bottom: 8px; }
.footer-tagline { font-size: 0.9rem; color: var(--gold); margin-bottom: 14px; }
.footer-mission { font-size: 0.85rem; line-height: 1.6; color: rgba(255,255,255,0.65); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px; text-align: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
}
.footer-social { display: flex; gap: 12px; margin-top: 14px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
}
.footer-social a:hover { background: var(--gold); color: var(--primary-dark); }

/* ============ EVENT BANNER (TOWN HALL ๒๗ มิ.ย.) ============ */
.banner-event {
  background: var(--gold); color: var(--primary-dark);
  padding: 12px 0; text-align: center;
  font-weight: 600; font-size: 0.95rem;
}
.banner-event .small { font-size: 0.82rem; opacity: 0.9; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1140px) {
  .nav-links a { font-size: 0.82rem; padding: 6px 8px; }
  .nav-brand-text .name { font-size: 0.95rem; }
  .nav-brand-text .sub { font-size: 0.68rem; }
}
@media (max-width: 940px) {
  .nav-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .nav-links { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .director-card { grid-template-columns: 1fr; text-align: center; }
  .director-card .photo { margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-item { grid-template-columns: 70px 1fr; }
  .hero { min-height: 480px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links a { padding: 6px 10px; font-size: 0.85rem; }
  .hero-cta { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
}

/* ============ UTILITY ============ */
.placeholder-img {
  background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--gray-text); font-size: 0.85rem; text-align: center;
  gap: 6px;
}
.placeholder-img .photo-num {
  display: inline-block;
  background: var(--primary); color: var(--gold);
  font-family: "Playfair Display", serif; font-weight: 700;
  font-size: 1.1rem;
  padding: 4px 14px; border-radius: 999px;
  letter-spacing: 0.04em;
}
.todo-link { color: var(--gold-dark); font-style: italic; font-size: 0.85rem; }

/* ===== Curriculum Advisor — Kaitie McAlpine ===== */
.advisor-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 28px var(--shadow-strong);
  border-top: 5px solid var(--gold);
  align-items: start;
  margin-bottom: 28px;
}
.advisor-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.advisor-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.advisor-bio { color: var(--text); }
.advisor-name {
  font-family: "Playfair Display", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 4px;
}
.advisor-name small {
  display: block;
  font-family: inherit;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.01em;
  margin-top: 4px;
  font-style: italic;
}
.advisor-meta {
  list-style: none;
  padding: 14px 0 14px 0;
  margin: 14px 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  font-size: 0.93rem;
  line-height: 1.7;
}
.advisor-meta li {
  padding: 3px 0;
  padding-left: 18px;
  position: relative;
}
.advisor-meta li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}
.advisor-meta strong { color: var(--primary); }
.advisor-pull {
  font-style: italic;
  font-size: 0.98rem;
  color: var(--primary-dark);
  line-height: 1.6;
  margin-top: 14px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.advisor-video {
  background: var(--white);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 24px var(--shadow-strong);
  border-top: 4px solid var(--primary);
}
.advisor-video-label {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.advisor-video video {
  width: 100%;
  border-radius: 8px;
  display: block;
  background: var(--primary-dark);
}
@media (max-width: 720px) {
  .advisor-card { grid-template-columns: 1fr; padding: 20px; gap: 18px; }
  .advisor-photo { max-width: 240px; margin: 0 auto; }
  .advisor-name { font-size: 1.35rem; text-align: center; }
  .advisor-name small { text-align: center; }
}

/* ===== Velicity featured layout (KG · single teacher + interview video) ===== */
.velicity-feature {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 22px;
  align-items: start;
}
.velicity-card .lt-card {
  max-width: 280px;
}
.velicity-video {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 22px var(--shadow);
  border-top: 4px solid var(--gold);
}
.velicity-video-label {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.98rem;
  margin-bottom: 10px;
  letter-spacing: 0.005em;
}
.velicity-video video {
  width: 100%;
  border-radius: 6px;
  display: block;
  background: var(--primary-dark);
  max-height: 420px;
}
@media (max-width: 760px) {
  .velicity-feature { grid-template-columns: 1fr; }
  .velicity-card .lt-card { max-width: 100%; }
}

/* ===== Static News + Calendar lists (SWIS feed fallback · 26 มิ.ย. 69) ===== */
.static-news-list,
.static-calendar-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.static-news-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}
.static-news-list li:last-child { border-bottom: none; }
.news-date-block {
  background: var(--primary);
  color: var(--white);
  border-radius: 6px;
  padding: 6px 4px;
  text-align: center;
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  height: fit-content;
}
.news-date-block .day {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
}
.news-date-block .my {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.news-body strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.news-body p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.5;
}

.static-calendar-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
  align-items: center;
}
.static-calendar-list li:last-child { border-bottom: none; }
.static-calendar-list li.cal-today {
  background: linear-gradient(90deg, rgba(201,169,97,0.18), transparent);
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
  border-bottom: 1px dashed var(--gold);
  border-left: 3px solid var(--gold);
}
.cal-date {
  background: var(--cream);
  border: 2px solid var(--gold);
  border-radius: 6px;
  padding: 4px 2px;
  text-align: center;
  font-family: "Sarabun", sans-serif;
  line-height: 1.1;
}
.cal-today .cal-date {
  background: var(--gold);
  color: var(--primary-dark);
}
.cal-date .day {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}
.cal-today .cal-date .day { color: var(--primary-dark); }
.cal-date .my {
  display: block;
  font-size: 0.72rem;
  color: var(--gray-text);
  margin-top: 2px;
}
.cal-today .cal-date .my { color: var(--primary-dark); }
.cal-event strong {
  display: block;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.cal-event .cal-time {
  display: block;
  font-size: 0.78rem;
  color: var(--gray-text);
}

.static-album-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.alb-tile {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: transform 0.2s;
}
.alb-tile:hover { transform: translateY(-2px); }
.alb-tile span {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: var(--white);
  padding: 18px 10px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
}

/* ===== Quality & Management section ===== */
.quality-block {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 26px;
  box-shadow: 0 4px 18px var(--shadow);
  border-top: 4px solid var(--gold);
}
.quality-block:last-child { margin-bottom: 0; }
.quality-h3 {
  font-family: "Playfair Display", serif;
  color: var(--primary);
  font-size: 1.4rem;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 2px dashed var(--gold);
  font-weight: 700;
  letter-spacing: -0.005em;
}
@media (max-width: 600px) {
  .quality-block { padding: 20px; }
  .quality-h3 { font-size: 1.15rem; }
}

/* ===== Psychology Team ===== */
.psy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}
.psy-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 22px var(--shadow);
  border-top: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
}
.psy-photo {
  width: 100%;
  aspect-ratio: 1179 / 620;
  background: #FFE5EC;
  overflow: hidden;
}
.psy-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.psy-body { padding: 18px 22px 22px; }
.psy-name {
  font-family: "Sarabun", "Noto Sans Thai", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.psy-role {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 10px;
}
.psy-role span {
  color: var(--gray-text);
  font-weight: 500;
  font-size: 0.85rem;
  font-style: italic;
}
.psy-grades {
  font-size: 0.92rem;
  color: var(--text);
  background: #FDF4E8;
  padding: 8px 14px;
  border-radius: 6px;
  border-left: 3px solid var(--gold);
}
.psy-grades strong { color: var(--primary); }
.psy-note {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 6px;
  font-size: 0.93rem;
  line-height: 1.6;
  box-shadow: 0 2px 8px var(--shadow);
}
.psy-note strong { color: var(--primary); }
@media (max-width: 600px) {
  .psy-name { font-size: 1.15rem; }
}
