@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #06141b;
  --ink-soft: #0b1f28;
  --panel: #102a33;
  --teal: #14919b;
  --teal-bright: #1fb5c1;
  --teal-deep: #0d7377;
  --gold: #c9a962;
  --gold-soft: #e2c98a;
  --mist: #d7e6ea;
  --fog: #9bb4bc;
  --white: #f4fafb;
  --line: rgba(215, 230, 234, 0.12);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  --radius: 14px;
  --max: 1180px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 100% -10%, rgba(20, 145, 155, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 20%, rgba(201, 169, 98, 0.08), transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, #081820 45%, var(--ink-soft) 100%);
  color: var(--mist);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.topbar {
  background: #031015;
  border-bottom: 1px solid var(--line);
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  text-align: center;
  color: var(--fog);
}

.topbar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.35rem;
  padding: 0 0.4rem;
  border-radius: 4px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.topbar__text strong {
  color: var(--gold-soft);
  font-weight: 600;
}

.navbar {
  position: relative;
  z-index: 1000;
  background: rgba(6, 20, 27, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  overflow: visible;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-block: 0.75rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  position: relative;
  z-index: 1003;
}

.brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--teal-deep), var(--teal));
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 8px 18px rgba(13, 115, 119, 0.35);
  flex-shrink: 0;
}

.brand__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
}

.brand__tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1003;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-menu a {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fog);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
  color: var(--white);
  background: rgba(20, 145, 155, 0.14);
}

.nav-overlay {
  display: none;
}

.hero {
  padding: 2.75rem 0 3.25rem;
}

.hero__panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(20, 145, 155, 0.16), transparent 42%),
    linear-gradient(225deg, rgba(201, 169, 98, 0.1), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow);
  padding: 2.1rem 1.75rem;
}

.hero__panel::before {
  content: '';
  position: absolute;
  inset: auto -10% -40% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 181, 193, 0.22), transparent 70%);
  pointer-events: none;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-bright);
}

.hero__eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 18ch;
  margin-bottom: 0.85rem;
}

.hero h2 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--fog);
  max-width: 54ch;
}

.listing {
  padding: 0 0 3.5rem;
}

.listing__head {
  margin-bottom: 1.5rem;
}

.listing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.55rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-bright);
}

.listing__eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.listing__title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.listing__lead {
  max-width: 58ch;
  color: var(--fog);
  font-size: 0.98rem;
}

.offers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(180deg, rgba(20, 145, 155, 0.08), transparent 48%),
    rgba(16, 42, 51, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.offer__row {
  display: grid;
  grid-template-columns: 64px 110px minmax(120px, 1.1fr) minmax(160px, 1.4fr) 96px 160px;
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1rem 1.15rem;
}

.offer__rank span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.22), rgba(20, 145, 155, 0.18));
  border: 1px solid rgba(201, 169, 98, 0.35);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.offer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0.35rem 0.45rem;
  border-radius: 12px;
  background: transparent;
  border: none;
}

.offer__logo img {
  width: 100%;
  max-width: 100px;
  height: 44px;
  object-fit: contain;
}

.offer__label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
}

.offer__name strong {
  display: block;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.offer__bonus p {
  color: var(--gold-soft);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.score-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.12rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(20, 145, 155, 0.16);
  border: 1px solid rgba(31, 181, 193, 0.35);
}

.score-pill__value {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.score-pill__max {
  color: var(--fog);
  font-size: 0.75rem;
  font-weight: 500;
}

.offer__cta {
  display: flex;
  justify-content: flex-end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.15rem;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 22px rgba(13, 115, 119, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  width: 100%;
}

.btn-visit:hover {
  background: linear-gradient(135deg, var(--teal-bright), var(--teal));
  transform: translateY(-1px);
}

.offer__disclaimer {
  border-top: 1px solid var(--line);
  padding: 0.7rem 1.15rem 0.85rem;
  background: rgba(3, 16, 21, 0.45);
}

.offer__disclaimer p {
  font-size: 0.72rem;
  line-height: 1.55;
  color: #7f97a0;
}

.content-block {
  padding: 0 0 3.25rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 42, 51, 0.88);
  padding: 1.35rem 1.25rem;
}

.feature-card__num {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
}

.feature-card h3 {
  color: var(--white);
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--fog);
  font-size: 0.95rem;
  line-height: 1.65;
}

.feature-card a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.insight {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background:
    linear-gradient(120deg, rgba(201, 169, 98, 0.1), transparent 40%),
    rgba(16, 42, 51, 0.9);
  padding: 1.5rem 1.35rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

.insight h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.insight p {
  color: var(--fog);
  font-size: 0.98rem;
}

.insight__list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.insight__list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--mist);
  font-size: 0.95rem;
}

.insight__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal-bright);
}

.page-hero {
  padding: 2.25rem 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.page-hero p {
  max-width: 62ch;
  color: var(--fog);
  font-size: 1.02rem;
}

.page-body {
  padding: 0 0 3.5rem;
}

.prose {
  max-width: 760px;
  display: grid;
  gap: 1rem;
}

.prose h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
}

.prose h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-top: 0.35rem;
}

.prose p,
.prose li {
  color: var(--fog);
  font-size: 0.98rem;
  line-height: 1.7;
}

.prose ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.4rem;
}

.prose a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-panel {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 42, 51, 0.9);
  padding: 1.35rem 1.25rem;
  max-width: 520px;
}

.contact-panel span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.contact-panel a {
  color: var(--teal-bright);
  font-size: 1.15rem;
  font-weight: 600;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 42, 51, 0.9);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-bright);
  font-weight: 600;
}

.blog-card h3 {
  color: var(--white);
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.blog-card p {
  color: var(--fog);
  font-size: 0.92rem;
  line-height: 1.65;
  flex: 1;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 2.25rem 0 1.5rem;
  color: var(--fog);
  font-size: 0.875rem;
  background: rgba(3, 12, 16, 0.72);
}

.footer-safe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.35rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.footer-safe__text {
  max-width: 48ch;
  line-height: 1.55;
}

.footer-safe__text strong {
  color: var(--gold-soft);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  align-items: center;
  opacity: 0.92;
}

.footer-badges img {
  height: 28px;
  width: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 1.35rem;
  margin-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.footer-brand__name {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.45rem;
}

.footer-brand p {
  max-width: 36ch;
  line-height: 1.55;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-col a {
  color: var(--fog);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-disclosure {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(16, 42, 51, 0.55);
  margin-bottom: 1.1rem;
  line-height: 1.55;
  font-size: 0.82rem;
}

.footer-age {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(201, 169, 98, 0.08);
  border: 1px solid rgba(201, 169, 98, 0.22);
}

.footer-age__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  height: 2.4rem;
  border-radius: 8px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.footer-age p {
  line-height: 1.5;
  font-size: 0.84rem;
}

.footer-copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem;
  color: #7f97a0;
  font-size: 0.8rem;
}

.age-gate,
.age-restricted {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(2, 8, 12, 0.88);
}

.age-gate.is-open,
.age-restricted.is-open {
  display: flex;
}

.age-gate__card,
.age-restricted__card {
  width: min(100%, 440px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #0d222b 0%, #08161c 100%);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.age-gate__card h2,
.age-restricted__card h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.65rem;
  margin-bottom: 0.65rem;
}

.age-gate__card p,
.age-restricted__card p {
  color: var(--fog);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.age-gate__actions {
  display: grid;
  gap: 0.65rem;
}

.age-btn {
  min-height: 46px;
  border-radius: 11px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.age-btn--yes {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--white);
}

.age-btn--no {
  background: transparent;
  border-color: var(--line);
  color: var(--mist);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 3500;
  display: none;
  width: min(100% - 0rem, 720px);
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 22, 28, 0.96);
  box-shadow: var(--shadow);
  padding: 1rem 1.15rem;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.cookie-banner p {
  flex: 1 1 280px;
  color: var(--fog);
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-banner a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.cookie-btn {
  min-height: 40px;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-btn--accept {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: var(--white);
}

.cookie-btn--essential {
  background: transparent;
  border-color: var(--line);
  color: var(--mist);
}

body.age-locked {
  overflow: hidden;
}

.site-footer a {
  color: var(--gold-soft);
}

.site-footer a:hover {
  color: var(--white);
}

@media (max-width: 1100px) and (min-width: 901px) {
  .offer__row {
    grid-template-columns: 56px 96px minmax(110px, 1fr) minmax(140px, 1.3fr) 88px 140px;
    gap: 0.7rem 0.75rem;
    padding: 0.95rem 1rem;
  }

  .btn-visit {
    padding: 0.7rem 0.75rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(3, 10, 14, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 1001;
  }

  .nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(86vw, 320px);
    height: 100dvh;
    max-height: 100vh;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 5.5rem 1.25rem 2rem;
    background: linear-gradient(180deg, #0a1c24 0%, #06141b 100%);
    border-left: 1px solid var(--line);
    box-shadow: none;
    transform: translateX(calc(100% + 1px));
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.22s ease, visibility 0.22s ease;
    z-index: 1002;
    overflow-y: auto;
  }

  .nav-menu.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.35);
  }

  .nav-menu a {
    padding: 0.9rem 1rem;
    font-size: 1.05rem;
  }

  .hero {
    padding: 1.75rem 0 2.5rem;
  }

  .hero__panel {
    padding: 1.6rem 1.25rem;
  }

  .topbar__inner {
    flex-wrap: wrap;
    justify-content: flex-start;
    text-align: left;
  }

  .offer__row {
    grid-template-columns: 52px 1fr;
    grid-template-areas:
      "rank name"
      "logo logo"
      "bonus bonus"
      "score cta";
    gap: 0.85rem;
    padding: 1rem;
  }

  .offer__rank { grid-area: rank; }
  .offer__logo { grid-area: logo; min-height: 72px; }
  .offer__name { grid-area: name; }
  .offer__bonus { grid-area: bonus; }
  .offer__score { grid-area: score; align-self: end; }
  .offer__cta { grid-area: cta; justify-content: stretch; align-self: end; }

  .offer__disclaimer {
    padding: 0.75rem 1rem 0.9rem;
  }

  .content-grid,
  .blog-grid,
  .footer-grid,
  .insight {
    grid-template-columns: 1fr;
  }

  .footer-safe {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .brand__name {
    font-size: 1.05rem;
  }

  .brand__tag {
    font-size: 0.6rem;
  }

  .topbar {
    font-size: 0.74rem;
  }

  .offer__row {
    grid-template-columns: 48px 1fr;
  }
}
