/* Facebook group banner styled as homeHeroContent */
.fb-banner-link {
  display: block;
  text-decoration: none;
  margin-bottom: 1.2rem;
}
.fb-banner-content {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(24,119,242,0.18), transparent 28%),
    linear-gradient(135deg, #103847 0%, #145463 58%, #1b7082 100%);
  box-shadow: 0 18px 36px rgba(13, 42, 52, 0.18);
  transition: box-shadow 0.15s, transform 0.13s;
}
.fb-banner-link:hover .fb-banner-content,
.fb-banner-link:focus-visible .fb-banner-content {
  box-shadow: 0 24px 48px rgba(24, 119, 242, 0.18);
  transform: translateY(-2px) scale(1.012);
}
.fb-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(24, 119, 242, 0.09);
  flex-shrink: 0;
}
.fb-banner-icon svg {
  display: block;
}
.fb-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.fb-banner-title {
  font-size: clamp(1.15rem, 1.1vw + 1rem, 1.55rem);
  font-weight: 700;
  color: #f5fbff;
  text-shadow: 0 2px 8px rgba(13,42,52,0.18), 0 1px 0 #1877f2;
}
.fb-banner-desc {
  font-size: 1.05rem;
  color: rgba(245, 251, 255, 0.9);
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(13,42,52,0.13);
}
@view-transition {
  navigation: auto;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  background: #0b0f12;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 1.5em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a {
  background-color: transparent;
}

b,
strong {
  font-weight: bolder;
}

img {
  border-style: none;
}

button,
input,
select {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button {
  -webkit-appearance: button;
}

button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[hidden] {
  display: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --page-ink: #121518;
  --page-bg: #f7f7f7;
  --header-ink: #f7fbff;
  --header-shadow: rgba(7, 18, 24, 0.35);
  --header-bg:
    radial-gradient(120% 160% at 12% 0%, rgba(255, 255, 255, 0.16), transparent 48%),
    radial-gradient(110% 140% at 90% 0%, rgba(245, 188, 93, 0.2), transparent 52%),
    linear-gradient(135deg, #0b2530 0%, #0f3a49 55%, #125764 100%);
  --header-height: 108px;
  --footer-height: 80px;
}

body {
  font-family: "Avenir Next", "Avenir", "Futura", "Gill Sans", "Trebuchet MS", sans-serif;
  line-height: 1.6;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--page-ink);
  background: var(--page-bg);
}

main,
footer {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 20px;
}

.siteHeaderBar {
  color: var(--header-ink);
  background: var(--header-bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 18px 40px var(--header-shadow);
  min-height: var(--header-height);
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: left;

  >a,
  >nav {
    position: relative;
    z-index: 1;
  }

  >a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    min-width: min(100%, 20rem);

    >img {
      width: clamp(64px, 5vw, 88px);
      height: clamp(64px, 5vw, 88px);
      object-fit: contain;
      border-radius: 18px;
      padding: 0.35rem;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 14px 28px rgba(5, 15, 20, 0.3);
    }

    >hgroup {
      display: flex;
      flex-direction: column;
      gap: 0.15rem;
    }

    h1,
    h2 {
      margin: 0;
      line-height: 1.15;
    }

    h1 {
      font-size: clamp(1.25rem, 1.1vw + 1rem, 1.85rem);
      font-weight: 700;
      letter-spacing: 0.2px;
    }

    h2 {
      font-size: clamp(0.95rem, 0.5vw + 0.85rem, 1.15rem);
      font-weight: 500;
      color: rgba(247, 251, 255, 0.78);
    }
  }

  nav {
    margin-left: auto;

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
    }

    a {
      color: inherit;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 0.95rem;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(8, 20, 26, 0.18);
      font-weight: 600;
      letter-spacing: 0.2px;
      transition: none;

      &:hover,
      &:focus-visible {
        background: rgba(255, 255, 255, 0.18);
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 10px 20px rgba(9, 23, 29, 0.25);
        outline: none;
      }
    }
  }

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(120deg,
        rgba(255, 255, 255, 0.08) 0 1px,
        transparent 1px 9px);
    opacity: 0.25;
    pointer-events: none;
  }

  @media (max-width: 720px) {
    align-items: flex-start;
    padding: 1.25rem 1.25rem 1.5rem;
    text-align: center;

    nav {
      width: 100%;

      ul {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
      }

      a {
        width: 100%;
        justify-content: center;
      }
    }

    >a {
      width: 100%;
      justify-content: center;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .siteHeaderBar>a,
  .siteHeaderBar nav li {
    animation: none;
  }
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.homeIntro,
.homeGallerySection,
.homeFeatures {
  display: grid;
  gap: 1.5rem;
}

.homeHero {
  display: block;
}

.homeHeroContent {
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
  color: #f5fbff;
  background:
    radial-gradient(circle at top right, rgba(244, 198, 110, 0.28), transparent 28%),
    linear-gradient(135deg, #103847 0%, #145463 58%, #1b7082 100%);
  box-shadow: 0 18px 36px rgba(13, 42, 52, 0.18);

  h2 {
    margin: 0 0 0.55rem;
  }

  p {
    margin: 0;
    max-width: 760px;
    color: rgba(245, 251, 255, 0.9);
  }
}

.homeEyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 251, 255, 0.82);
}

.homeSectionHead .homeEyebrow {
  color: #2b7d59;
}

.homeSectionHead {
  padding: 0 0.2rem;

  h2 {
    margin: 0 0 0.6rem;
    color: #103847;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
  }

  p:last-child {
    margin: 0;
    max-width: 52rem;
    color: #4d6570;
  }
}

.homeFeatureEyebrow {
  margin-bottom: 0.45rem;
  color: #1f6f81;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.homeFeaturesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
}

.homeFeatureCard {
  display: block;
  min-height: 96px;
  padding: 0.85rem 0.9rem;
  border: 1px solid #d8e3e8;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
  color: #173642;
  box-shadow: 0 8px 20px rgba(12, 38, 47, 0.07);
  text-decoration: none;

  h3 {
    margin: 0 0 0.4rem;
    color: #103847;
    font-size: 1.05rem;
  }

  p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  &.weather {
    background:
      radial-gradient(circle at top right, rgba(244, 198, 110, 0.18), transparent 32%),
      linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
  }
}

.homeWeatherTemp {
  margin-top: 0.25rem;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1;
  font-weight: 700;
  color: #103847;
}

.homeWeatherStatus {
  margin-top: 0.35rem;
  color: #4a6672;
  font-weight: 600;
  font-size: 0.92rem;
}

.homeWeatherMeta {
  margin-top: 0.75rem;
  padding-top: 0.7rem;
  border-top: 1px solid #d7e4ea;
  display: grid;
  gap: 0.35rem;

  p {
    color: #33515c;
    font-size: 0.82rem;
  }
}

.homeGallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 0.9rem;

  margin-top: 1.25rem;
}

.homeGalleryCard {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #eef4f7;
  box-shadow: 0 10px 22px rgba(12, 38, 47, 0.1);

  img {
    display: block;
    width: 100%;
    height: 330px;
    object-fit: cover;
    cursor: pointer;
  }
}

section {
  margin: 0;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: stretch;

  h2 {
    flex: 1 0 100%;
    margin: 0;
  }

  article {
    flex: 1 1 260px;
    padding: 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
  }
}

.transparency .head,
.contact .head {
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
  color: #f5fbff;
  background:
    radial-gradient(circle at top right, rgba(244, 198, 110, 0.28), transparent 28%),
    linear-gradient(135deg, #103847 0%, #145463 58%, #1b7082 100%);
  box-shadow: 0 18px 36px rgba(13, 42, 52, 0.18);

  h2 {
    margin: 0 0 0.55rem;
  }

  p {
    margin: 0;
    max-width: 760px;
    color: rgba(245, 251, 255, 0.9);
  }
}

.transparency {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

  .filesList {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .fileItem {
    display: contents;
  }

  .fileOpen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 120px;
    height: 120px;
    padding: 1rem 0.75rem 0.85rem;
    border: 1.5px solid #c9dfe8;
    border-radius: 12px;
    background: #f5fbfd;
    color: #103847;
    text-decoration: none;
    text-align: center;
    transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;

    &:hover,
    &:focus-visible {
      background: #e0f2f9;
      border-color: #2a7fa5;
      box-shadow: 0 4px 14px rgba(42, 127, 165, 0.15);
      outline: none;
    }
  }

  .fileIcon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    fill: #e53e3e;
  }

  .fileLabel {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.2;
    color: #103847;
  }

  .fileExt {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    background: #e53e3e;
    border-radius: 4px;
    padding: 0.1em 0.45em;
    line-height: 1.4;
  }
}

.healthyFood,
.behaviorRules,
.educationForms,
.vacanciesPage,
.aiToolsPage,
.entertainmentPage {
  display: grid;
  gap: 1.5rem;
}

.healthyFood {
  scroll-margin-top: 2rem;
}

.healthyFoodHero,
.behaviorRulesHero,
.educationFormsHero,
.vacanciesHero,
.aiToolsHero,
.entertainmentHero {
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
  color: #f5fbff;
  background:
    radial-gradient(circle at top right, rgba(244, 198, 110, 0.28), transparent 28%),
    linear-gradient(135deg, #103847 0%, #145463 58%, #1b7082 100%);
  box-shadow: 0 18px 36px rgba(13, 42, 52, 0.18);

  h2 {
    margin: 0 0 0.55rem;
  }

  p {
    margin: 0;
    max-width: 760px;
    color: rgba(245, 251, 255, 0.9);
  }
}

.healthyFoodBody,
.behaviorRulesBody,
.educationFormsBody,
.vacanciesBody,
.aiToolsBody,
.entertainmentBody {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;

  @media (max-width: 900px) {
    grid-template-columns: 1fr;
  }
}

.healthyFoodPoster,
.healthyFoodContent,
.behaviorRulesPoster,
.behaviorRulesContent article,
.educationFormsPoster,
.educationFormsContent article,
.vacanciesPoster,
.vacanciesContent article,
.aiToolsPoster,
.aiToolsContent article,
.entertainmentPoster,
.entertainmentGame,
.entertainmentLeaderboard,
.entertainmentMiniCard,
.entertainmentMiniGame {
  padding: 1.4rem 1.5rem;
  border: 1px solid #d8e3e8;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(12, 38, 47, 0.08);
}

.healthyFoodPoster,
.behaviorRulesPoster,
.educationFormsPoster,
.vacanciesPoster,
.aiToolsPoster,
.entertainmentPoster {
  background: linear-gradient(180deg, #f7fbfd 0%, #eef5f8 100%);
}

.teachersPage {
  display: grid;
  gap: 1.5rem;
}

.teachersHero {
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
  color: #f5fbff;
  background:
    radial-gradient(circle at top right, rgba(244, 198, 110, 0.28), transparent 28%),
    linear-gradient(135deg, #103847 0%, #145463 58%, #1b7082 100%);
  box-shadow: 0 18px 36px rgba(13, 42, 52, 0.18);

  h2 {
    margin: 0 0 0.55rem;
  }

  p {
    margin: 0;
    max-width: 760px;
    color: rgba(245, 251, 255, 0.9);
  }
}

.teachersLead {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;

  @media (max-width: 780px) {
    grid-template-columns: 1fr;
  }
}

.teachersLeadCard,
.teacherCard {
  padding: 1.35rem 1.5rem;
  border: 1px solid #d6e2e7;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(16, 36, 58, 0.08);
}

.teachersLeadEyebrow {
  margin: 0 0 0.4rem;
  color: #1f6f81;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.teachersLeadCard h3,
.teacherCard h3 {
  margin: 0 0 0.75rem;
}

.teachersLeadCard p:last-child,
.teacherCard p {
  margin: 0;
}

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

.teacherCard {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%);

  &::after {
    content: "";
    position: absolute;
    inset: auto -30px -30px auto;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(49, 143, 161, 0.12) 0%, rgba(49, 143, 161, 0) 70%);
    pointer-events: none;
  }
}

.teacherPhotoWrap {
  margin-bottom: 1rem;
  border-radius: 18px;
  overflow: hidden;
  background: #e4eef2;
  box-shadow: 0 12px 24px rgba(20, 45, 61, 0.12);
}

.teacherPhoto {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.healthyFoodPosterEyebrow,
.behaviorRulesPosterEyebrow,
.educationFormsPosterEyebrow,
.vacanciesPosterEyebrow,
.aiToolsPosterEyebrow,
.entertainmentPosterEyebrow {
  margin: 0 0 0.35rem;
  color: #1f6f81;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.healthyFoodPoster h3,
.healthyFoodContent h3,
.behaviorRulesPoster h3,
.behaviorRulesContent h3,
.educationFormsPoster h3,
.educationFormsContent h3,
.vacanciesPoster h3,
.vacanciesContent h3,
.aiToolsPoster h3,
.aiToolsContent h3,
.entertainmentPoster h3,
.entertainmentGame h3,
.entertainmentLeaderboard h3,
.entertainmentMiniCard h3,
.entertainmentMiniGame h3 {
  margin: 0 0 0.8rem;
}

.healthyFoodPoster p,
.healthyFoodContent p,
.behaviorRulesPoster p,
.behaviorRulesContent p,
.educationFormsPoster p,
.educationFormsContent p,
.vacanciesPoster p,
.vacanciesContent p,
.aiToolsPoster p,
.aiToolsContent p,
.entertainmentPoster p,
.entertainmentGame p,
.entertainmentLeaderboard p,
.entertainmentMiniCard p,
.entertainmentMiniGame p {
  margin: 0 0 0.85rem;
}

.healthyFoodPoster ul,
.behaviorRulesPoster ul,
.behaviorRulesContent ul,
.educationFormsContent ul,
.vacanciesPoster ul,
.vacanciesContent ul,
.aiToolsPoster ul,
.entertainmentPoster ul {
  margin: 0;
  padding-left: 1.15rem;
}

.healthyFoodPoster li,
.behaviorRulesPoster li,
.behaviorRulesContent li,
.educationFormsContent li,
.vacanciesPoster li,
.vacanciesContent li,
.aiToolsPoster li,
.entertainmentPoster li {
  margin-bottom: 0.55rem;
}

.healthyFoodContent,
.behaviorRulesContent,
.educationFormsContent,
.vacanciesContent,
.aiToolsContent,
.entertainmentContent {
  display: grid;
  gap: 1rem;
}

.healthyFoodContent h3,
.behaviorRulesContent h3,
.educationFormsContent h3,
.vacanciesContent h3,
.aiToolsContent h3,
.entertainmentContent h3 {
  color: #155062;
}

.clubPage .clubPhotoWrap {
  margin: 0.35rem auto 0;
  width: 100%;
}

.clubPage .clubPhotoWrapLeader {
  max-width: 140px;
}

.clubPage .clubPhotoWrapSection {
  max-width: 220px;
}

.clubPage .clubPhoto {
  aspect-ratio: 4 / 3;
  object-position: center;
}

.clubPage .clubPhotoWrapLeader .clubPhoto {
  aspect-ratio: 4 / 5;
}

.clubPage .clubInlineMedia {
  float: right;
  margin: 0 0 0.4rem 0.9rem;
}

.clubPage .clubInlineMedia .clubPhotoWrap {
  margin-top: 0;
}

.clubPage .clubLeaderCard {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
}

.clubPage .clubLeaderCard h3,
.clubPage .clubLeaderCard p {
  grid-column: 2;
}

.clubPage .clubLeaderCard .clubPhotoWrap {
  grid-column: 1;
  grid-row: 1 / span 2;
}

@media (max-width: 680px) {
  .clubPage .clubInlineMedia {
    float: none;
    margin: 0.5rem 0 0.65rem;
  }

  .clubPage .clubPhotoWrapSection {
    max-width: 280px;
  }

  .clubPage .clubLeaderCard {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .clubPage .clubLeaderCard h3,
  .clubPage .clubLeaderCard p,
  .clubPage .clubLeaderCard .clubPhotoWrap {
    grid-column: auto;
    grid-row: auto;
  }

  .clubPage .clubLeaderCard .clubPhotoWrap {
    max-width: 170px;
    margin: 0.2rem 0 0.3rem;
  }
}

.foodGallery {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.foodGallery figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #eef4f7;
  box-shadow: 0 10px 22px rgba(12, 38, 47, 0.1);
}

.foodGallery img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

@media (max-width: 760px) {
  .foodGallery {
    grid-template-columns: 1fr;
  }

  .foodGallery img {
    height: 220px;
  }
}

.entertainmentContent {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: start;

  @media (max-width: 980px) {
    grid-template-columns: 1fr;
  }
}

.entertainmentGameHead p:last-child,
.entertainmentMiniCard p:last-child,
.entertainmentLeaderboard p:last-child,
.entertainmentMiniGame p:last-child {
  margin-bottom: 0;
}

.entertainmentTag,
.quizStatLabel {
  display: inline-block;
  margin: 0 0 0.5rem;
  color: #1f6f81;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.quizStats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.quizStat {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: #f3f8fa;
  border: 1px solid #d8e3e8;

  strong {
    display: block;
    font-size: 1.2rem;
    color: #103847;
  }
}

.quizCard {
  display: grid;
  gap: 1rem;
}

.quizQuestion {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.4;
  color: #103847;
  font-weight: 700;
}

.quizAnswers {
  display: grid;
  gap: 0.75rem;
}

.quizAnswerButton,
.quizPrimaryButton,
.quizSecondaryButton {
  appearance: none;
  width: 100%;
  border-radius: 16px;
  font: inherit;
}

.quizAnswerButton {
  padding: 0.95rem 1rem;
  border: 1px solid #d8e3e8;
  background: linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
  color: #173642;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(12, 38, 47, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;

  &:hover,
  &:focus-visible {
    transform: translateY(-2px);
    border-color: #8cb6c3;
    box-shadow: 0 12px 22px rgba(12, 38, 47, 0.1);
    outline: none;
  }
}

.quizResult {
  display: grid;
  gap: 0.9rem;
}

.quizResult h4 {
  margin: 0;
  color: #103847;
  font-size: 1.35rem;
}

.quizResultScore {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  font-weight: 700;
  color: #155062;
}

.quizNicknameForm {
  display: grid;
  gap: 0.85rem;
}

.quizNicknameForm label {
  font-weight: 600;
  color: #2f4853;
}

.quizNicknameForm input {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border: 1px solid #c9dbe3;
  border-radius: 14px;
  font: inherit;
  color: #173642;
  background: #ffffff;
}

.quizNicknameForm input:focus {
  outline: 2px solid rgba(42, 127, 165, 0.22);
  border-color: #2a7fa5;
}

.quizResultActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.quizPrimaryButton,
.quizSecondaryButton {
  width: auto;
  min-height: 44px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-weight: 700;
}

.quizPrimaryButton {
  border: 1px solid #1f6f81;
  background: linear-gradient(135deg, #155062 0%, #1f6f81 60%, #2f8a96 100%);
  color: #ffffff;
}

.quizSecondaryButton {
  border: 1px solid #c9dbe3;
  background: #f6fbfd;
  color: #103847;
}

.quizSavedMessage {
  margin: 0;
  color: #2b7d59;
  font-weight: 700;
}

.entertainmentSideGrid {
  display: grid;
  gap: 1rem;
}

.miniGameForm {
  display: grid;
  gap: 0.75rem;
}

.miniGameForm input {
  width: 100%;
  min-height: 46px;
  padding: 0.8rem 0.95rem;
  border: 1px solid #c9dbe3;
  border-radius: 14px;
  font: inherit;
  color: #173642;
  background: #ffffff;
}

.miniGameForm input:focus {
  outline: 2px solid rgba(42, 127, 165, 0.22);
  border-color: #2a7fa5;
}

.miniGameActions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.miniGameStatus {
  color: #103847;
  font-weight: 600;
}

.miniGameMeta {
  color: #4f6772;
  font-size: 0.92rem;
}


.leaderboardList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.leaderboardList li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: #f5fbfd;
  border: 1px solid #d8e3e8;
  color: #173642;
}

.leaderboardList strong {
  color: #155062;
  white-space: nowrap;
}

.miniAnswer {
  margin: 0;
  color: #4f6772;
  font-weight: 600;
}

.aiToolType {
  margin: 0 0 0.45rem;
  color: #1f6f81;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.aiToolLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;

  a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border: 1px solid #c9dfe8;
    border-radius: 999px;
    background: #f5fbfd;
    color: #103847;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;

    &:hover,
    &:focus-visible {
      background: #e0f2f9;
      border-color: #2a7fa5;
      box-shadow: 0 4px 14px rgba(42, 127, 165, 0.15);
      outline: none;
    }
  }
}

.healthyFoodContent h3 {
  font-size: 1.55rem;
}

#news {
  display: grid;
  gap: 1.5rem;

  .head {
    padding: 1.35rem 1.5rem;
    border-radius: 20px;
    color: #f5fbff;
    background:
      radial-gradient(circle at top right, rgba(244, 198, 110, 0.28), transparent 28%),
      linear-gradient(135deg, #103847 0%, #145463 58%, #1b7082 100%);
    box-shadow: 0 18px 36px rgba(13, 42, 52, 0.18);

    h2 {
      margin: 0 0 0.55rem;
    }

    p {
      margin: 0;
      max-width: 760px;
      color: rgba(245, 251, 255, 0.9);
    }
  }
}

.newsList {
  display: grid;
  gap: 1.5rem;
}

.newsCard {
  padding: 1.4rem 1.5rem;
  border: 1px solid #d8e3e8;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(12, 38, 47, 0.08);
}

.newsCardBody h3 {
  margin: 0 0 0.85rem;
  color: #103847;
}

.newsCardBody p {
  margin: 0 0 0.85rem;
}

.newsMeta {
  margin: 0 0 0.45rem;
  color: #2b7d59;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.newsDate {
  margin: 0 0 0.55rem;
  color: #5a7480;
  font-size: 0.92rem;
}

.newsReadMore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.6rem 1rem;
  border: 1px solid #c9dfe8;
  border-radius: 999px;
  background: #f5fbfd;
  color: #103847;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.newsReadMore:hover,
.newsReadMore:focus-visible {
  background: #e0f2f9;
  border-color: #2a7fa5;
  box-shadow: 0 4px 14px rgba(42, 127, 165, 0.15);
  outline: none;
}

.newsDocuments {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.newsDocuments a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid #c9dfe8;
  border-radius: 16px;
  background: #f5fbfd;
  color: #103847;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(12, 38, 47, 0.06);
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.newsDocuments a:hover,
.newsDocuments a:focus-visible {
  background: #e0f2f9;
  border-color: #2a7fa5;
  box-shadow: 0 4px 14px rgba(42, 127, 165, 0.15);
  outline: none;
}

.newsDocuments strong,
.newsDocuments small {
  display: block;
}

.newsDocuments small {
  margin-top: 0.18rem;
  color: #5a7480;
  line-height: 1.35;
}

.newsDocumentExt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: #e53e3e;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.newsGallery {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
}

.newsGallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #eef4f7;
  box-shadow: 0 10px 22px rgba(12, 38, 47, 0.1);
}

.galleryThumb {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.newsGallery img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  cursor: pointer;
}

.newsVideo {
  margin: 1.25rem 0;
  overflow: hidden;
  border-radius: 18px;
  background: #0d2a34;
  box-shadow: 0 14px 30px rgba(12, 38, 47, 0.14);
}

.newsVideo video {
  display: block;
  width: 100%;
  max-height: 76vh;
  background: #0d2a34;
}

.newsEmbedVideo {
  margin: 1.25rem 0 0;
  overflow: hidden;
  border-radius: 18px;
  background: #0d2a34;
  box-shadow: 0 14px 30px rgba(12, 38, 47, 0.14);
}

.newsEmbedVideo iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #0d2a34;
}

.newsPoem {
  margin-top: 1.25rem;
  padding: 1.15rem 1.25rem;
  border-left: 4px solid #2b7d59;
  border-radius: 0 16px 16px 0;
  background: #f5fbfd;
  color: #23424d;
  font-size: 1.02rem;
  line-height: 1.72;
}

.newsPoem p:last-child {
  margin-bottom: 0;
}

.newsVideoGrid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.newsVideoCard {
  overflow: hidden;
  border-radius: 18px;
  background: #0d2a34;
  box-shadow: 0 14px 30px rgba(12, 38, 47, 0.14);
}

.newsVideoCard video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0d2a34;
}

body.lightboxOpen {
  overflow: hidden;
}

.galleryLightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(10, 17, 23, 0.88);
  backdrop-filter: blur(4px);
}

.galleryLightbox[hidden] {
  display: none !important;
}

.galleryLightboxBackdrop {
  position: absolute;
  inset: 0;
}

.galleryLightboxFigure {
  position: relative;
  z-index: 1;
  margin: 0;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.galleryLightboxFigure img {
  max-width: min(92vw, 1200px);
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.galleryLightboxFigure figcaption {
  color: #f5fbff;
  text-align: center;
  max-width: 900px;
}

.galleryLightboxClose,
.galleryLightboxNav {
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  cursor: pointer;
}

.galleryLightboxClose {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  font-size: 1.9rem;
  line-height: 1;
}

.galleryLightboxNav {
  position: relative;
  z-index: 1;
  width: 3.25rem;
  height: 3.25rem;
  font-size: 1.8rem;
  line-height: 1;
}

.galleryLightboxClose:hover,
.galleryLightboxClose:focus-visible,
.galleryLightboxNav:hover,
.galleryLightboxNav:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  outline: none;
}

@media (max-width: 720px) {
  .galleryLightbox {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 1rem;
  }

  .galleryLightboxNav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .galleryLightboxNav.prev {
    left: 0.5rem;
  }

  .galleryLightboxNav.next {
    right: 0.5rem;
  }

  .galleryLightboxFigure img {
    max-width: 100%;
    max-height: 74vh;
  }
}

.about {
  display: grid;
  gap: 1.5rem;
}

.aboutHero {
  padding: 1.35rem 1.5rem;
  border-radius: 20px;
  color: #f5fbff;
  background:
    radial-gradient(circle at top right, rgba(244, 198, 110, 0.28), transparent 28%),
    linear-gradient(135deg, #103847 0%, #145463 58%, #1b7082 100%);
  box-shadow: 0 18px 36px rgba(13, 42, 52, 0.18);

  h2 {
    margin: 0 0 0.55rem;
  }

  p {
    margin: 0;
    max-width: 760px;
    color: rgba(245, 251, 255, 0.9);
  }
}

.aboutSections {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: stretch;
}

.aboutQuickLinks {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid #d8e3e8;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(12, 38, 47, 0.08);

  h3 {
    margin: 0;
    color: #103847;
  }
}

.aboutCard {
  flex: 1 1 260px;
  padding: 1.35rem 1.5rem;
  border: 1px solid #d8e3e8;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(12, 38, 47, 0.08);

  h3 {
    margin: 0 0 0.8rem;
    color: #103847;
  }

  p:last-child {
    margin-bottom: 0;
  }
}

.aboutCardEyebrow {
  margin: 0 0 0.35rem;
  color: #1f6f81;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.aboutMediaCard {
  flex-basis: 100%;
}

.history {
  flex-basis: 100%;

  .content {
    margin-top: 0.9rem;
    padding: 1rem 1rem 0.2rem;
    border: 1px solid #dce6eb;
    border-radius: 16px;
    background: #f8fcff;
    max-height: 400px;
    overflow-y: auto;

    h4 {
      margin-top: 0;
    }

    p {
      margin: 0 0 0.9rem;
    }

    &::after {
      content: "";
      display: block;
      clear: both;
    }
  }

  .leadFigure,
  .inlineFigure {
    img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 8px;
      border: 1px solid #d5e0e8;
    }

    figcaption {
      margin-top: 0.35rem;
      font-size: 0.82rem;
      line-height: 1.35;
      color: #314955;
    }
  }

  .leadFigure {
    float: left;
    width: 220px;
    margin: 0.1rem 1rem 0.7rem 0;
  }

  .inlineFigure {
    float: left;
    width: 344px;
    margin: 0.1rem 1rem 0.7rem 0;

    &.right {
      float: right;
      margin: 0.1rem 0 0.7rem 1rem;
    }
  }

  @media (max-width: 720px) {
    .leadFigure {
      float: none;
      width: min(100%, 300px);
      margin: 0 auto 0.9rem;
    }

    .inlineFigure {
      float: none;
      width: min(100%, 468px);
      margin: 0 auto 0.9rem;

      &.right {
        float: none;
        margin: 0 auto 0.9rem;
      }
    }
  }
}

.contact {
  .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .card {
    flex: 1 1 260px;
    padding: 1rem;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
  }

  .hours {
    margin-top: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid #d9e2e8;

    h3 {
      margin: 0 0 0.45rem;
      font-size: 1rem;
    }

    p {
      margin: 0 0 0.35rem;
    }
  }

  .mapBlock {
    flex: 1 1 320px;

    h3 {
      margin: 0 0 0.75rem;
    }
  }

  .map {
    display: block;
    border: 0;
    border-radius: 8px;
  }
}

.transparency .grid,
.aboutQuickLinks .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;

  @media (max-width: 720px) {
    grid-template-columns: 1fr;
  }
}

.transparency .card,
.aboutQuickLinks .card {
  appearance: none;
  width: 100%;
  min-height: 112px;
  padding: 1rem 1.05rem;
  border: 1px solid #d8e3e8;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f4fafc 100%);
  color: #173642;
  font: inherit;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(12, 38, 47, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  text-decoration: none;

  &:hover,
  &:focus-visible {
    transform: translateY(-3px);
    border-color: #94bcc8;
    box-shadow: 0 16px 30px rgba(12, 38, 47, 0.14);
    outline: none;
  }

  &.active {
    border-color: #1f6f81;
    color: #ffffff;
    background: linear-gradient(135deg, #155062 0%, #1f6f81 55%, #2f8a96 100%);
    box-shadow: 0 18px 34px rgba(21, 80, 98, 0.28);
  }

  @media (max-width: 720px) {
    min-height: auto;
  }
}

.infoList {
  margin: 0;
  padding-left: 1.15rem;
  color: #36515b;
}

.infoList li {
  margin-bottom: 0.55rem;
}

.infoList li:last-child {
  margin-bottom: 0;
}

.siteFooter {
  display: block;
  min-height: var(--footer-height);
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--header-bg);
  color: #fff;
  text-align: center;
  height: var(--footer-height);
  max-width: 100%;
  padding: 0 5rem;

  @media (max-width: 720px) {
    height: auto;
    padding: 1.25rem 1.25rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
}
