/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height-desktop);
}

.page--no-hero .site-header {
  position: fixed;
  background-color: var(--color-navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 7.2rem;
  gap: 1.5rem;
}

/* --- Logo --- */
.header-logo {
  display: flex;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo__desktop {
  height: 66px;
  width: auto;
}

.header-logo__mobile {
  display: none;
  height: 32px;
  width: auto;
}

/* --- Navigation --- */
.header-nav__list {
  display: flex;
  align-items: center;
  gap: 9.6rem;
  list-style: none;
}

.header-nav__link {
  font-family: var(--font-base);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-nav__link:hover,
.header-nav__link:focus-visible {
  color: var(--color-red);
}

.header-nav__link--active {
  font-weight: 600;
  color: var(--color-red);
}

/* --- Mobile toggle (hidden on desktop) --- */
.header-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-shrink: 0;
}

/* ============================================================
   MOBILE NAV DRAWER
   ============================================================ */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
}

.mobile-nav[aria-hidden="false"] {
  visibility: visible;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: var(--color-navy-overlay);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.mobile-nav[aria-hidden="false"] .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background-color: var(--color-navy);
  display: flex;
  flex-direction: column;
  padding: 2rem 2.4rem var(--space-lg);
  gap: var(--space-md);
  transform: translateX(100%);
  transition: transform 0.5s ease-in-out;
}

.mobile-nav[aria-hidden="false"] .mobile-nav__panel {
  transform: translateX(0);
  transition: transform 0.35s ease-in-out;
}

.mobile-nav__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  list-style: none;
}

.mobile-nav__link {
  font-family: var(--font-base);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  padding: 0.8rem 0;
  display: block;
  transition: color 0.2s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible {
  color: var(--color-red);
}

.mobile-nav__link--active {
  font-weight: 600;
  color: var(--color-red);
}

/* ============================================================
   HEADER — MOBILE  (≤ 768px)
   ============================================================ */

@media (max-width: 1067.98px) {
  .site-header {
    height: var(--header-height-mobile);
    top: 0;
  }

  .header-inner {
    padding: 0 2.4rem;
  }

  .header-logo__desktop {
    display: none;
  }

  .header-logo__mobile {
    display: block;
  }

  .header-nav {
    display: none;
  }

  .header-menu-toggle {
    display: flex;
  }
}

/* ============================================================
   HEADER — TABLET  (1068px – 1280px)
   ============================================================ */

@media (min-width: 1068px) and (max-width: 1280px) {
  .header-nav__list {
    gap: 4.8rem;
  }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  background-color: var(--color-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--header-height-desktop) 2.4rem 6.4rem;
  overflow: hidden;
  text-align: center;
}

/* --- Map Lottie background --- */
.hero__map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 143.2rem;
  height: 85.6rem;
  pointer-events: none;
}

/* --- Content (CTA + description) --- */
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  max-width: 900px;
  width: 100%;
}

.hero__title {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  line-height: 3.2rem;
  font-weight: 500;
  color: var(--color-white);
  display: grid;
}

.hero__title-text {
  grid-area: 1 / 1;
  opacity: 0;
  animation: hero-fade 24s linear infinite both;
}

.hero__title-text:nth-child(1) { animation-delay: 0s; }
.hero__title-text:nth-child(2) { animation-delay: 8s; }
.hero__title-text:nth-child(3) { animation-delay: 16s; }

@keyframes hero-fade {
  0%, 100% { opacity: 0; }
  6.67%, 26.67% { opacity: 1; }
  33.33% { opacity: 0; }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 4.8rem;
  background-color: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-base);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  background-color: var(--color-red-dark);
}

.hero__desc {
  width: 100%;
  font-family: var(--font-base);
  font-size: 2.4rem;
  line-height: normal;
  font-weight: 400;
  color: var(--color-white);
}

/* --- Partner logos --- */
.hero__partners {
  position: absolute;
  bottom: 4.8rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6.4rem;
}

.hero__partner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem;
}

/* ============================================================
   ABOUT HERO
   ============================================================ */

.about-hero {
  position: relative;
  width: 100%;
  height: 78vh;
  background-color: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--header-height-desktop) 7.2rem 6.4rem;
  overflow: hidden;
}

/* --- Lines Lottie background --- */
.about-hero__lines {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(35%) rotate(-150deg);
  width: 150vw;
  height: 150vw;
  pointer-events: none;
}

/* --- Globus Lottie background --- */
.about-hero__globus {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(10%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.about-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.about-hero__title {
  font-family: var(--font-base);
  font-size: 4.8rem;
  line-height: normal;
  font-weight: 700;
  color: var(--color-white);
}


/* ============================================================
   ABOUT CONTENT
   ============================================================ */

.about-content {
  background-color: var(--color-white);
  padding: 12rem 8rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.about-content__block {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.about-content__block--split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4rem;
  container-type: inline-size;
}

@container (min-width: calc(69.8rem + 54.2rem + 4rem)) {
  .about-content__logo-box {
    max-width: 54.2rem;
  }
}

.about-content__text-col {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  flex: 1 1 0;
  min-width: 69.8rem;
}

.about-content__para {
  font-family: var(--font-base);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: var(--color-text);
}

.about-content__block:last-child {
  padding-top: 1.6rem;
}

.about-content__link {
  color: var(--color-navy-dark);
  text-decoration: none;
}

.about-content__link:hover {
  text-decoration: underline;
}

/* --- Logo box --- */
.about-content__logo-box {
  background-color: var(--color-navy-dark);
  border-radius: 1.6rem;
  padding: 4rem 6.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex: 1 0 auto;
  align-self: stretch;
}

.about-content__logo-box-top {
  display: flex;
  align-items: center;
  height: 80px;
  width: fit-content;
  gap: 4rem;
}

.about-content__logo-box-top img[alt*="WFME"] {
  height: 56px;
  width: auto;
}

.about-content__logo-box-top img[alt*="FAIMER"] {
  height: 52px;
  width: auto;
}

.about-content__logo-box-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1.4rem;
}

.about-content__logo-box-bottom img {
  height: 66px;
  width: auto;
}

/* ============================================================
   FAQ HERO
   ============================================================ */

.hero-lottie {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 13%));
  width: 100vw;
  height: auto;
  pointer-events: none;
}

.subscribe-hero .hero-lottie {
  transform: translate(-50%, calc(-50% + 33%));
}

.hero-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 13%));
  width: auto;
  height: 65%;
  pointer-events: none;
  z-index: 1;
}

@media (orientation: portrait) {
  .hero-lottie {
    width: 150vw;
    transform: translate(-50%, -50%);
  }

  .hero-svg {
    width: auto;
    height: 50%;
    max-width: 80vw;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.subscribe-content .history__para {
  font-size: 2.4rem;
  line-height: normal;
}

.terms-content {
  background-color: var(--color-white);
  padding: calc(var(--header-height-desktop) + 4.8rem) 8rem 12rem;
}

.terms-content .history__title {
  margin-top: 0;
  margin-bottom: 2.4rem;
}

.terms-content__heading {
  font-family: var(--font-base);
  font-size: 2.4rem;
  line-height: normal;
  font-weight: 700;
  color: var(--color-text);
}

.terms-content__list {
  list-style: disc;
  padding-left: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.terms-content__updated {
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 2.4rem;
}

@media (max-width: 860px) {
  .terms-content {
    padding: calc(var(--header-height-mobile) + 4.8rem) 8rem 4.8rem;
  }

  .terms-content .history__title {
    margin-top: 4.8rem;
  }
}

@media (max-width: 639.98px) {
  .terms-content {
    padding: calc(var(--header-height-mobile) + 2.4rem) 2.4rem 4.8rem;
  }
}

.content__link {
  color: var(--color-link);
  text-decoration: none;
}

.content__link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.subscribe-content__arrow {
  display: inline-block;
  vertical-align: middle;
  width: 1.6rem;
  height: 1.6rem;
}

.faq-hero__title {
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================================
   SPONSORS
   ============================================================ */

.sponsors {
  background-color: var(--color-surface);
  padding: 12rem 8rem;
}

.sponsors__inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.sponsors__title {
  font-family: var(--font-base);
  font-size: 3.2rem;
  line-height: normal;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
}


.sponsors__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 6.4rem;
  column-gap: 3.2rem;
  width: 100%;
}

.sponsors__logo-box {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsors__logo-box img {
  max-height: 80px;
  width: auto;
  max-width: 100%;
}

.sponsors__logo-box:nth-child(4) img,
.sponsors__logo-box:nth-child(6) img {
  mix-blend-mode: multiply;
}

.sponsors__logo-box img[alt="Korean Institute"] {
  max-height: 60px;
}

/* ============================================================
   HISTORY
   ============================================================ */

.history {
  background-color: var(--color-white);
  padding: 12rem 8rem;
}

.history__inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.history__title {
  font-family: var(--font-base);
  font-size: 3.6rem;
  line-height: 100%;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
}

.history__body {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.history__para {
  font-family: var(--font-base);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: var(--color-text);
}

/* ============================================================
   FAQ CONTENT
   ============================================================ */

.faq-content {
  background-color: var(--color-white);
  padding: 12rem 8rem;
}

.faq-content__inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

/* --- Group --- */
.faq-group {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.faq-group__title {
  font-family: var(--font-base);
  font-size: 4.8rem;
  line-height: normal;
  font-weight: 600;
  color: var(--color-text);
}

.faq-group__divider {
  height: 1px;
  background-color: var(--color-faq-divider);
  width: 100%;
}

.faq-group__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* --- Item --- */
.faq-item {
  border-radius: 0.8rem;
  overflow: hidden;
  background-color: var(--color-faq-item);
  box-shadow: inset 0 0 0 0.5px var(--color-faq-border);
}


.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  padding: 1.6rem 2.4rem;
  background: none;
  border: none;
  box-shadow: inset 0 0 0 0.5px var(--color-faq-border);
  border-radius: 0.8rem;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__question {
  font-family: var(--font-base);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
}

.faq-item__arrow--up { display: none; }


/* Open state */
.faq-item--open .faq-item__trigger {
  background-color: var(--color-navy);
}

.faq-item--open .faq-item__question {
  color: var(--color-white);
}

.faq-item--open .faq-item__arrow--down { display: none; }
.faq-item--open .faq-item__arrow--up   { display: block; }

/* Answer */
.faq-item__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
}

.faq-item--open .faq-item__body {
  max-height: 60rem;
  padding: 2.4rem;
  opacity: 1;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease 0.15s;
}

.faq-item__answer {
  font-family: var(--font-base);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: var(--color-text);
}

/* --- CTA --- */
.faq-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  padding-top: 3.2rem;
}

.faq-cta__title {
  font-family: var(--font-base);
  font-size: 4.8rem;
  line-height: normal;
  font-weight: 600;
  color: var(--color-blue-mid);
  text-align: center;
}

.faq-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24rem;
  padding: 1.2rem 3.2rem;
  background-color: var(--color-white);
  box-shadow: inset 0 0 0 1px var(--color-blue-mid-subtle);
  border: none;
  border-radius: 0.8rem;
  font-family: var(--font-base);
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 500;
  color: var(--color-blue-mid);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.faq-cta__btn:hover {
  background-color: var(--color-blue-mid);
  color: var(--color-white);
}

/* ============================================================
   INFO STRIP
   ============================================================ */

.info-strip {
  width: 100%;
  padding: 12rem 8rem;
  background-color: var(--color-surface);
  display: flex;
  justify-content: center;
}

.info-strip__text {
  max-width: 70rem;
  font-family: var(--font-base);
  font-size: 2rem;
  line-height: 2.4rem;
  color: var(--color-text);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  position: relative;
  background-color: var(--color-navy);
  padding: 6.4rem 7.2rem 4rem;
}

.footer-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

/* --- Main content row --- */
.footer__content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4rem;
}

/* --- Left: logo + nav --- */
.footer__left {
  display: flex;
  flex-direction: column;
  flex: 9999 1 0;
  min-width: 496px;
  gap: 4rem;
}

.footer-logo {
  display: flex;
  flex-shrink: 0;
  text-decoration: none;
}

.footer-logo img {
  width: 355px;
  height: 66px;
}

.footer__nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.footer-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  list-style: none;
}

.footer-nav__link {
  font-family: var(--font-base);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav__link:hover,
.footer-nav__link:focus-visible {
  color: var(--color-red);
}

.footer-nav__link--active {
  font-weight: 600;
}

.footer-nav__divider {
  height: 2px;
  background-color: var(--color-blue-footer);
  width: 100%;
}

/* --- Right: contact --- */
.footer__right {
  display: flex;
  flex-direction: column;
  flex: 1 0 459px;
}

.footer__contact {
  background-color: var(--color-blue-contact);
  border-radius: 2.4rem;
  padding: 2.4rem;
}

.footer__contact p {
  font-family: var(--font-base);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
}

.footer__contact a {
  color: var(--color-white);
  text-decoration: underline;
}

/* --- Copyright --- */
.footer__copyright {
  font-family: var(--font-base);
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  color: var(--color-white);
}



/* ============================================================
   FOOTER — MOBILE  (≤ 639px)
   ============================================================ */

@media (max-width: 639.98px) {
  .hero__map {
    width: 73.4rem;
    height: 43.9rem;
  }
}


@media (max-width: 430px) {
  .hero__cta {
    font-size: 1.6rem;
    line-height: normal;
    padding: 2rem 4rem;
  }

  .about-hero {
    height: 100vh;
  }

  .about-hero__globus {
    width: 250%;
    transform: translateX(-50%) translateY(50%);
  }

  .hero__desc,
  .subscribe-content .history__para {
    font-size: 1.6rem;
    line-height: normal;
  }

  .faq-group__title,
  .faq-cta__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 639.98px) {
  .site-footer {
    padding: 6.4rem 2.4rem 4rem;
  }

  .footer-inner {
    width: auto;
    max-width: 364px;
    margin: 0 auto;
  }

  .footer__content {
    flex-direction: column;
    flex-wrap: nowrap;
    row-gap: 2.4rem;
  }

  .footer__left {
    align-items: center;
    min-width: 0;
    width: 100%;
    gap: 2.4rem;
  }

  .footer__right {
    flex: 1 0 0;
    width: 100%;
  }

  .footer__nav-wrapper {
    gap: 2.4rem;
    align-items: center;
  }

  .footer-nav__divider {
    width: 48px;
  }

  .footer-nav__list {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }


}

/* ============================================================
   FOOTER LOGO — SMALL MOBILE  (≤ 354px)
   ============================================================ */

@media (max-width: 354px) {
  .footer-logo img {
    width: 100%;
    height: auto;
  }
}


/* ============================================================
   HERO — MOBILE  (≤ 768px)
   ============================================================ */

@media (max-width: 768px) {
  .hero {
    padding-top: var(--header-height-mobile);
    padding-bottom: var(--space-lg);
    gap: 2.4rem;
  }

  .hero__partners {
    gap: 1.2rem;
  }

  .hero__partner {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
  }

  .hero__partner img {
    max-width: 140px;
    height: auto;
  }
}

/* ============================================================
   ABOUT HERO — MOBILE  (≤ 1067.98px)
   ============================================================ */

@media (max-width: 1600px) {
  .about-hero__globus {
    transform: translateX(-50%) translateY(25%);
  }
}

@media (max-width: 1067.98px) {
  .about-hero {
    padding: var(--header-height-mobile) 8rem 4.8rem;
  }

  .about-hero__globus {
    transform: translateX(-50%) translateY(40%);
  }

}

@media (max-width: 639.98px) {
  .about-hero {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }

  .about-hero__title {
    font-size: 3.2rem;
  }

}

/* ============================================================
   ABOUT CONTENT — TABLET/MOBILE  (≤ 768px)
   ============================================================ */

@media (max-width: 860px) {
  .about-content,
  .sponsors,
  .history,
  .faq-content,
  .info-strip {
    padding: 4.8rem 8rem;
  }

  .about-content__block--split {
    flex-direction: column;
  }

  .about-content__text-col {
    min-width: 0;
  }

  .about-content__logo-box {
    width: 100%;
    align-self: auto;
    padding: 3.2rem;
  }
}

/* ============================================================
   SPONSORS + HISTORY — MOBILE  (≤ 639.98px)
   ============================================================ */

@media (max-width: 639.98px) {
  .hero {
    height: 100vh;
  }

  .hero__desc,
  .subscribe-content .history__para {
    font-size: 2rem;
  }

  .about-content,
  .sponsors,
  .history,
  .faq-content,
  .info-strip {
    padding: 4.8rem 2.4rem;
  }

  .about-content__logo-box {
    width: 100%;
    align-self: auto;
    gap: 4rem;
  }

  .about-content__logo-box-top {
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
  }

  .about-content__logo-box-top img[alt*="WFME"],
  .about-content__logo-box-top img[alt*="FAIMER"] {
    height: auto;
    max-width: 60%;
  }

  .about-content__logo-box-bottom img {
    height: auto;
    width: 100%;
  }

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

  .history__title {
    font-size: 2.4rem;
  }

  .faq-group__title,
  .faq-cta__title {
    font-size: 3.2rem;
  }

  .sponsors__title {
    font-size: 2.4rem;
  }
}
