:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #f0f4f8;
  --ink: #172033;
  --muted: #64748b;
  --line: #d9e2ec;
  --brand: #1456a0;
  --brand-2: #0f766e;
  --accent: #c2410c;
  --success: #047857;
  --warning: #a16207;
  --danger: #be123c;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.boot-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--muted);
}

.loading-state-icon {
  width: 92px;
  height: 72px;
  object-fit: contain;
}

.boot-screen strong,
.boot-screen span {
  display: block;
}

.mark,
.fallback-icon {
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.mark {
  width: 42px;
  height: 42px;
  font-size: 14px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: block;
  flex: none;
  object-fit: contain;
}

.logo-lockup {
  width: 204px;
  height: 48px;
  display: block;
  flex: none;
  object-fit: contain;
  object-position: left center;
}

.header-logo-lockup {
  width: 238px;
  height: 56px;
}

.footer-logo-lockup {
  width: 204px;
  height: 56px;
}

.boot-logo {
  width: 230px;
  height: 74px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link,
.nav-button,
.ghost-button,
.solid-button {
  border: 0;
  border-radius: 8px;
  padding: 10px 12px;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.nav-link:hover,
.nav-button:hover,
.ghost-button:hover {
  background: var(--surface-2);
}

.solid-button {
  color: #fff;
  background: var(--brand);
}

.solid-button:hover {
  background: #0f437d;
}

.mega {
  position: absolute;
  left: 50%;
  top: 68px;
  width: min(1040px, calc(100vw - 28px));
  max-height: min(74vh, 720px);
  transform: translateX(-50%);
  overflow: auto;
  display: none;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mega.open {
  display: block;
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.mega-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.mega-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 800;
}

.mega-title-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.mega-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-list a,
.category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.category-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.mega-list a:hover,
.category-row:hover {
  color: var(--brand);
}

.page {
  min-height: calc(100vh - 68px);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 44px 22px;
}

.hero {
  padding-top: 52px;
  padding-bottom: 40px;
  background:
    linear-gradient(135deg, rgba(20, 86, 160, 0.1), rgba(15, 118, 110, 0.08)),
    #fff;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 28px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.1;
}

h1 {
  max-width: 820px;
  font-size: clamp(38px, 6vw, 64px);
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 19px;
}

.lead {
  max-width: 780px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.search-panel,
.card,
.wide-card,
.review-panel,
.filters,
.stat-strip {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.search-panel {
  position: relative;
  padding: 18px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #b8c7d9;
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
}

.search-box:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(20, 86, 160, 0.12);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 17px;
}

.search-results {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 78px;
  z-index: 30;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.search-result {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.search-result:last-child {
  border-bottom: 0;
}

.search-result:hover {
  background: #f8fafc;
}

.small {
  color: var(--muted);
  font-size: 13px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.stat {
  padding: 18px;
  background: #fff;
}

.stat strong {
  display: block;
  font-size: 24px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
}

.static-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: end;
  padding-bottom: 22px;
}

.static-hero-copy {
  max-width: 820px;
}

.static-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.static-metric {
  min-width: 0;
  padding: 16px 14px;
  background: #fff;
}

.static-metric strong,
.static-metric span {
  display: block;
}

.static-metric strong {
  color: var(--brand);
  font-size: 24px;
  line-height: 1;
}

.static-metric span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.static-layout {
  display: grid;
  gap: 22px;
  padding-top: 22px;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.policy-card,
.policy-panel,
.policy-cta {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.policy-card {
  padding: 18px;
  border-top: 4px solid var(--brand);
}

.policy-card h3 {
  margin-bottom: 8px;
}

.policy-card p,
.policy-panel p,
.policy-cta p {
  color: var(--muted);
}

.policy-panels {
  display: grid;
  gap: 16px;
}

.policy-panel {
  padding: 24px;
}

.policy-panel h2 {
  margin-bottom: 12px;
}

.policy-panel p {
  max-width: 920px;
}

.policy-panel p:last-child {
  margin-bottom: 0;
}

.policy-cta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: linear-gradient(135deg, #fff, #f0f7fb);
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  padding: 18px;
}

.card:hover {
  border-color: #aac0d8;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.domain-icon {
  width: 44px;
  height: 44px;
  display: block;
  flex: none;
}

.subcategory-icon {
  width: 32px;
  height: 32px;
  display: block;
  flex: none;
}

.small-domain-icon,
.category-row-icon,
.mega-subcategory-icon {
  width: 28px;
  height: 28px;
}

.category-card-head {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.domain-hero-title {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: center;
}

.domain-hero-icon {
  width: 72px;
  height: 72px;
}

.product-top {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
}

.product-logo {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.fallback-product-icon {
  object-fit: cover;
  background: transparent;
}

.fallback-icon {
  width: 54px;
  height: 54px;
}

.summary {
  margin: 14px 0;
  color: var(--muted);
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.pill,
.badge,
.notice,
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
}

.pill {
  color: #24415f;
  background: #edf4fb;
}

.badge {
  color: #5a320b;
  background: #fff4d6;
}

.notice {
  color: #7f1d1d;
  background: #fee2e2;
}

.notice-pricing {
  color: #5a320b;
  background: #fff4d6;
}

.award-badge {
  border: 1px solid #bfdbfe;
  color: #0f3f75;
  background: #eff6ff;
}

.award-best-free {
  border-color: #bbf7d0;
  color: #14532d;
  background: #f0fdf4;
}

.award-best-open-source {
  border-color: #c7d2fe;
  color: #3730a3;
  background: #eef2ff;
}

.award-best-for-teams {
  border-color: #99f6e4;
  color: #134e4a;
  background: #f0fdfa;
}

.award-best-for-developers {
  border-color: #fed7aa;
  color: #7c2d12;
  background: #fff7ed;
}

.award-icon {
  width: 18px;
  height: 18px;
  flex: none;
  object-fit: contain;
  border-radius: 4px;
}

.award-feature-image,
.award-section-image,
.award-type-image,
.award-identity-image,
.award-large-image {
  display: block;
  height: auto;
  object-fit: contain;
}

.award-feature-image {
  width: min(178px, 72%);
  margin: 0 auto 14px;
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.16));
}

.award-card {
  display: grid;
  align-content: start;
}

.award-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.award-showcase-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  flex: 1 1 280px;
  max-width: 390px;
  min-height: 140px;
  padding: 12px;
  border: 1px solid #c7d6e6;
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.award-showcase-card:hover {
  border-color: #8fb3d9;
  background: #fff;
}

.award-showcase-card .award-large-image {
  width: 108px;
  filter: drop-shadow(0 10px 14px rgba(15, 23, 42, 0.14));
}

.award-showcase-card strong,
.award-showcase-card small {
  display: block;
}

.award-showcase-card small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 700;
}

.status-icon {
  width: 16px;
  height: 16px;
  flex: none;
}

.award-section {
  padding-top: 28px;
}

.award-section-head {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

.award-section-image {
  width: 170px;
  filter: drop-shadow(0 16px 20px rgba(15, 23, 42, 0.18));
}

.award-type-card,
.award-identity-card {
  display: grid;
  align-content: start;
  gap: 12px;
}

.award-type-card {
  justify-items: center;
  text-align: center;
}

.award-type-image {
  width: min(150px, 76%);
  filter: drop-shadow(0 14px 18px rgba(15, 23, 42, 0.16));
}

.award-type-card strong {
  font-size: 30px;
  line-height: 1;
}

.award-identity-image {
  width: 128px;
  justify-self: center;
  filter: drop-shadow(0 12px 18px rgba(15, 23, 42, 0.15));
}

.award-section-head h2 {
  margin-top: 10px;
}

.award-section-head p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
}

.award-winner-card {
  gap: 12px;
}

.award-winner-main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.award-winner-main h3 {
  margin: 0 0 3px;
}

.search-state-icon {
  width: 44px;
  height: 34px;
  object-fit: contain;
}

.empty {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.empty-state-icon {
  width: 120px;
  height: 90px;
  object-fit: contain;
}

.large-empty-state-icon {
  width: 150px;
  height: 112px;
}

.not-found-layout {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
}

.score {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 900;
}

.score strong {
  font-size: 24px;
}

.wide-card {
  padding: 22px;
}

.category-card h3,
.award-card h3 {
  margin-bottom: 8px;
}

.category-list {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.filters {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, minmax(130px, 1fr));
  gap: 10px;
  padding: 14px;
  margin-bottom: 18px;
}

.filters input,
.filters select {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
}

.list {
  display: grid;
  gap: 14px;
}

.list-card {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  align-items: start;
}

.list-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.review-hero {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
}

.review-title {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: center;
}

.review-title .product-logo,
.review-title .fallback-icon {
  width: 70px;
  height: 70px;
}

.review-panel {
  padding: 20px;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.score-box {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
}

.score-breakdown {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.score-breakdown-title h3,
.score-model h4 {
  margin-bottom: 4px;
}

.score-breakdown-title p {
  margin: 0;
}

.score-model {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.score-model-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.score-bars {
  display: grid;
  gap: 10px;
}

.score-factor {
  display: grid;
  gap: 5px;
}

.score-factor-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-weight: 800;
}

.score-factor-top strong {
  font-size: 14px;
}

.score-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-2);
}

.score-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.score-factor-meta {
  color: var(--muted);
}

@media (min-width: 921px) {
  .review-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
  }

  .review-grid > .review-panel {
    align-self: start;
  }

  .score-breakdown {
    gap: 14px;
  }

  .score-breakdown-title p {
    font-size: 12px;
  }

  .score-model {
    padding-top: 12px;
  }

  .score-model-header {
    margin-bottom: 8px;
  }

  .score-bars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 10px;
  }

  .score-factor {
    gap: 4px;
  }

  .score-factor-top {
    gap: 8px;
    font-size: 13px;
  }

  .score-factor-top span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .score-factor-meta {
    font-size: 11px;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.content-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.content-list li {
  margin-bottom: 8px;
}

.source-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.source-item {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.footer {
  margin-top: 42px;
  border-top: 1px solid var(--line);
  background: #172033;
  color: #dce6f1;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 30px 22px;
}

.footer .brand {
  margin-bottom: 14px;
}

.footer a,
.footer-button {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-button {
  border: 0;
  padding: 0;
  background: transparent;
  font-weight: 700;
}

.footer-button:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: min(760px, calc(100vw - 44px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 8px;
  background: #172033;
  color: #edf4fb;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.28);
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
}

.cookie-banner-copy p {
  margin: 0;
  color: #cbd8e6;
  font-size: 14px;
}

.cookie-actions,
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-button {
  border: 1px solid #80c7c0;
  border-radius: 8px;
  padding: 10px 13px;
  background: #0f766e;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.cookie-button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.cookie-button:hover,
.cookie-button.secondary:hover {
  background: #1456a0;
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(15, 23, 42, 0.48);
}

.cookie-modal {
  width: min(660px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.28);
}

.cookie-modal-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.cookie-modal h2,
.cookie-choice h3 {
  margin: 0;
}

.cookie-icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
  color: var(--ink);
  font-weight: 900;
}

.cookie-modal-lead {
  margin: 12px 0 0;
  color: var(--muted);
}

.cookie-choice-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.cookie-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
}

.cookie-choice p {
  margin: 5px 0 0;
  color: var(--muted);
}

.cookie-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.cookie-status.active {
  border-color: rgba(15, 118, 110, 0.22);
  background: #e6f5f3;
  color: #0f766e;
}

.cookie-modal-actions {
  margin-top: 20px;
}

.empty {
  padding: 30px;
  border: 1px dashed #b8c7d9;
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
}

@media (max-width: 920px) {
  .header-inner {
    height: auto;
    flex-wrap: wrap;
    padding: 12px 18px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    margin-left: 0;
  }

  .mega {
    top: 118px;
  }

  .mega-grid,
  .hero-grid,
  .static-hero,
  .policy-grid,
  .grid-3,
  .grid-4,
  .review-grid,
  .two-col,
  .award-section-head,
  .filters {
    grid-template-columns: 1fr;
  }

  .award-section-image {
    width: 150px;
  }

  .list-card {
    grid-template-columns: 54px 1fr;
  }

  .list-actions {
    grid-column: 1 / -1;
    align-items: flex-start;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .static-metrics {
    grid-template-columns: 1fr;
  }

  .policy-cta {
    display: grid;
  }

  .policy-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 36px;
  }

  .section {
    padding: 34px 16px;
  }

  .section-head {
    display: block;
  }

  .award-showcase-card {
    grid-template-columns: 86px minmax(0, 1fr);
    min-height: 118px;
  }

  .award-showcase-card .award-large-image {
    width: 86px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .cookie-actions,
  .cookie-modal-actions {
    justify-content: stretch;
  }

  .cookie-actions > *,
  .cookie-modal-actions > * {
    width: 100%;
    text-align: center;
  }

  .cookie-choice {
    grid-template-columns: 1fr;
  }
}
