:root {
  --lime: #89e60f;
  --green: #0b6f5b;
  --green-dark: #074a3e;
  --ink: #18201f;
  --soft: #8d9996;
  --line: rgba(255, 255, 255, .15);
  --white: #fff;
  --headline: "Archivo", sans-serif;
  --body: "Manrope", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; }

:focus-visible { outline: 3px solid var(--lime); outline-offset: 3px; }

::selection { color: var(--ink); background: var(--lime); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--lime);
  text-decoration: none;
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.review-header,
.page-overview,
.review-footer {
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}

.review-header > a {
  display: block;
  width: 230px;
  height: 70px;
  overflow: hidden;
}

.review-header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-header > div { display: grid; text-align: right; }
.review-header span { color: var(--lime); font-size: 7px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.review-header strong { margin-top: 3px; font-family: var(--headline); font-size: 11px; }

.page-overview { padding-block: 80px 95px; border-top: 1px solid var(--line); }

.overview-heading {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.overview-heading > span { color: var(--lime); font-family: var(--headline); font-size: 42px; font-weight: 800; letter-spacing: -.06em; line-height: .85; }
.overview-heading small, .overview-heading > strong { color: var(--soft); font-size: 7px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.overview-heading h2 { margin: 5px 0 0; font-family: var(--headline); font-size: clamp(38px, 4vw, 54px); letter-spacing: -.05em; line-height: .9; }

.page-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.page-card { min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.page-card > a { display: grid; grid-template-columns: minmax(200px, .8fr) minmax(0, 1.2fr); min-height: 350px; text-decoration: none; }
.page-card--featured { grid-column: 1 / -1; }
.page-card--featured > a { grid-template-columns: 1.3fr .7fr; min-height: 480px; }

.page-preview {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-right: 1px solid var(--line);
  background: var(--green-dark);
}

.page-preview::before {
  position: absolute;
  inset: 20px 20px auto;
  height: 13%;
  border-top: 7px solid var(--lime);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  content: "";
}

.page-preview span,
.page-preview i,
.page-preview b { position: absolute; display: block; border: 1px solid rgba(255, 255, 255, .32); }

.page-preview span { top: 28%; left: 20px; width: 58%; height: 37%; background: rgba(137, 230, 15, .18); }
.page-preview i:nth-of-type(1) { top: 28%; right: 20px; width: calc(42% - 48px); height: 17%; }
.page-preview i:nth-of-type(2) { top: 48%; right: 20px; width: calc(42% - 48px); height: 17%; }
.page-preview i:nth-of-type(3) { right: 20px; bottom: 20px; left: 20px; height: 18%; }
.page-preview b { right: 20px; bottom: 20px; left: 20px; height: 8px; border: 0; background: var(--lime); }
.page-preview--home { background: #0a5446; }
.page-preview--news { background: #202927; }
.page-preview--podcast { background: #26312f; }
.page-preview--podcast span { border-radius: 50%; background: var(--lime); }
.page-preview--academy { background: #0b6f5b; }
.page-preview--academy span { width: 42%; }
.page-preview--market { background: #143b35; }
.page-preview--market i:nth-of-type(1), .page-preview--market i:nth-of-type(2) { background: rgba(137, 230, 15, .22); }
.page-preview--pitch { background: #101716; }
.page-preview--pitch::after { position: absolute; right: -40px; bottom: -70px; width: 180px; aspect-ratio: 1; border: 35px solid rgba(137, 230, 15, .18); border-radius: 50%; content: ""; }

.page-card__body { display: flex; align-items: flex-start; flex-direction: column; padding: clamp(25px, 4vw, 44px); }
.page-card__body > div { display: flex; justify-content: space-between; width: 100%; }
.page-card__body > div span { color: var(--lime); font-family: var(--headline); font-size: 18px; font-weight: 800; }
.page-card__body > div small { color: var(--soft); font-size: 6px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.page-card h3 { margin: auto 0 12px; font-family: var(--headline); font-size: clamp(28px, 3vw, 44px); letter-spacing: -.055em; line-height: .95; }
.page-card p { max-width: 48ch; margin: 0 0 25px; color: var(--soft); font-size: 9px; }
.page-card__body > strong { color: var(--lime); font-size: 7px; letter-spacing: .08em; text-transform: uppercase; }
.page-card > a:hover { color: var(--ink); background: var(--lime); }
.page-card > a:hover .page-card__body > div span,
.page-card > a:hover .page-card__body > strong { color: var(--green-dark); }
.page-card > a:hover .page-card__body > div small,
.page-card > a:hover p { color: rgba(24, 32, 31, .66); }

.page-overview--single { padding-bottom: 115px; }
.single-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.single-card { min-height: 300px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.single-card a { display: flex; align-items: flex-start; flex-direction: column; height: 100%; padding: 30px; text-decoration: none; }
.single-card span { color: var(--lime); font-size: 7px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.single-card h3 { margin: 75px 0 12px; font-family: var(--headline); font-size: 31px; letter-spacing: -.045em; line-height: .95; }
.single-card p { margin: 0 0 24px; color: var(--soft); font-size: 9px; }
.single-card strong { margin-top: auto; color: var(--lime); font-size: 7px; text-transform: uppercase; }
.single-card a:hover { color: var(--ink); background: var(--lime); }
.single-card a:hover span, .single-card a:hover strong { color: var(--green-dark); }
.single-card a:hover p { color: rgba(24, 32, 31, .65); }

.review-footer {
  display: flex;
  justify-content: space-between;
  min-height: 80px;
  padding-block: 25px;
  border-top: 1px solid var(--line);
  color: var(--soft);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .page-card > a { grid-template-columns: 1fr; }
  .page-preview { min-height: 250px; border-right: 0; border-bottom: 1px solid var(--line); }
  .page-card--featured > a { grid-template-columns: 1.15fr .85fr; }
  .page-card--featured .page-preview { min-height: 100%; border-right: 1px solid var(--line); border-bottom: 0; }
}

@media (max-width: 680px) {
  .review-header, .page-overview, .review-footer { width: min(calc(100% - 28px), 1320px); }
  .review-header { min-height: 90px; }
  .review-header > a { width: 155px; height: 50px; }
  .review-header > div { display: none; }
  .overview-heading { grid-template-columns: 45px 1fr; }
  .overview-heading > span { font-size: 33px; }
  .overview-heading > strong { grid-column: 2; }
  .page-grid, .single-grid { grid-template-columns: 1fr; }
  .page-card--featured { grid-column: auto; }
  .page-card--featured > a { grid-template-columns: 1fr; min-height: 0; }
  .page-card--featured .page-preview { min-height: 270px; border-right: 0; border-bottom: 1px solid var(--line); }
  .page-card__body { min-height: 290px; }
  .single-card { min-height: 270px; }
  .review-footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
