@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@500;600;700&display=swap');

:root {
  --fe-black: #111111;
  --fe-white: #ffffff;
  --fe-grey-100: #f5f5f5;
  --fe-grey-300: #cacacb;
  --fe-grey-500: #707072;
  --fe-shell: 1440px;
}

body.home, body.blog, body {
  background: var(--fe-black);
  color: var(--fe-white);
}

body .wp-site-blocks {
  min-height: 100vh;
}

.fmr-entry--nike,
.fmr-entry--nike * {
  box-sizing: border-box;
}

.fmr-entry--nike img {
  display: block;
  width: 100%;
}

.fe-shell {
  width: min(calc(100% - 96px), var(--fe-shell));
  margin: 0 auto;
}

.fe-kicker {
  margin: 0 0 16px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fe-title,
.fe-card h3 {
  margin: 0;
  font-family: 'League Spartan', Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.fe-title {
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1.05;
  color: var(--fe-black);
}

.fe-title--entry {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 8ch;
}

.fe-header {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 3;
}

.fe-header--gateway {
  position: relative;
  top: 0;
  margin-bottom: 8px;
}

.fe-header__inner {
  width: min(calc(100% - 48px), 1180px);
  min-height: 48px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
}

.fe-header__logo,
.fe-footer__logo {
  width: auto;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.fe-footer__logo {
  height: 34px;
  margin-left: -10px;
}

.fe-gateway {
  padding: 80px 0;
  background: var(--fe-white);
}

.fe-gateway--entry-hero {
  min-height: auto;
  padding: 0 0 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.fe-gateway__head {
  margin-bottom: 20px;
  padding-top: 0;
}

.fe-intro {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(17,17,17,0.72);
}

.fe-gateway__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: min(calc(100% - 96px), var(--fe-shell));
  margin: 0 auto;
}

.fe-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: var(--fe-white);
  text-decoration: none;
  background: var(--fe-black);
}

.fe-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,0.1) 0%, rgba(17,17,17,0.76) 100%);
}

.fe-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.fe-card__index {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.fe-card__body {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}

.fe-card h3 {
  font-size: 28px;
  line-height: 1;
}

.fe-card p {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.8);
}

.fe-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 30px;
  background: var(--fe-white);
  color: var(--fe-black);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.fe-footer {
  background: var(--fe-black);
  color: var(--fe-white);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.fe-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.fe-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fe-footer__brand p,
.fe-footer__contact a {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.74);
  text-decoration: none;
}

.fe-footer__contact {
  display: grid;
  gap: 6px;
}

@media (max-width: 960px) {
  .fe-gateway__grid {
    grid-template-columns: 1fr;
  }

  .fe-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .fe-shell,
  .fe-gateway__grid,
  .fe-header__inner {
    width: min(calc(100% - 32px), var(--fe-shell));
  }

  .fe-title--entry {
    font-size: 56px;
  }

  .fe-card {
    min-height: 420px;
  }

  .fe-gateway {
    padding: 48px 0;
  }

  .fe-gateway--entry-hero {
    padding-top: 20px;
  }

  .fe-header--gateway {
    margin-bottom: 36px;
  }
}
