:root {
  --ink: #0d1219;
  --muted: #5a6573;
  --fog: #e8ecf1;
  --fog-deep: #d5dde7;
  --line: #c5ceda;
  --bleu: #0055a4;
  --bleu-deep: #003f7a;
  --rouge: #e11d48;
  --snow: #ffffff;
  --radius: 12px;
  --shadow: 0 20px 48px rgba(13, 18, 25, 0.1);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Figtree", sans-serif;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(900px 420px at 100% -20%, rgba(0, 85, 164, 0.12), transparent 55%),
    radial-gradient(700px 380px at -10% 10%, rgba(225, 29, 72, 0.06), transparent 50%),
    linear-gradient(180deg, var(--fog) 0%, #f4f6f9 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.topbar {
  background: var(--bleu-deep);
  color: #eef3f9;
}

.topbar__inner {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.65rem 0;
}

.topbar__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  height: 1.5rem;
  padding: 0 0.4rem;
  border-radius: 6px;
  background: var(--rouge);
  color: var(--snow);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}

.topbar__text {
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.95;
}

.site-header {
  position: relative;
  background: rgba(244, 246, 249, 0.9);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  z-index: 30;
}

.brand__icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand__text {
  display: flex;
  align-items: baseline;
  gap: 0.05rem;
  line-height: 1;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand__name {
  font-size: 1.35rem;
  color: var(--ink);
}

.brand__tld {
  font-size: 0.95rem;
  color: var(--bleu);
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.primary-nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--muted);
  transition: color 0.2s ease, background-color 0.2s ease;
}

.primary-nav__link:hover,
.primary-nav__link:focus-visible {
  color: var(--ink);
  background: rgba(0, 85, 164, 0.08);
  outline: none;
}

.primary-nav__link.is-active {
  color: var(--bleu-deep);
  background: rgba(0, 85, 164, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 30;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--snow);
}

.nav-toggle__box {
  position: relative;
  display: block;
  width: 18px;
  height: 14px;
}

.nav-toggle__bar {
  position: absolute;
  left: 0;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__bar:nth-child(1) {
  top: 0;
}

.nav-toggle__bar:nth-child(2) {
  top: 6px;
}

.nav-toggle__bar:nth-child(3) {
  top: 12px;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.hero {
  padding: 2.2rem 0 2.8rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 1rem;
  align-items: stretch;
}

.hero__copy {
  padding: 1.85rem 1.9rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--snow);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero__copy::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 85, 164, 0.55), transparent 70%);
  pointer-events: none;
}

.hero__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.1vw, 2.25rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  margin-bottom: 0.85rem;
  max-width: 22ch;
}

.hero__subtitle {
  position: relative;
  z-index: 1;
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(244, 246, 249, 0.82);
  max-width: 40rem;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.65rem;
  padding: 1.35rem 1.4rem 1.25rem;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, var(--bleu) 0%, var(--bleu-deep) 100%);
  color: var(--snow);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.hero__aside-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}

.hero__aside-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.hero__aside-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.hero__year {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  opacity: 0.9;
}

.listing {
  padding: 0 0 3.5rem;
}

.listing__head {
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.listing__eyebrow {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 85, 164, 0.1);
  color: var(--bleu-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.6vw, 1.9rem);
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin-bottom: 0.55rem;
}

.listing__lead {
  color: var(--muted);
  font-size: 0.98rem;
}

.listing__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer {
  background: var(--snow);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 10px 28px rgba(13, 18, 25, 0.05);
  overflow: hidden;
}

.offer:nth-child(1) {
  border-top: 3px solid var(--bleu);
}

.offer:nth-child(2) {
  border-top: 3px solid #0ea5a0;
}

.offer:nth-child(3) {
  border-top: 3px solid var(--rouge);
}

.offer__row {
  display: grid;
  grid-template-columns: 56px 110px minmax(110px, 1fr) minmax(160px, 1.4fr) 88px minmax(150px, 180px);
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1.05rem 1.15rem;
}

.offer__rank {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--bleu);
  line-height: 1;
}

.offer__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  background: var(--fog);
  border: 1px solid var(--line);
}

.offer__media img {
  display: block;
  max-width: 100%;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.offer__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.offer__brand .offer__name,
.offer__bonus strong,
.offer__score strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}

.offer__score strong {
  font-size: 1.1rem;
}

.offer__score em {
  font-style: normal;
  color: var(--bleu);
  font-size: 1.35rem;
}

.offer__action {
  display: flex;
  justify-content: flex-end;
}

.offer__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-deep) 100%);
  color: var(--snow);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 18px rgba(0, 85, 164, 0.28);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.offer__cta:hover,
.offer__cta:focus-visible {
  filter: brightness(1.08);
  outline: none;
}

.offer__disclaimer {
  padding: 0.7rem 1.15rem 0.85rem;
  border-top: 1px dashed var(--line);
  background: linear-gradient(180deg, #f7f9fc 0%, var(--snow) 100%);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.site-footer {
  margin-top: 1rem;
  padding: 2.5rem 0 1.75rem;
  background: var(--ink);
  color: rgba(244, 246, 249, 0.86);
  border-top: 3px solid var(--bleu);
}

.footer__heading,
.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--snow);
}

.footer__heading {
  font-size: 1.15rem;
  margin-bottom: 0.55rem;
}

.footer__col-title {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.footer__text {
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 52rem;
}

.footer__text--small {
  font-size: 0.82rem;
  margin-top: 0.65rem;
  opacity: 0.85;
}

.footer__responsible {
  margin-bottom: 1.5rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 52px;
  padding: 0.25rem;
  background: transparent;
  border: none;
}

.footer__badge img {
  display: block;
  max-width: 88px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.4fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__links a {
  color: rgba(244, 246, 249, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: var(--snow);
  outline: none;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--snow);
}

.footer__disclosure {
  margin-bottom: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(244, 246, 249, 0.72);
}

.footer__age {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding: 0.95rem 1rem;
  border-radius: 10px;
  background: rgba(225, 29, 72, 0.12);
  border: 1px solid rgba(225, 29, 72, 0.35);
}

.footer__age-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 2.35rem;
  padding: 0 0.55rem;
  border-radius: 8px;
  background: var(--rouge);
  color: var(--snow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.25);
}

.footer__age p {
  font-size: 0.82rem;
  line-height: 1.5;
}

.footer__copy {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(244, 246, 249, 0.6);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(13, 18, 25, 0.92);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(100%, 440px);
  padding: 1.75rem 1.5rem;
  border-radius: 16px;
  background: var(--snow);
  box-shadow: var(--shadow);
  text-align: center;
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  height: 2.4rem;
  margin-bottom: 0.9rem;
  padding: 0 0.6rem;
  border-radius: 8px;
  background: var(--rouge);
  color: var(--snow);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}

.age-gate__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
  color: var(--ink);
}

.age-gate__text {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.age-gate__text--soft {
  font-size: 0.85rem;
}

.age-gate__text a {
  color: var(--bleu);
  text-decoration: underline;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
}

.age-gate__btn--yes {
  background: linear-gradient(135deg, var(--bleu) 0%, var(--bleu-deep) 100%);
  color: var(--snow);
}

.age-gate__btn--no {
  background: var(--fog);
  color: var(--ink);
  border: 1px solid var(--line);
}

body.is-age-locked {
  overflow: hidden;
}

.cookie-consent {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 180;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 1rem 1.15rem;
  border-radius: 14px;
  background: var(--snow);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(13, 18, 25, 0.18);
}

.cookie-consent__title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.cookie-consent__text {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-consent__text a {
  color: var(--bleu);
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.5rem;
}

.cookie-consent__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.86rem;
}

.cookie-consent__btn--accept {
  background: var(--bleu);
  color: var(--snow);
}

.cookie-consent__btn--decline {
  background: var(--fog);
  color: var(--ink);
  border: 1px solid var(--line);
}

.page {
  padding: 2.2rem 0 3.2rem;
}

.page__panel {
  padding: 1.85rem 1.9rem 2rem;
  border-radius: calc(var(--radius) + 2px);
  background: var(--snow);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(13, 18, 25, 0.05);
}

.page__eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 85, 164, 0.1);
  color: var(--bleu-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.page__lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.page__content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 0.65rem;
  color: var(--ink);
}

.page__content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  margin: 1.2rem 0 0.5rem;
  color: var(--ink);
}

.page__content p,
.page__content li {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.page__content p + p {
  margin-top: 0.75rem;
}

.page__content ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0.55rem 0 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.page__content a {
  color: var(--bleu);
  text-decoration: underline;
}

.page__email {
  display: inline-flex;
  align-items: center;
  margin-top: 0.35rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  background: rgba(0, 85, 164, 0.08);
  border: 1px solid rgba(0, 85, 164, 0.18);
  color: var(--bleu-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
}

.page__email:hover,
.page__email:focus-visible {
  background: rgba(0, 85, 164, 0.14);
  outline: none;
}

.page__note {
  margin-top: 1.35rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  background: var(--fog);
  border-left: 4px solid var(--bleu);
  font-size: 0.9rem;
  color: var(--ink);
}

@media (max-width: 980px) {
  .offer__row {
    grid-template-columns: 48px 96px minmax(100px, 1fr) minmax(140px, 1.3fr);
    grid-template-areas:
      "rank media brand score"
      "rank media bonus bonus"
      "action action action action";
  }

  .offer__rank { grid-area: rank; }
  .offer__media { grid-area: media; }
  .offer__brand { grid-area: brand; }
  .offer__bonus { grid-area: bonus; }
  .offer__score { grid-area: score; justify-self: end; text-align: right; }
  .offer__action { grid-area: action; justify-content: stretch; }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 120;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 18, 25, 0.96);
    border-bottom: none;
    box-shadow: none;
    max-height: none;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    width: min(100% - 2.5rem, 320px);
    padding: 0;
  }

  .primary-nav__link {
    width: 100%;
    padding: 0.95rem 1.1rem;
    border-radius: 10px;
    color: rgba(244, 246, 249, 0.88);
    background: rgba(255, 255, 255, 0.04);
    justify-content: center;
    font-size: 1.05rem;
  }

  .primary-nav__link:hover,
  .primary-nav__link:focus-visible {
    color: var(--snow);
    background: rgba(0, 85, 164, 0.35);
  }

  .primary-nav__link.is-active {
    color: var(--snow);
    background: var(--bleu);
  }

  body.is-nav-open {
    overflow: hidden;
  }

  .topbar__text {
    font-size: 0.7rem;
  }

  .hero {
    padding: 1.5rem 0 2.3rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    min-height: auto;
    padding: 1.15rem 1.2rem;
  }

  .hero__aside-foot {
    padding-top: 0.85rem;
  }

  .hero__mark {
    font-size: 1.85rem;
  }

  .hero__year {
    font-size: 0.95rem;
  }

  .hero__copy {
    padding: 1.45rem 1.3rem;
  }

  .hero__title {
    max-width: none;
  }

  .listing {
    padding-bottom: 2.8rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__badges {
    gap: 0.55rem;
  }

  .site-footer {
    padding: 2rem 0 1.5rem;
  }

  .page {
    padding: 1.6rem 0 2.5rem;
  }

  .page__panel {
    padding: 1.35rem 1.2rem 1.5rem;
  }
}

@media (max-width: 560px) {
  .offer__row {
    grid-template-columns: 40px 1fr auto;
    grid-template-areas:
      "rank brand score"
      "media media media"
      "bonus bonus bonus"
      "action action action";
    gap: 0.75rem;
    padding: 1rem;
  }

  .offer__media {
    height: 64px;
  }

  .offer__disclaimer {
    padding: 0.65rem 1rem 0.8rem;
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .brand__name {
    font-size: 1.15rem;
  }

  .brand__tld {
    font-size: 0.85rem;
  }

  .footer__age {
    flex-direction: column;
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-consent__btn {
    flex: 1;
  }

  .age-gate__actions {
    flex-direction: column;
  }
}
