html,
body {
  box-sizing: border-box;
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  padding: 0;
  width: 100%;
  background: #090909;
  color: #fff8d8;
  font-family: "Oswald", Arial, sans-serif;
}

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

:root {
  --fh-black: #090909;
  --fh-ink: #151515;
  --fh-yellow: #ffe600;
  --fh-blue: #00a6ff;
  --fh-green: #7dff00;
  --fh-red: #ff2438;
  --fh-orange: #ff7a00;
  --fh-cream: #fff8d8;
  --fh-border: 4px solid #090909;
  --mobile-navbar-only-offset: 4.375rem;
  --mobile-campaign-navbar-offset: 7.75rem;
  --mobile-fixed-navbar-offset: var(--mobile-navbar-only-offset);
}

body.navbar-with-campaign,
body.navbar-without-campaign {
  --mobile-fixed-navbar-offset: var(--mobile-navbar-only-offset);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

#main-content {
  min-height: 100vh;
  background: var(--fh-yellow);
}

.age-gate[hidden] {
  display: none;
}

body.age-gate-open {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.45)),
    url("/assets/fuckhead_bottles.png") center / cover;
}

.age-gate__panel {
  width: min(100%, 34rem);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: var(--fh-yellow);
  border: var(--fh-border);
  border-radius: 6px;
  color: var(--fh-black);
  text-align: center;
  box-shadow: 12px 12px 0 var(--fh-red);
}

.age-gate__logo {
  display: block;
  max-width: 13rem;
  height: auto;
  margin: 0 auto 0.75rem;
}

.age-gate__eyebrow,
.fh-kicker,
.fh-product-card__eyebrow {
  margin: 0 0 0.6rem;
  color: var(--fh-red);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.age-gate h2 {
  margin: 0;
  font-size: clamp(2.5rem, 10vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.age-gate p {
  margin: 1rem auto;
  max-width: 28rem;
  font-size: 1.12rem;
  line-height: 1.35;
}

.age-gate__actions,
.fh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.age-gate__confirm,
.age-gate__exit,
.fh-button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border: var(--fh-border);
  border-radius: 4px;
  background: var(--fh-green);
  color: var(--fh-black);
  cursor: pointer;
  font: 900 1rem/1 "Oswald", Arial, sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--fh-black);
}

.age-gate__exit,
.fh-button--secondary {
  background: var(--fh-blue);
}

.fh-hero {
  position: relative;
  min-height: calc(100vh - var(--mobile-fixed-navbar-offset));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--fh-black);
  isolation: isolate;
}

.fh-hero__bottles {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.56) 46%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.06) 35%);
}

.fh-hero__copy {
  width: min(100%, 74rem);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem) 6.5rem;
}

.fh-hero__logo {
  width: min(18rem, 52vw);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(8px 8px 0 rgba(0, 0, 0, 0.75));
}

.fh-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--fh-yellow);
  font-size: clamp(4.2rem, 14vw, 12rem);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow: 7px 7px 0 var(--fh-red), 12px 12px 0 var(--fh-black);
}

.fh-hero__lead {
  max-width: 37rem;
  margin: 1.35rem 0 1.75rem;
  color: var(--fh-cream);
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  line-height: 1.13;
  text-transform: uppercase;
}

.fh-hero__sublead {
  width: fit-content;
  margin: 0 0 1.75rem;
  padding: 0.45rem 0.75rem;
  background: var(--fh-yellow);
  border: var(--fh-border);
  color: var(--fh-black);
  font-size: clamp(1.2rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--fh-red);
}

.fh-hero .fh-actions {
  justify-content: flex-start;
}

.fh-hero__ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(9rem, 1fr));
  border-top: var(--fh-border);
}

.fh-hero__ticker span {
  min-height: 4.25rem;
  display: grid;
  place-items: center;
  padding: 0.75rem;
  color: var(--fh-black);
  font-size: clamp(1rem, 2vw, 1.8rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.fh-hero__ticker-flavour--sherbet {
  background: var(--fh-yellow);
}

.fh-hero__ticker-flavour--blue-raspberry {
  background: var(--fh-blue);
}

.fh-hero__ticker-flavour--apple {
  background: var(--fh-green);
}

.fh-hero__ticker-flavour--watermelon {
  background: #ff4b14;
}

.fh-products-hero,
.fh-contact-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.54)),
    url("/assets/bar_pour.png") center / cover;
  color: var(--fh-cream);
  border-bottom: var(--fh-border);
}

.fh-products-hero__inner,
.fh-contact-hero__inner {
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: clamp(7rem, 13vw, 12rem) clamp(1rem, 4vw, 3rem) clamp(3rem, 7vw, 6rem);
}

.fh-products-hero h1,
.fh-contact-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--fh-yellow);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
  text-shadow: 6px 6px 0 var(--fh-blue);
}

.fh-products-hero p:not(.fh-kicker),
.fh-contact-hero p:not(.fh-kicker) {
  max-width: 42rem;
  margin: 1rem 0 0;
  font-size: clamp(1.15rem, 2.2vw, 1.8rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.fh-products-hero__platform {
  width: fit-content;
  padding: 0.35rem 0.75rem;
  background: var(--fh-yellow);
  border: var(--fh-border);
  color: var(--fh-black);
  font-weight: 900;
  box-shadow: 6px 6px 0 var(--fh-red);
}

.fh-callouts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: var(--fh-border);
  border-bottom: var(--fh-border);
}

.fh-callout {
  min-height: 17rem;
  padding: clamp(1.2rem, 3vw, 2.5rem);
  border-right: var(--fh-border);
  color: var(--fh-black);
}

.fh-callout:last-child {
  border-right: 0;
}

.fh-callout--blue {
  background: var(--fh-blue);
}

.fh-callout--green {
  background: var(--fh-green);
}

.fh-callout--red {
  background: var(--fh-red);
  color: var(--fh-cream);
}

.fh-callout h2,
.fh-section h2,
.fh-serve h2 {
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 6.4rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.fh-callout p,
.fh-serve p,
.fh-empty-range p {
  max-width: 38rem;
  margin: 1rem 0 0;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  line-height: 1.2;
}

.fh-weapons-grade {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  background: var(--fh-black);
  color: var(--fh-cream);
  border-bottom: var(--fh-border);
}

.fh-weapons-grade__image {
  min-height: 32rem;
  background:
    radial-gradient(circle at 35% 40%, rgba(255, 230, 0, 0.32), transparent 36%),
    linear-gradient(135deg, rgba(0, 166, 255, 0.45), rgba(255, 36, 56, 0.2)),
    var(--fh-black);
  border-right: var(--fh-border);
}

.fh-weapons-grade__image img {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  object-fit: cover;
  display: block;
}

.fh-weapons-grade__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.fh-weapons-grade h2 {
  margin: 0;
  color: var(--fh-yellow);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 6px 6px 0 var(--fh-red), 10px 10px 0 var(--fh-blue);
}

.fh-weapons-grade__lead {
  max-width: 34rem;
  margin: 1.15rem 0 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.fh-weapons-grade__serves {
  display: grid;
  gap: 0.9rem;
  width: min(100%, 34rem);
  margin-top: 1.4rem;
}

.fh-weapons-grade__serve {
  padding: 0.85rem 1rem;
  background: var(--fh-yellow);
  border: var(--fh-border);
  color: var(--fh-black);
  box-shadow: 6px 6px 0 var(--fh-red);
}

.fh-weapons-grade__serve h3,
.fh-weapons-grade__serve p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.fh-weapons-grade__serve h3 {
  font-weight: 900;
}

.fh-weapons-grade__serve p {
  margin-top: 0.4rem;
}

.fh-section {
  background: var(--fh-yellow);
  color: var(--fh-black);
}

.fh-section__inner {
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.fh-section__heading {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.fh-section__standfirst {
  width: fit-content;
  margin: 0;
  padding: 0.35rem 0.75rem;
  background: var(--fh-black);
  border: var(--fh-border);
  color: var(--fh-yellow);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 6px 6px 0 var(--fh-red);
}

.fh-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1rem;
}

.fh-product-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: var(--fh-border);
  border-radius: 6px;
  background: var(--fh-cream);
  color: var(--fh-black);
  text-decoration: none;
  box-shadow: 7px 7px 0 var(--fh-blue);
}

.fh-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--fh-yellow);
  border: var(--fh-border);
}

.fh-product-card--blue-raspberry img {
  background: var(--fh-blue);
}

.fh-product-card--watermelon img {
  background: #ff4b14;
}

.fh-product-card--apple img {
  background: var(--fh-green);
}

.fh-product-card--sherbet img {
  background: var(--fh-yellow);
}

.fh-product-card h3,
.fh-empty-range h3 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.fh-product-card p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.fh-product-card__price {
  width: fit-content;
  padding: 0.4rem 0.6rem;
  background: var(--fh-red);
  color: var(--fh-cream);
  border: 3px solid var(--fh-black);
  font-weight: 900;
}

.fh-empty-range {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.fh-empty-range img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  border: var(--fh-border);
  border-radius: 6px;
}

.fh-empty-range__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--fh-green);
  border: var(--fh-border);
  border-radius: 6px;
  box-shadow: 8px 8px 0 var(--fh-red);
}

.fh-serve {
  background: var(--fh-black);
  color: var(--fh-cream);
  border-top: var(--fh-border);
}

.fh-serve__inner {
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.fh-serve h2 {
  color: var(--fh-yellow);
  text-shadow: 5px 5px 0 var(--fh-blue);
}

.fh-serve__steps {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.fh-serve__steps p {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0.4rem 0.65rem;
  background: var(--fh-yellow);
  border: var(--fh-border);
  color: var(--fh-black);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--fh-blue);
}

.fh-serve__steps--dark p {
  background: var(--fh-black);
  color: var(--fh-yellow);
  box-shadow: 5px 5px 0 var(--fh-red);
}

.fh-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr);
  min-height: calc(100vh - var(--mobile-fixed-navbar-offset));
  background: var(--fh-black);
  color: var(--fh-cream);
  border-bottom: var(--fh-border);
}

.fh-product-hero__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(6rem, 12vw, 10rem) clamp(1rem, 5vw, 4rem) clamp(3rem, 7vw, 6rem);
}

.fh-product-hero h1 {
  margin: 0;
  color: var(--fh-yellow);
  font-size: clamp(4.2rem, 11vw, 10rem);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow: 7px 7px 0 var(--fh-blue), 12px 12px 0 var(--fh-red);
}

.fh-product-hero__flavour {
  width: fit-content;
  max-width: 100%;
  margin: 1rem 0 0;
  padding: 0.45rem 0.75rem;
  background: var(--fh-cream);
  border: var(--fh-border);
  color: var(--fh-black);
  font-size: clamp(1.6rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--fh-green);
}

.fh-product-hero__line,
.fh-product-hero__serve {
  margin: 1rem 0 0;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.fh-product-hero__serve {
  color: var(--fh-yellow);
}

.fh-product-hero__image {
  display: grid;
  place-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  background:
    repeating-linear-gradient(
      -10deg,
      var(--fh-yellow),
      var(--fh-yellow) 18px,
      var(--fh-green) 18px,
      var(--fh-green) 36px
    );
  border-left: var(--fh-border);
}

.fh-product-hero__image img {
  width: min(100%, 32rem);
  max-height: 72vh;
  object-fit: contain;
  filter: drop-shadow(18px 18px 0 rgba(0, 0, 0, 0.82));
}

.fh-party-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: 30rem;
  background: var(--fh-blue);
  color: var(--fh-black);
  border-top: var(--fh-border);
}

.fh-party-strip__copy {
  display: grid;
  align-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.fh-party-strip__copy h2,
.fh-merch h2 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.82;
  text-transform: uppercase;
}

.fh-party-strip__copy p:not(.fh-kicker),
.fh-merch p {
  max-width: 40rem;
  margin: 1rem 0 0;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.2;
}

.fh-party-strip__image-placeholder,
.fh-merch__placeholder {
  display: grid;
  min-height: 24rem;
  place-items: center;
  padding: 2rem;
  background:
    repeating-linear-gradient(
      -10deg,
      var(--fh-yellow),
      var(--fh-yellow) 18px,
      var(--fh-green) 18px,
      var(--fh-green) 36px
    );
  border-left: var(--fh-border);
  color: var(--fh-black);
  text-align: center;
}

.fh-party-strip__image-placeholder span,
.fh-merch__placeholder span {
  max-width: 16rem;
  padding: 1rem;
  background: var(--fh-red);
  border: var(--fh-border);
  color: var(--fh-cream);
  font-size: clamp(1.5rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.fh-party-strip__image-placeholder img,
.fh-merch__placeholder img {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  object-fit: cover;
  border: var(--fh-border);
  box-shadow: 14px 14px 0 var(--fh-black);
}

.fh-merch {
  background: var(--fh-red);
  color: var(--fh-cream);
  border-top: var(--fh-border);
}

.fh-merch__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  width: min(100%, 78rem);
  margin: 0 auto;
}

.fh-merch__copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.fh-merch .fh-kicker {
  color: var(--fh-yellow);
}

.fh-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--fh-yellow);
  border-bottom: var(--fh-border);
}

.fh-contact-card {
  min-height: 18rem;
  display: grid;
  align-content: end;
  gap: 0.7rem;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border-right: var(--fh-border);
  color: var(--fh-black);
  text-decoration: none;
}

.fh-contact-card:last-child {
  border-right: 0;
}

.fh-contact-card--blue {
  background: var(--fh-blue);
}

.fh-contact-card--green {
  background: var(--fh-green);
}

.fh-contact-card--red {
  background: var(--fh-red);
  color: var(--fh-cream);
}

.fh-contact-card span {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.fh-contact-card strong {
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.fh-contact-card small {
  max-width: 20rem;
  font-size: 1rem;
  line-height: 1.2;
}

.fh-legal {
  background: var(--fh-yellow);
  color: var(--fh-black);
}

.fh-legal__inner {
  width: min(100%, 58rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 3rem);
}

.fh-legal h2 {
  margin: 2rem 0 0.6rem;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.fh-legal h2:first-child {
  margin-top: 0;
}

.fh-legal p {
  margin: 0;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.25;
}

.fh-legal a {
  color: var(--fh-black);
  font-weight: 900;
}

.footer-section {
  background: var(--fh-ink);
  color: var(--fh-cream);
  border-top: 6px solid var(--fh-red);
}

.footer-container {
  width: min(100%, 78rem);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 2rem;
}

.footer-logo img {
  width: min(13rem, 48vw);
  height: auto;
}

.footer-tagline,
.footer-contact-info,
.footer-nav {
  font-size: 1.05rem;
  line-height: 1.25;
}

.footer-section-title {
  margin: 0 0 0.75rem;
  color: var(--fh-yellow);
  font-size: 1.5rem;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
}

.footer-nav a,
.footer-contact-info a,
.footer-legal-links a {
  color: inherit;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-contact-info a:hover,
.footer-legal-links a:hover {
  color: var(--fh-green);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(255, 248, 216, 0.25);
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 840px) {
  .fh-hero {
    min-height: 42rem;
  }

  .fh-hero__copy {
    padding-bottom: 8.5rem;
  }

  .fh-hero__ticker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fh-empty-range,
  .fh-weapons-grade,
  .fh-product-hero,
  .fh-party-strip,
  .fh-merch__inner,
  .fh-contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fh-callouts {
    display: none;
  }

  .fh-party-strip__image-placeholder,
  .fh-product-hero__image,
  .fh-weapons-grade__image,
  .fh-merch__placeholder,
  .fh-contact-card {
    border-right: 0;
    border-left: 0;
    border-top: var(--fh-border);
  }
}

@media (max-width: 520px) {
  .fh-hero h1 {
    font-size: clamp(3.8rem, 19vw, 5.8rem);
    text-shadow: 4px 4px 0 var(--fh-red), 8px 8px 0 var(--fh-black);
  }

  .fh-hero__lead {
    font-size: 1.1rem;
  }

  .fh-actions,
  .fh-hero .fh-actions,
  .age-gate__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .fh-button,
  .age-gate__confirm,
  .age-gate__exit {
    width: 100%;
  }
}
