:root {
  --bg: #f4efe7;
  --bg-soft: #fbf7f2;
  --ink: #10263c;
  --ink-soft: #415569;
  --line: rgba(16, 38, 60, 0.12);
  --accent: #b9873d;
  --accent-dark: #8d672e;
  --panel: rgba(255, 255, 255, 0.86);
  --shadow: 0 24px 64px rgba(16, 38, 60, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(185, 135, 61, 0.18), transparent 36%),
    linear-gradient(180deg, #f3ecdf 0%, #f8f4ee 34%, #fcfaf7 100%);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(248, 244, 238, 0.88);
  border-bottom: 1px solid var(--line);
}

.page-home .site-header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-home .site-header .site-nav a,
.page-home .site-header .nav-toggle {
  color: rgba(255, 255, 255, 0.95);
}

.page-home .site-header .site-nav a.is-active,
.page-home .site-header .site-nav a:hover {
  color: #ffffff;
}

.page-home .site-header .site-nav a.is-active::after,
.page-home .site-header .site-nav a:hover::after {
  background: #ffffff;
}

.page-home .site-header.is-scrolled {
  background: rgba(248, 244, 238, 0.94);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(16, 38, 60, 0.12);
}

.page-home .site-header.is-scrolled .site-nav a {
  color: var(--ink-soft);
}

.page-home .site-header.is-scrolled .site-nav a.is-active,
.page-home .site-header.is-scrolled .site-nav a:hover {
  color: var(--ink);
}

.page-home .site-header.is-scrolled .site-nav a.is-active::after,
.page-home .site-header.is-scrolled .site-nav a:hover::after {
  background: var(--accent);
}

.page-home .site-header.is-scrolled .nav-toggle {
  color: var(--ink);
  border-color: var(--line);
  background: white;
}

.site-header__inner,
.hero__inner,
.page-block,
.site-footer__inner {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 88px;
}

.brand img {
  width: 230px;
  max-width: 48vw;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink-soft);
  position: relative;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--ink);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  font: inherit;
  font-weight: 700;
}

.site-main {
  flex: 1;
  padding-bottom: 3rem;
}

.hero {
  padding: 4.5rem 0 1.5rem;
}

.hero--home {
  padding-top: 5.5rem;
}

.hero--home-cover {
  position: relative;
  min-height: 100vh;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-cover__background,
.hero-cover__overlay {
  position: absolute;
  inset: 0;
}

.hero-cover__background {
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.hero-cover__overlay {
  background:
    linear-gradient(100deg, rgba(8, 23, 37, 0.72) 0%, rgba(8, 23, 37, 0.48) 46%, rgba(8, 23, 37, 0.22) 100%),
    linear-gradient(180deg, rgba(8, 23, 37, 0.46) 0%, rgba(8, 23, 37, 0.16) 100%);
}

.hero-cover__content {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding-top: clamp(5.5rem, 8vw, 8rem);
  padding-bottom: clamp(2rem, 4vw, 3.2rem);
  max-width: 920px;
}

.hero--home-cover .eyebrow {
  color: #d0a75e;
}

.hero--home-cover h1 {
  color: #fff;
  font-size: clamp(3rem, 9vw, 8.2rem);
  margin: 0.55rem 0 1rem;
  line-height: 0.95;
}

.hero--home-cover p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2.2vw, 1.9rem);
  max-width: 860px;
}

.hero--home-cover .hero-cover__lead {
  color: #ffffff !important;
}

.hero--home-cover .button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero--home-cover .button--ghost:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.92);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 1.5rem;
}

.hero__copy,
.hero__panel {
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.hero__copy {
  padding: clamp(2rem, 4vw, 4rem);
}

.hero__panel {
  padding: 2rem;
  align-self: end;
}

.eyebrow,
.hero__label,
.post-card__meta,
.article-header__meta,
.section-link {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-dark);
}

.hero h1,
.hero h2,
.article-header h1,
.section-heading h2,
.sidebar-panel h2,
.article-content h2,
.article-content h3,
.article-content h4 {
  font-family: "Source Serif 4", serif;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 5.8rem);
  margin: 0.55rem 0 1rem;
}

.hero p,
.hero li,
.article-content,
.post-card__body p,
.site-footer p {
  color: var(--ink-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  font-weight: 800;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.hero__list {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
}

.page-block {
  padding: 1.5rem 0;
}

.page-block--split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.72fr);
  gap: 1.6rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.section-heading h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

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

.post-card,
.sidebar-panel,
.article-shell,
.search-results__item,
.cookie-banner__card,
.consent-modal__card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
}

.post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.post-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(16, 38, 60, 0.12), rgba(185, 135, 61, 0.12));
}

.post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.post-card:hover .post-card__image img {
  transform: scale(1.04);
}

.post-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  padding: 1.3rem 1.3rem 1.5rem;
}

.post-card h3 {
  margin: 0.2rem 0 0.5rem;
  font-size: 1.3rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.post-card__link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 0.45rem;
  font-weight: 800;
  color: var(--ink);
}

.article-page,
.article-shell {
  border-radius: var(--radius);
}

.article-header {
  width: min(calc(100% - 2rem), 900px);
  margin: 0 auto 1.2rem;
  padding-top: 1rem;
}

.article-header h1 {
  margin: 0.5rem 0 0.8rem;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.article-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.tag-list {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.tag-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.7fr);
  gap: 1.4rem;
  padding: clamp(1.25rem, 2vw, 1.8rem);
}

.article-shell--wide {
  grid-template-columns: minmax(0, 1fr);
}

.article-content {
  font-family: "Source Serif 4", serif;
  font-size: 1.16rem;
  line-height: 1.82;
}

.article-content > :first-child {
  margin-top: 0;
}

.article-content h2 {
  margin: 2rem 0 1rem;
  font-size: 2rem;
}

.article-content h3 {
  margin: 1.7rem 0 0.8rem;
  font-size: 1.55rem;
}

.article-content p,
.article-content li {
  margin: 0 0 1rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.3rem;
}

.article-content img {
  margin: 1.5rem auto;
  border-radius: calc(var(--radius) - 8px);
  box-shadow: 0 18px 48px rgba(16, 38, 60, 0.16);
}

.article-content a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.article-content blockquote {
  margin: 1.5rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid var(--accent);
  background: rgba(185, 135, 61, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.98rem;
}

.article-content th,
.article-content td {
  border: 1px solid var(--line);
  padding: 0.8rem;
  text-align: left;
}

.article-content--legal {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}

.home-story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.home-story-grid--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.home-story-grid__media img {
  width: 100%;
  height: auto;
  display: block;
}

.home-story-grid__copy {
  font-family: "Manrope", sans-serif;
  color: var(--ink-soft);
  font-size: 1.14rem;
  line-height: 1.65;
}

.home-story-grid__copy h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.home-story-grid__copy p {
  margin: 0 0 1rem;
}

.home-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.home-video-grid .embed-frame {
  margin: 0;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.7);
}

.embed-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sidebar-panel {
  border-radius: var(--radius);
  padding: 1.25rem;
}

.sidebar-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.sidebar-list li {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.sidebar-list a {
  overflow-wrap: anywhere;
}

.sidebar-list span {
  color: var(--ink-soft);
  font-size: 0.83rem;
}

.sidebar-list--compact li {
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
}

.search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
}

.search-form--wide {
  margin-bottom: 1.25rem;
}

.search-form input {
  min-width: 0;
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  padding: 0.95rem 1rem;
  font: inherit;
}

.search-form button,
.footer-link-button,
.consent-modal__close {
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.05rem;
  background: var(--ink);
  color: white;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.footer-link-button,
.consent-modal__close {
  background: transparent;
  color: inherit;
  padding: 0;
}

.pagination {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.pagination a {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.pagination a.is-active {
  background: var(--ink);
  color: white;
}

.archive-index {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  gap: 2rem;
}

.archive-index li {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.archive-index a {
  font-family: "Source Serif 4", serif;
  font-size: 1.35rem;
}

.search-results {
  display: grid;
  gap: 1rem;
}

.search-results__item {
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: rgba(16, 38, 60, 0.96);
  color: rgba(255, 255, 255, 0.86);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
}

.site-footer__brand {
  max-width: 360px;
}

.site-footer__brand img {
  width: 220px;
  margin-bottom: 0.75rem;
}

.site-footer__brand p {
  margin: 0;
}

.site-footer__contact {
  display: grid;
  gap: 0.7rem;
}

.site-footer__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
}

.site-footer__contact a:hover {
  color: #ffffff;
}

.footer-icon {
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: min(440px, calc(100% - 2rem));
  z-index: 40;
}

.cookie-banner__card,
.consent-modal__card {
  border-radius: var(--radius);
  padding: 1.25rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.consent-modal {
  border: 0;
  padding: 0;
  width: min(680px, calc(100% - 2rem));
  background: transparent;
}

.consent-modal::backdrop {
  background: rgba(16, 38, 60, 0.45);
}

.consent-modal__header,
.consent-option {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.consent-modal__header h2 {
  margin: 0 0 1rem;
}

.consent-option {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.consent-option p {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
  gap: 1.4rem;
}

.contact-card,
.contact-info {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: clamp(1.1rem, 2vw, 1.8rem);
}

.contact-card h2,
.contact-info h2 {
  margin: 0 0 0.9rem;
  font-family: "Source Serif 4", serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.contact-notice {
  border-radius: 12px;
  padding: 0.75rem 0.95rem;
  margin: 0 0 1rem;
  font-weight: 600;
}

.contact-notice--ok {
  background: rgba(45, 148, 96, 0.12);
  color: #236b4a;
  border: 1px solid rgba(45, 148, 96, 0.35);
}

.contact-notice--error {
  background: rgba(188, 60, 60, 0.1);
  color: #8f2c2c;
  border: 1px solid rgba(188, 60, 60, 0.3);
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0.78rem 0.85rem;
  font: inherit;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form__submit {
  justify-self: start;
}

.contact-info p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.contact-info__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.contact-info__list li {
  color: var(--ink-soft);
}

.contact-info__list strong {
  color: var(--ink);
}

.contact-info__list a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.contact-info__list a:hover {
  color: var(--ink);
}

@media (max-width: 980px) {
  .hero__inner,
  .page-block--split,
  .article-shell,
  .card-grid,
  .home-video-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-story-grid,
  .home-story-grid--reverse {
    grid-template-columns: 1fr;
  }

  .archive-index {
    columns: 1;
  }

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

  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: 76px;
  }

  .brand img {
    width: 190px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a.is-active::after,
  .site-nav a:hover::after {
    display: none;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-block {
    padding: 1rem 0;
  }

  .hero {
    padding: 3.4rem 0 1rem;
  }

  .hero__copy,
  .hero__panel,
  .sidebar-panel,
  .contact-card,
  .contact-info {
    border-radius: 16px;
    padding: 1rem;
  }

  .post-card__body {
    padding: 1rem;
  }

  .post-card h3 {
    font-size: 1.15rem;
    line-height: 1.25;
  }

  .post-card__meta {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .search-form input,
  .search-form button,
  .pagination a {
    min-height: 44px;
  }

  .article-header {
    width: min(calc(100% - 1rem), 900px);
    margin-bottom: 0.8rem;
  }

  .article-content {
    font-size: 1.04rem;
    line-height: 1.7;
  }

  .article-content img {
    margin: 1rem auto;
    border-radius: 12px;
  }

  .home-story-grid,
  .home-story-grid--reverse {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .home-story-grid__copy {
    font-size: 1.02rem;
    line-height: 1.6;
  }

  .home-video-grid {
    gap: 0.8rem;
  }

  .site-footer__inner {
    gap: 1rem;
    padding: 1.3rem 0;
  }

  .search-form {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 1rem;
    width: auto;
  }

  .page-home .site-header .site-nav {
    background: rgba(16, 38, 60, 0.92);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .page-home .site-header.is-scrolled .site-nav {
    background: rgba(255, 255, 255, 0.96);
    border-color: var(--line);
  }

  .hero--home-cover {
    min-height: 88vh;
  }

  .hero--home-cover .hero-cover__background {
    background-position: center top;
    transform: scale(1.1) translateY(-90px);
  }

  .hero--home-cover h1 {
    font-size: clamp(2.3rem, 13vw, 4.2rem);
  }
}

@media (max-width: 480px) {
  .site-header__inner,
  .hero__inner,
  .page-block,
  .site-footer__inner {
    width: min(calc(100% - 1rem), var(--max));
  }

  .brand img {
    width: 160px;
    max-width: 56vw;
  }

  .hero--home-cover {
    min-height: 82vh;
  }

  .hero--home-cover .hero-cover__background {
    background-position: center top;
    transform: scale(1.12) translateY(-130px);
  }

  .hero-cover__content {
    padding-top: 5.2rem;
  }

  .hero--home-cover .hero-cover__lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .button {
    width: 100%;
  }

  .hero__actions {
    width: 100%;
    gap: 0.55rem;
  }

  .section-heading h2 {
    font-size: 1.7rem;
  }

  .pagination {
    justify-content: flex-start;
  }

  .pagination a {
    min-width: 38px;
    min-height: 38px;
    font-size: 0.86rem;
  }

  .cookie-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    width: auto;
  }

  .consent-modal {
    width: calc(100% - 1rem);
  }
}
