html,
body {
  margin: 0;
  padding: 0;
}    
    

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

.aoneusa-header,
.aoneusa-header * {
  box-sizing: border-box;
}

.aoneusa-header {
  --nav-teal: #22a7b9;
  --nav-teal-dark: #128b9d;
  --nav-text: #18363c;
  --nav-muted: #6b7b7f;
  --nav-border: #e3edef;
  --nav-hover: #f1fafb;

  position: relative;
  z-index: 9999;

  width: 100%;

  background: var(--nav-teal);

  font-family: Inter, "Google Sans", Arial, sans-serif;
}

.aoneusa-nav-wrap {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 40px;
}


/* ==================================
   LOGO
   ================================== */

.aoneusa-logo {
  flex-shrink: 0;

  color: #ffffff;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: -1.5px;
  line-height: 1;

  text-decoration: none;
}

.aoneusa-logo:hover,
.aoneusa-logo:focus {
  color: #ffffff;
}


/* ==================================
   DESKTOP NAVIGATION
   ================================== */

.aoneusa-navigation {
  margin-left: auto;
}

.aoneusa-nav-list {
  display: flex;
  align-items: center;

  gap: 7px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.aoneusa-nav-item {
  position: relative;

  margin: 0;
  padding: 0;
}

.aoneusa-nav-link {
  min-height: 46px;

  padding: 12px 16px;

  display: flex;
  align-items: center;

  gap: 8px;

  border: 0;
  border-radius: 8px;

  background: transparent;

  color: #ffffff;

  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;

  text-decoration: none;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.aoneusa-nav-link:hover,
.aoneusa-nav-link:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;

  outline: none;
}


/* Arrow */

.aoneusa-arrow {
  width: 7px;
  height: 7px;

  margin-top: -4px;

  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;

  transform: rotate(45deg);

  transition: transform 0.2s ease;
}


/* ==================================
   MEGA MENU
   ================================== */

.aoneusa-mega-menu {
  position: absolute;

  top: calc(100% + 12px);
  right: -200px;

  width: 760px;

  padding: 24px;

  background: #ffffff;

  border: 1px solid var(--nav-border);
  border-radius: 14px;

  box-shadow:
    0 20px 50px rgba(18, 61, 70, 0.14),
    0 4px 12px rgba(18, 61, 70, 0.06);

  opacity: 0;
  visibility: hidden;

  transform: translateY(9px);

  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}


/* Invisible hover bridge */

.aoneusa-mega-menu::before {
  content: "";

  position: absolute;

  top: -14px;
  left: 0;

  width: 100%;
  height: 14px;
}


/* Heading */

.aoneusa-mega-heading {
  padding: 0 2px 18px;

  margin-bottom: 14px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  border-bottom: 1px solid var(--nav-border);
}

.aoneusa-mega-heading strong {
  display: block;

  margin-bottom: 4px;

  color: var(--nav-text);

  font-size: 17px;
  font-weight: 700;
}

.aoneusa-mega-heading span {
  display: block;

  color: var(--nav-muted);

  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}


/* View All */

.aoneusa-view-all {
  flex-shrink: 0;

  padding: 8px 13px;

  color: var(--nav-teal-dark);

  background: #eef9fa;

  border-radius: 7px;

  font-size: 13px;
  font-weight: 650;

  text-decoration: none;
}

.aoneusa-view-all:hover,
.aoneusa-view-all:focus-visible {
  background: #e1f5f7;
  color: #087b8c;

  outline: none;
}


/* 3 columns */

.aoneusa-mega-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 5px 24px;
}

.aoneusa-mega-column {
  min-width: 0;
}

.aoneusa-mega-column a {
  position: relative;

  display: block;

  padding: 10px 10px 10px 24px;

  border-radius: 7px;

  color: #315057;

  font-size: 14px;
  font-weight: 550;
  line-height: 1.4;

  text-decoration: none;

  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    padding-left 0.18s ease;
}


/* Small dot */

.aoneusa-mega-column a::before {
  content: "";

  position: absolute;

  left: 10px;
  top: 50%;

  width: 5px;
  height: 5px;

  border-radius: 50%;

  background: var(--nav-teal);

  transform: translateY(-50%);
}

.aoneusa-mega-column a:hover,
.aoneusa-mega-column a:focus-visible {
  padding-left: 27px;

  background: var(--nav-hover);

  color: var(--nav-teal-dark);

  outline: none;
}


/* Desktop mega menu */

@media (min-width: 901px) {

  .aoneusa-has-mega:hover > .aoneusa-mega-menu,
  .aoneusa-has-mega:focus-within > .aoneusa-mega-menu,
  .aoneusa-has-mega.menu-open > .aoneusa-mega-menu {

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }

  .aoneusa-has-mega:hover >
  .aoneusa-mega-toggle .aoneusa-arrow,

  .aoneusa-has-mega:focus-within >
  .aoneusa-mega-toggle .aoneusa-arrow,

  .aoneusa-has-mega.menu-open >
  .aoneusa-mega-toggle .aoneusa-arrow {

    transform: rotate(225deg);
  }
}


/* ==================================
   MOBILE HAMBURGER
   ================================== */

.aoneusa-menu-toggle {
  display: none;

  width: 45px !important;
  min-width: 45px !important;
  max-width: 45px !important;

  height: 45px !important;
  min-height: 45px !important;

  padding: 9px !important;
  margin: 0 !important;

  background: transparent !important;

  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  border-radius: 8px !important;

  box-shadow: none !important;

  cursor: pointer;
}

.aoneusa-menu-toggle span {
  display: block;

  width: 23px;
  height: 2px;

  margin: 5px auto;

  background: #ffffff;

  border-radius: 5px;

  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}


/* ==================================
   TABLET + MOBILE
   ================================== */

@media (max-width: 900px) {

  .aoneusa-nav-wrap {
    width: calc(100% - 30px);

    min-height: 78px;

    flex-wrap: nowrap;

    gap: 0;
  }

  .aoneusa-logo {
    font-size: 35px;
  }

  .aoneusa-menu-toggle {
    display: block;
  }


  /* Hamburger animation */

  .aoneusa-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .aoneusa-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .aoneusa-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }


  /* Main mobile navigation */

  .aoneusa-navigation {
  position: absolute;
  top: 100%;
  left: 0;

  width: 100%;

  max-height: 0;

  margin: 0;

  overflow: hidden;

  background: var(--nav-teal);

  transition: max-height 0.4s ease;
}

  .aoneusa-navigation.mobile-open {
    max-height: 1800px;
  }

  .aoneusa-nav-list {
    display: block;

    padding: 6px 0 18px;
  }

  .aoneusa-nav-item {
    width: 100%;

    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .aoneusa-nav-link {
    width: 100%;

    min-height: 54px;

   padding: 15px 18px;

    justify-content: space-between;

    border-radius: 0;

    font-size: 16px;

    text-align: left;
  }

  .aoneusa-nav-link:hover,
  .aoneusa-nav-link:focus-visible {
    background: transparent;
  }


  /* Mobile mega menu */

  .aoneusa-mega-menu {
    position: static;

    width: 100%;
    max-height: 0;

    padding: 0;

    overflow: hidden;

    background: rgba(0, 0, 0, 0.06);

    border: 0;
    border-radius: 8px;

    box-shadow: none;

    opacity: 1;
    visibility: visible;

    transform: none;

    transition:
      max-height 0.45s ease,
      padding 0.3s ease;
  }

  .aoneusa-mega-menu::before {
    display: none;
  }

  .aoneusa-has-mega.menu-open >
  .aoneusa-mega-menu {

    max-height: 1600px;

    padding: 15px 12px 17px;
  }


  /* Mobile mega heading */

  .aoneusa-mega-heading {
    padding: 3px 5px 13px;

    margin-bottom: 8px;

    border-color: rgba(255, 255, 255, 0.16);
  }

  .aoneusa-mega-heading strong {
    color: #ffffff;

    font-size: 15px;
  }

  .aoneusa-mega-heading span {
    color: rgba(255, 255, 255, 0.75);

    font-size: 12px;
  }

  .aoneusa-view-all {
    display: none;
  }


  /* Categories become single column */

  .aoneusa-mega-grid {
    grid-template-columns: 1fr;

    gap: 0;
  }

  .aoneusa-mega-column a {
    padding: 10px 10px 10px 23px;

    color: rgba(255, 255, 255, 0.94);

    font-size: 14px;

    border-radius: 5px;
  }

  .aoneusa-mega-column a::before {
    background: rgba(255, 255, 255, 0.65);
  }

  .aoneusa-mega-column a:hover,
  .aoneusa-mega-column a:focus-visible {
    padding-left: 23px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;
  }

  .aoneusa-has-mega.menu-open >
  .aoneusa-mega-toggle .aoneusa-arrow {

    transform: rotate(225deg);
  }
}


/* ==================================
   SMALL PHONES
   ================================== */

@media (max-width: 480px) {

  .aoneusa-nav-wrap {
    width: calc(100% - 24px);
  }

  .aoneusa-logo {
    font-size: 31px;
  }

  .aoneusa-menu-toggle {
    width: 42px;
    height: 42px;
  }

  .aoneusa-mega-heading span {
    max-width: 230px;
  }
}






    /* =========================================
       ABOUT PAGE
    ========================================== */

    .aoneusa-about {
      width: 100%;
      background: #ffffff;
    }

    .about-wrap {
      width: min(900px, calc(100% - 40px));
      margin: 0 auto;
    }


    /* HEADER */

    .about-header {
      padding: 75px 0 38px;

      border-bottom: 1px solid #dce9eb;
    }

    .about-label {
      display: block;

      margin-bottom: 12px;

      color: #e92f70;

      font-size: 12px;
      font-weight: 700;

      letter-spacing: .12em;

      text-transform: uppercase;
    }

    .about-header h1 {
      margin: 0;

      color: #153b44;

      font-family:
        Georgia,
        "Times New Roman",
        serif;

      font-size: clamp(42px, 6vw, 60px);
      font-weight: 700;

      line-height: 1.08;

      letter-spacing: -.03em;
    }


    /* INTRO */

    .about-intro {
      padding: 38px 0 52px;
    }

    .about-intro p {
      margin: 0 0 19px;

      color: #405d64;

      font-size: 18px;

      line-height: 1.8;
    }

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


    /* SECTIONS */

    .about-section {
      padding: 48px 0;

      border-top: 1px solid #dce9eb;
    }

    .about-section h2 {
      margin: 0 0 23px;

      color: #153b44;

      font-family:
        Georgia,
        "Times New Roman",
        serif;

      font-size: 32px;
      font-weight: 700;

      line-height: 1.2;

      letter-spacing: -.02em;
    }

    .about-section h2::before {
      content: "";

      display: block;

      width: 36px;
      height: 3px;

      margin-bottom: 16px;

      background: #087f98;

      border-radius: 10px;
    }

    .about-section h3 {
      margin: 36px 0 13px;

      color: #087f98;

      font-size: 20px;
      font-weight: 700;

      line-height: 1.35;
    }

    .about-section p {
      margin: 0 0 18px;

      color: #405d64;

      font-size: 17px;

      line-height: 1.8;
    }

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


    /* FINAL SECTION */

    .about-purpose {
      padding-bottom: 65px;
    }

    .about-purpose h2::before {
      background: #e92f70;
    }


    /* =========================================
       MOBILE
    ========================================== */

    @media (max-width: 600px) {

      body {
        font-size: 16px;
      }

      .about-wrap {
        width: calc(100% - 30px);
      }

      .about-header {
        padding: 48px 0 28px;
      }

      .about-header h1 {
        font-size: 39px;
      }

      .about-intro {
        padding: 29px 0 39px;
      }

      .about-intro p {
        font-size: 16px;
        line-height: 1.7;
      }

      .about-section {
        padding: 38px 0;
      }

      .about-section h2 {
        font-size: 28px;
      }

      .about-section h3 {
        margin-top: 30px;

        font-size: 19px;
      }

      .about-section p {
        font-size: 16px;
        line-height: 1.7;
      }

    }
    
    .aoneusa-mega-toggle {
  color: #ffffff !important;
}

.aoneusa-mega-toggle .aoneusa-chevron {
  color: #ffffff !important;
}













.ao-magazine-hero,
.ao-magazine-hero * {
  box-sizing: border-box;
}

.ao-magazine-hero {
  --ao-teal: #20a6b8;
  --ao-teal-dark: #087f98;
  --ao-deep: #075f70;
  --ao-pink: #e92f70;
  --ao-pink-dark: #cc205e;
  --ao-heading: #163b44;
  --ao-text: #455f65;
  --ao-muted: #718489;

  position: relative;
  width: 100%;
  overflow: hidden;

  background: #ffffff;

  font-family:
    Inter,
    "Google Sans",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
}


/* =========================================================
   MAIN GRID
========================================================= */

.ao-magazine-grid {
  width: 100%;
  min-height: 640px;

  display: grid;
  grid-template-columns:
    minmax(330px, 37%)
    minmax(0, 63%);
}


/* =========================================================
   LEFT PANEL
========================================================= */

.ao-magazine-brand {
  position: relative;
  min-height: 640px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #087f91 0%,
      #086d7f 52%,
      #075a69 100%
    );
}


/* Subtle background grid */

.ao-magazine-brand::before {
  content: "";

  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );

  background-size: 48px 48px;

  pointer-events: none;
}


.ao-brand-inner {
  position: relative;
  z-index: 4;

  width: 100%;
  max-width: 430px;

  margin-left: auto;

  padding: 70px 64px 70px 45px;
}


/* AOneUSA */

.ao-brand-kicker {
  display: block;

  color: #ffffff;

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 19px;
  font-weight: 700;
  font-style: italic;

  letter-spacing: -.02em;
}


/* Pink accent */

.ao-brand-line {
  width: 42px;
  height: 3px;

  margin: 22px 0 27px;

  background: #ff4c87;

  border-radius: 20px;
}


/* Left statement */

.ao-brand-statement {
  max-width: 330px;

  margin: 0;

  color: rgba(255,255,255,.96);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 29px;
  font-weight: 400;

  line-height: 1.42;

  letter-spacing: -.018em;
}


/* Bottom labels */

.ao-brand-bottom {
  margin-top: 55px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 9px;

  color: rgba(255,255,255,.68);

  font-size: 9px;
  font-weight: 700;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.ao-brand-bottom i {
  width: 3px;
  height: 3px;

  background: rgba(255,255,255,.55);

  border-radius: 50%;
}


/* Decorative A */

.ao-brand-letter {
  position: absolute;
  z-index: 1;

  right: -30px;
  bottom: -85px;

  color: rgba(255,255,255,.045);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 390px;
  font-weight: 700;
  font-style: italic;

  line-height: 1;

  pointer-events: none;
}


/* Decorative circles */

.ao-brand-circle {
  position: absolute;
  z-index: 2;

  width: 260px;
  height: 260px;

  right: -130px;
  top: -110px;

  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.ao-brand-circle::after {
  content: "";

  position: absolute;

  inset: 30px;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}


/* =========================================================
   RIGHT CONTENT
========================================================= */

.ao-magazine-content {
  position: relative;

  min-width: 0;
  min-height: 640px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      120deg,
      #ffffff 0%,
      #ffffff 70%,
      #f5faf9 100%
    );
}


/* Pink top-right accent */

.ao-magazine-content::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 130px;
  height: 6px;

  background: var(--ao-pink);
}


.ao-content-inner {
  position: relative;
  z-index: 3;

  width: min(780px, calc(100% - 90px));

  margin: 0 auto;

  padding: 70px 0 78px;
}


/* =========================================================
   SMALL LABEL
========================================================= */

.ao-editorial-label {
  margin-bottom: 22px;

  display: flex;
  align-items: center;

  gap: 11px;

  color: var(--ao-teal-dark);

  font-size: 11px;
  font-weight: 800;

  line-height: 1.4;

  letter-spacing: .13em;

  text-transform: uppercase;
}

.ao-editorial-label span {
  width: 28px;
  height: 2px;

  background: var(--ao-pink);
}


/* =========================================================
   MAIN HEADING
========================================================= */

.ao-content-inner h1 {
  max-width: 760px;

  margin: 0;

  color: var(--ao-heading);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(44px, 4.6vw, 65px);
  font-weight: 400;

  line-height: 1.07;

  letter-spacing: -.043em;
}

.ao-content-inner h1 strong {
  display: block;

  margin-top: 8px;

  color: var(--ao-teal-dark);

  font-weight: 700;
}


/* Divider */

.ao-title-rule {
  width: 100%;
  height: 1px;

  margin: 30px 0 25px;

  background:
    linear-gradient(
      90deg,
      #bfdde1 0%,
      #e4eff0 72%,
      transparent 100%
    );
}


/* =========================================================
   INTRO CONTENT
========================================================= */

.ao-intro-layout {
  max-width: 730px;

  display: grid;

  grid-template-columns:
    minmax(0, 1.55fr)
    minmax(180px, .75fr);

  gap: 37px;
}


.ao-main-intro {
  margin: 0;

  color: var(--ao-text);

  font-size: 17px;
  font-weight: 400;

  line-height: 1.72;
}


.ao-side-intro {
  margin: 0;

  padding-left: 20px;

  color: var(--ao-muted);

  border-left: 2px solid #d4e7e9;

  font-size: 13px;
  font-weight: 500;

  line-height: 1.65;
}


/* =========================================================
   BUTTONS
========================================================= */

.ao-magazine-actions {
  margin-top: 32px;

  display: flex;
  align-items: center;

  gap: 24px;

  flex-wrap: wrap;
}


.ao-magazine-primary {
  min-height: 51px;

  padding: 14px 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 11px;

  color: #ffffff;

  background: var(--ao-pink);

  border: 1px solid var(--ao-pink);
  border-radius: 5px;

  box-shadow:
    0 9px 21px rgba(233,47,112,.16);

  font-size: 14px;
  font-weight: 700;

  line-height: 1.2;

  text-decoration: none;

  transition:
    transform .2s ease,
    background .2s ease,
    box-shadow .2s ease;
}

.ao-magazine-primary:hover,
.ao-magazine-primary:focus-visible {
  color: #ffffff;

  background: var(--ao-pink-dark);

  transform: translateY(-2px);

  box-shadow:
    0 13px 27px rgba(233,47,112,.22);

  outline: none;
}

.ao-magazine-primary span {
  font-size: 18px;
}


.ao-magazine-secondary {
  position: relative;

  padding: 8px 0;

  color: var(--ao-heading);

  font-size: 13px;
  font-weight: 700;

  line-height: 1.4;

  text-decoration: none;
}

.ao-magazine-secondary::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 3px;

  width: 100%;
  height: 1px;

  background: #a9ced3;

  transition: background .2s ease;
}

.ao-magazine-secondary:hover::after {
  background: var(--ao-pink);
}


/* =========================================================
   BOTTOM DETAIL
========================================================= */

.ao-editorial-footer {
  max-width: 720px;

  margin-top: 48px;

  display: grid;

  grid-template-columns:
    auto
    minmax(40px, 85px)
    auto;

  align-items: center;

  gap: 13px;
}


.ao-footer-number {
  color: var(--ao-teal-dark);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: 12px;
  font-weight: 700;
}


.ao-footer-rule {
  height: 1px;

  background: #bfdde1;
}


.ao-editorial-footer p {
  margin: 0;

  color: var(--ao-muted);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: .09em;

  text-transform: uppercase;
}


/* =========================================================
   BACKGROUND WORD
========================================================= */

.ao-background-word {
  position: absolute;
  z-index: 1;

  right: -15px;
  bottom: -10px;

  color: rgba(8,127,152,.028);

  font-family:
    Georgia,
    "Times New Roman",
    serif;

  font-size: clamp(90px, 12vw, 170px);
  font-weight: 700;

  line-height: .8;

  letter-spacing: -.06em;

  pointer-events: none;
}


/* =========================================================
   BOTTOM EXPLORE CUE
========================================================= */

.ao-scroll-cue {
  position: absolute;
  z-index: 7;

  left: 37%;
  bottom: 0;

  width: 78px;
  height: 78px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 7px;

  color: var(--ao-teal-dark);

  background: #ffffff;

  border-radius: 50% 50% 0 0;

  box-shadow:
    0 -8px 22px rgba(16,70,80,.07);

  text-decoration: none;

  transform: translateX(-50%);
}

.ao-scroll-cue span {
  font-size: 8px;
  font-weight: 800;

  letter-spacing: .12em;

  text-transform: uppercase;
}

.ao-scroll-cue i {
  width: 8px;
  height: 8px;

  border-right: 1.5px solid var(--ao-teal-dark);
  border-bottom: 1.5px solid var(--ao-teal-dark);

  transform: rotate(45deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .ao-magazine-grid {
    grid-template-columns: 34% 66%;
  }

  .ao-brand-inner {
    padding: 60px 35px;
  }

  .ao-brand-statement {
    font-size: 25px;
  }

  .ao-content-inner {
    width: calc(100% - 60px);
  }

  .ao-content-inner h1 {
    font-size: clamp(41px, 5vw, 55px);
  }

  .ao-scroll-cue {
    left: 34%;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

  .ao-magazine-grid {
    min-height: auto;

    grid-template-columns: 1fr;
  }

  .ao-magazine-brand {
    min-height: auto;
  }

  .ao-brand-inner {
    max-width: none;

    margin: 0;

    padding: 36px 24px 39px;
  }

  .ao-brand-line {
    margin: 15px 0 17px;
  }

  .ao-brand-statement {
    max-width: 520px;

    font-size: 22px;

    line-height: 1.4;
  }

  .ao-brand-bottom {
    margin-top: 25px;
  }

  .ao-brand-letter {
    right: 0;
    bottom: -80px;

    font-size: 240px;
  }


  /* Right section */

  .ao-magazine-content {
    min-height: auto;
  }

  .ao-content-inner {
    width: calc(100% - 48px);

    padding: 51px 0 67px;
  }

  .ao-content-inner h1 {
    max-width: 620px;

    font-size: clamp(38px, 8vw, 50px);
  }

  .ao-intro-layout {
    max-width: 600px;
  }

  .ao-scroll-cue {
    display: none;
  }
}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 520px) {

  .ao-brand-inner {
    padding: 29px 18px 31px;
  }

  .ao-brand-kicker {
    font-size: 16px;
  }

  .ao-brand-statement {
    max-width: 390px;

    font-size: 20px;
  }

  .ao-brand-bottom {
    gap: 7px;

    font-size: 8px;
  }


  .ao-content-inner {
    width: calc(100% - 32px);

    padding: 42px 0 52px;
  }

  .ao-editorial-label {
    margin-bottom: 15px;

    font-size: 9.5px;
  }

  .ao-editorial-label span {
    width: 21px;
  }


  .ao-content-inner h1 {
    font-size: 37px;

    line-height: 1.09;
  }

  .ao-content-inner h1 strong {
    margin-top: 7px;
  }


  .ao-title-rule {
    margin: 23px 0 20px;
  }


  /* Stack intro text */

  .ao-intro-layout {
    grid-template-columns: 1fr;

    gap: 17px;
  }

  .ao-main-intro {
    font-size: 16px;

    line-height: 1.65;
  }

  .ao-side-intro {
    padding-left: 14px;

    font-size: 13px;
  }


  /* Buttons */

  .ao-magazine-actions {
    margin-top: 26px;

    display: grid;

    grid-template-columns: 1fr;

    gap: 11px;
  }

  .ao-magazine-primary {
    width: 100%;
  }

  .ao-magazine-secondary {
    width: max-content;

    margin-top: 3px;
  }


  .ao-editorial-footer {
    margin-top: 37px;

    grid-template-columns:
      auto
      35px
      auto;

    gap: 9px;
  }

  .ao-editorial-footer p {
    font-size: 8.5px;
  }
}


/* =========================================================
   VERY SMALL PHONE
========================================================= */

@media (max-width: 370px) {

  .ao-content-inner h1 {
    font-size: 33px;
  }

  .ao-brand-statement {
    font-size: 18px;
  }
}


