/* Public portal pages — complements the approved homepage stylesheet. */

.site-main {
  min-height: 52vh;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
  transition: 180ms ease;
}

.button--large {
  min-height: 52px;
  padding-inline: 26px;
}

.button--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(5, 103, 177, 0.18);
}

.button--primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.button--yellow {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 12px 30px rgba(245, 181, 27, 0.18);
}

.button--yellow:hover {
  background: var(--yellow-soft);
  transform: translateY(-2px);
}

.button--whatsapp {
  background: var(--green);
  color: var(--white);
}

.flash-stack {
  position: relative;
  z-index: 40;
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.flash-message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 17px;
  border: 1px solid #cbdde8;
  border-left: 4px solid var(--blue);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(6, 27, 44, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.flash-message--success {
  border-left-color: var(--green);
  background: #f3fcf7;
}

.flash-message--error,
.flash-message--danger {
  border-left-color: #d84343;
  background: #fff7f7;
}

.flash-message--warning {
  border-left-color: var(--yellow);
  background: #fffbef;
}

.flash-message button {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 27, 44, 0.06);
  color: inherit;
  font-size: 19px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 68px 74px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 25%, rgba(5, 103, 177, 0.09), transparent 25%),
    linear-gradient(145deg, #fff 0%, #f1f6f8 100%);
}

.page-hero::after {
  position: absolute;
  top: -170px;
  right: 7%;
  width: 360px;
  height: 530px;
  border: 1px solid rgba(5, 103, 177, 0.1);
  border-radius: 50%;
  content: "";
  transform: rotate(28deg);
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero--compact {
  padding-block: 48px 55px;
}

.page-hero--dark {
  border: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(5, 103, 177, 0.6), transparent 28%),
    linear-gradient(125deg, #041521 0%, #092d44 100%);
  color: var(--white);
}

.page-hero h1,
.contact-hero h1,
.advertise-hero h1,
.gallery-detail__header h1 {
  max-width: 920px;
  margin: 8px 0 12px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.page-hero p {
  max-width: 710px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.page-hero--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero__narrow {
  max-width: 900px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: #74828b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--blue);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs--light {
  color: rgba(255, 255, 255, 0.55);
}

.breadcrumbs--light a {
  color: var(--yellow-soft);
}

.listing-section {
  padding-block: 72px 98px;
}

.section-heading--small h2 {
  font-size: clamp(28px, 3.5vw, 40px);
}

.result-count {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.news-list-card .latest-card__meta > a {
  color: var(--blue);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-list-card h2 {
  margin: 7px 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.3vw, 28px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.news-list-card h2 a {
  transition: color 160ms ease;
}

.news-list-card h2 a:hover {
  color: var(--blue);
}

.empty-state {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: 45px;
  border: 1px dashed #c9d5db;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.empty-state--wide {
  min-height: 420px;
}

.empty-state__mark {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.empty-state h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 34px);
  letter-spacing: -0.03em;
}

.empty-state p {
  max-width: 490px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.home-empty-hero {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: clamp(35px, 6vw, 70px);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(4, 21, 33, 0.98), rgba(4, 21, 33, 0.55)),
    url("../images/hero-rio.webp") center / cover;
  color: var(--white);
}

.home-empty-hero h2 {
  max-width: 760px;
  margin: 10px 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.home-empty-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}

.lead-card--empty {
  display: flex;
  align-items: flex-end;
  min-height: 250px;
  padding: 26px;
  background: linear-gradient(145deg, var(--navy), #0a4369);
  color: var(--white);
}

.lead-card--empty h3 {
  margin-bottom: 0;
}

.portal-ad {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #e4eaed;
}

.portal-ad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portal-ad__label {
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 8px;
  padding: 3px 5px;
  border-radius: 3px;
  background: rgba(4, 21, 33, 0.75);
  color: var(--white);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-ad--billboard {
  height: 112px;
  box-shadow: 0 16px 40px rgba(6, 27, 44, 0.12);
}

.portal-ad--square {
  aspect-ratio: 300 / 250;
}

.portal-ad--article {
  min-height: 120px;
  margin-block: 42px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.pagination__pages {
  display: flex;
  align-items: center;
  gap: 5px;
}

.pagination__pages a,
.pagination__pages > span:not([aria-hidden]) {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid #d5dde1;
  border-radius: 7px;
  background: var(--white);
  font-size: 11px;
  font-weight: 850;
}

.pagination__pages a:hover,
.pagination__pages .is-current {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.pagination__arrow {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pagination__arrow.is-disabled {
  color: #a3adb3;
}

.search-hero {
  padding-block: 52px 58px;
}

.search-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: 70px;
}

.search-hero h1 {
  font-size: clamp(35px, 4.6vw, 58px);
}

.search-page-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-page-form > div {
  display: flex;
  padding: 5px;
  border: 1px solid #cfdae0;
  border-radius: 11px;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(6, 27, 44, 0.08);
}

.search-page-form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding-inline: 14px;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.search-page-form button {
  min-width: 94px;
  border: 0;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Article */

.article-header {
  max-width: 1050px;
  padding-top: 60px;
  padding-bottom: 36px;
}

.article-category {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-header h1 {
  max-width: 990px;
  margin: 16px 0 15px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.article-subtitle {
  max-width: 850px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.author-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
}

.article-byline b,
.article-byline span {
  display: block;
}

.article-byline b {
  font-size: 11px;
}

.article-byline span {
  margin-top: 2px;
  color: #7b8991;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.article-shell {
  display: grid;
  grid-template-columns: 54px minmax(0, 790px) minmax(260px, 300px);
  align-items: start;
  justify-content: center;
  gap: 36px;
  padding-bottom: 92px;
}

.share-rail {
  position: sticky;
  top: 82px;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding-top: 14px;
}

.share-rail > span {
  margin-bottom: 7px;
  color: #7b8992;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.share-rail button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #d4dde1;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  transition: 160ms ease;
}

.share-rail button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.article-cover {
  margin: 0 0 38px;
}

.article-cover img {
  width: 100%;
  max-height: 600px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 44px rgba(6, 27, 44, 0.11);
}

.article-cover figcaption,
.photo-grid figcaption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 4px 0;
  color: #74828b;
  font-size: 10px;
  line-height: 1.5;
}

.article-cover figcaption small,
.photo-grid figcaption small {
  flex: 0 0 auto;
  color: #536570;
  font-size: inherit;
  font-weight: 800;
}

.article-content {
  color: #243844;
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 1.82;
}

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

.article-content p,
.article-content ul,
.article-content ol,
.article-content blockquote {
  margin-block: 0 1.45em;
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin: 1.6em 0 0.55em;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.article-content h2 {
  font-size: clamp(29px, 3.5vw, 40px);
}

.article-content h3 {
  font-size: clamp(24px, 2.8vw, 32px);
}

.article-content a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(5, 103, 177, 0.3);
  text-underline-offset: 3px;
}

.article-content img,
.article-content video,
.article-content iframe {
  max-width: 100%;
  border-radius: 12px;
}

.article-content iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.article-content blockquote {
  padding: 8px 0 8px 27px;
  border-left: 4px solid var(--yellow);
  color: var(--navy);
  font-size: 1.22em;
  font-style: italic;
  line-height: 1.5;
}

.article-content table {
  width: 100%;
  margin-bottom: 1.5em;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
}

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

.article-content th {
  background: var(--navy);
  color: var(--white);
}

.article-ad-placeholder {
  display: grid;
  min-height: 145px;
  margin-block: 42px;
  padding: 27px 30px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 90% 50%, rgba(5, 103, 177, 0.58), transparent 30%),
    linear-gradient(120deg, var(--navy), #0b3a58);
  color: var(--white);
}

.article-ad-placeholder span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-ad-placeholder b {
  align-self: end;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
}

.article-ad-placeholder em {
  color: var(--yellow);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-tags > span {
  margin-right: 6px;
  color: var(--navy);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-tags a {
  padding: 7px 10px;
  border: 1px solid #d4dde1;
  border-radius: 999px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 750;
}

.article-end-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 30px;
  padding: 22px;
  border-radius: 12px;
  background: #edf4f5;
}

.article-end-share span,
.article-end-share b {
  display: block;
}

.article-end-share span {
  color: var(--muted);
  font-size: 10px;
}

.article-end-share b {
  margin-top: 2px;
  font-family: var(--serif);
  font-size: 18px;
}

.article-aside {
  position: sticky;
  top: 82px;
}

.article-aside .sidebar {
  gap: 18px;
}

.article-aside .whatsapp-card {
  padding: 28px 23px;
}

.article-aside .whatsapp-card h2 {
  font-size: 24px;
}

.related-section {
  padding-bottom: 90px;
}

.related-post-grid,
.related-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.related-post img,
.related-gallery img {
  width: 100%;
  height: 210px;
  margin-bottom: 15px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.related-post:hover img,
.related-gallery:hover img {
  transform: translateY(-3px);
}

.related-post > a > span,
.related-gallery > a > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-post h3,
.related-gallery h3 {
  margin: 6px 0 8px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.related-post small {
  color: #7c8991;
  font-size: 9px;
  text-transform: uppercase;
}

.gallery-grid--count-1,
.gallery-grid--count-2,
.gallery-grid--count-3,
.gallery-grid--count-4 {
  grid-template-rows: 430px;
}

.gallery-grid--count-1 {
  grid-template-columns: 1fr;
}

.gallery-grid--count-2 {
  grid-template-columns: 1.45fr 1fr;
}

.gallery-grid--count-3 {
  grid-template-columns: 1.35fr repeat(2, 1fr);
}

.gallery-grid--count-4 {
  grid-template-columns: 1.3fr repeat(3, 1fr);
}

.gallery-grid--count-1 .gallery-card--featured,
.gallery-grid--count-2 .gallery-card--featured,
.gallery-grid--count-3 .gallery-card--featured,
.gallery-grid--count-4 .gallery-card--featured {
  grid-row: auto;
}

/* Gallery archive and detail */

.gallery-archive {
  padding-block: 72px 95px;
}

.archive-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 29px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--navy);
}

.archive-toolbar h2 {
  margin: 2px 0 0;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.archive-toolbar > span {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-archive-card {
  overflow: hidden;
  border: 1px solid #dce3e6;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 0 10px 32px rgba(6, 27, 44, 0.05);
}

.gallery-archive-card__image {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
  background: #dce3e6;
}

.gallery-archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.gallery-archive-card__body {
  padding: 22px 22px 25px;
}

.gallery-archive-card__body time {
  color: var(--blue);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-archive-card__body h2 {
  margin: 7px 0 9px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.gallery-archive-card__body p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.gallery-detail {
  background: #03131e;
  color: var(--white);
}

.gallery-detail__header {
  position: relative;
  overflow: hidden;
  padding-block: 55px 58px;
  background:
    radial-gradient(circle at 80% 20%, rgba(5, 103, 177, 0.5), transparent 26%),
    linear-gradient(125deg, #03131e, #0a2b40);
}

.gallery-detail__header::after {
  position: absolute;
  top: -190px;
  right: 5%;
  width: 360px;
  height: 590px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  transform: rotate(25deg);
}

.gallery-detail__header .container {
  position: relative;
  z-index: 1;
}

.gallery-detail__header h1 {
  max-width: 950px;
}

.gallery-detail__header > .container > p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.gallery-detail__meta {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-detail__meta b {
  color: var(--yellow);
}

.gallery-detail__body {
  padding-block: 44px 92px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: 18px;
}

.photo-grid__item {
  grid-column: span 4;
  margin: 0;
}

.photo-grid__item--featured {
  grid-column: span 8;
  grid-row: span 2;
}

.photo-grid__item button {
  position: relative;
  display: block;
  width: 100%;
  height: 280px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #102d3e;
  color: var(--white);
}

.photo-grid__item--featured button {
  height: 590px;
}

.photo-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.photo-grid__item button:hover img {
  transform: scale(1.025);
}

.photo-grid__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(4, 21, 33, 0.76);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}

.photo-grid figcaption {
  color: rgba(255, 255, 255, 0.58);
}

.photo-grid figcaption small {
  color: rgba(255, 255, 255, 0.72);
}

.gallery-detail + .related-section {
  padding-top: 85px;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(1, 8, 13, 0.97);
  color: var(--white);
}

.lightbox::backdrop {
  background: rgba(1, 8, 13, 0.97);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  align-items: center;
}

.lightbox__chrome {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.lightbox__counter {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox__close,
.lightbox__nav {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.lightbox__close {
  width: 44px;
  height: 44px;
  font-size: 27px;
}

.lightbox__nav {
  position: relative;
  z-index: 3;
  width: 50px;
  height: 50px;
  justify-self: center;
  font-size: 35px;
}

.lightbox figure {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  height: 100vh;
  margin: 0;
  padding: 70px 0 28px;
}

.lightbox figure img {
  max-width: 100%;
  max-height: calc(100vh - 145px);
  object-fit: contain;
}

.lightbox figcaption {
  max-width: 850px;
  min-height: 34px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  text-align: center;
}

body.lightbox-open {
  overflow: hidden;
}

/* Institutional, contact and advertising pages */

.prose-page {
  max-width: 900px;
  padding-block: 65px 100px;
}

.prose-page__content {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid #dde4e7;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 15px 44px rgba(6, 27, 44, 0.06);
}

.page-updated {
  margin-top: 18px;
  color: #7b8991;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: right;
  text-transform: uppercase;
}

.contact-hero,
.advertise-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(5, 103, 177, 0.65), transparent 26%),
    linear-gradient(125deg, #041521 0%, #0a3048 100%);
  color: var(--white);
}

.page-hero__split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) 0.45fr;
  align-items: center;
  gap: 60px;
  padding-block: 58px 68px;
}

.contact-hero p,
.advertise-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
}

.contact-hero__mark {
  display: grid;
  width: 210px;
  height: 210px;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 700;
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.025);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: 75px;
  padding-block: 82px 105px;
}

.contact-info h2,
.form-card__header h2,
.proposal-copy h2 {
  margin: 5px 0 12px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-info > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-info__list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-info__list > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #e7f2f7;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.contact-info__list p,
.contact-info__list small,
.contact-info__list a,
.contact-info__list p > span {
  display: block;
  margin: 0;
}

.contact-info__list small {
  margin-bottom: 2px;
  color: #7a8790;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-info__list a,
.contact-info__list p > span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.contact-note {
  margin-top: 36px;
  padding: 21px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  background: var(--navy);
  color: var(--white);
}

.contact-note b {
  font-family: var(--serif);
  font-size: 20px;
}

.contact-note p {
  margin: 3px 0 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.contact-note a {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-card {
  padding: clamp(28px, 4vw, 45px);
  border: 1px solid #dce4e7;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(6, 27, 44, 0.08);
}

.form-card__header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.form-card__header > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-card__header h2 {
  margin-bottom: 0;
  font-size: 34px;
}

.portal-form {
  display: grid;
  gap: 18px;
}

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

.portal-form label:not(.checkbox-field) {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.portal-form label small {
  color: #8a969d;
  font-size: 8px;
  font-weight: 700;
}

.portal-form input:not([type="checkbox"]),
.portal-form select,
.portal-form textarea {
  width: 100%;
  border: 1px solid #ccd7dc;
  border-radius: 8px;
  background: #fbfcfc;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  outline: 0;
  transition: 160ms ease;
}

.portal-form input:not([type="checkbox"]),
.portal-form select {
  height: 48px;
  padding-inline: 13px;
}

.portal-form textarea {
  min-height: 125px;
  padding: 13px;
  line-height: 1.5;
  resize: vertical;
}

.portal-form input:focus,
.portal-form select:focus,
.portal-form textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(5, 103, 177, 0.1);
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.checkbox-field input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--blue);
}

.checkbox-field a {
  color: var(--blue);
  text-decoration: underline;
}

.portal-form > .button {
  width: fit-content;
}

.form-errors {
  margin-bottom: 22px;
  padding: 15px 17px;
  border: 1px solid #efcaca;
  border-left: 4px solid #d84343;
  border-radius: 8px;
  background: #fff7f7;
  color: #812b2b;
  font-size: 11px;
}

.form-errors ul {
  margin: 6px 0 0;
  padding-left: 17px;
}

.advertise-hero {
  padding-block: 64px 76px;
}

.advertise-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: 65px;
}

.advertise-hero h1 {
  font-size: clamp(44px, 5.8vw, 70px);
}

.advertise-hero .button {
  margin-top: 27px;
}

.advertise-hero__visual {
  position: relative;
  min-height: 360px;
}

.ad-mock {
  position: absolute;
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 181, 27, 0.3), transparent 26%),
    linear-gradient(140deg, rgba(5, 103, 177, 0.95), rgba(6, 27, 44, 0.95));
  color: var(--white);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

.ad-mock small {
  position: absolute;
  top: 8px;
  left: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ad-mock b {
  color: var(--yellow);
  font-family: var(--serif);
  font-size: 23px;
}

.ad-mock--wide {
  top: 12px;
  right: 0;
  width: 88%;
  height: 104px;
  transform: rotate(2deg);
}

.ad-mock--square {
  right: 10%;
  bottom: 0;
  width: 235px;
  height: 205px;
  transform: rotate(4deg);
}

.ad-mock--mobile {
  bottom: 30px;
  left: 0;
  width: 210px;
  height: 85px;
  transform: rotate(-4deg);
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -1px;
  padding-block: 29px;
  border-bottom: 1px solid var(--line);
}

.audience-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 15px;
  padding-inline: 28px;
  border-right: 1px solid var(--line);
}

.audience-strip > div:first-child {
  padding-left: 0;
}

.audience-strip > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.audience-strip b {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 22px;
}

.audience-strip span {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.ad-formats-section {
  padding-block: 88px 98px;
}

.ad-formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ad-format-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 25px;
  border: 1px solid #d9e2e6;
  border-radius: 14px;
  background: var(--white);
  transition: 200ms ease;
}

.ad-format-card:hover {
  border-color: rgba(5, 103, 177, 0.45);
  box-shadow: 0 16px 40px rgba(6, 27, 44, 0.08);
  transform: translateY(-4px);
}

.ad-format-card > span {
  position: absolute;
  top: 13px;
  right: 16px;
  color: #e4e9eb;
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
}

.ad-format-card > small {
  position: relative;
  color: var(--blue);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ad-format-card h3 {
  position: relative;
  margin: 45px 0 7px;
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ad-format-card > b {
  color: var(--yellow);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.ad-format-card p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.proposal-section {
  padding-block: 85px;
  background: #041521;
  color: var(--white);
}

.proposal-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: 80px;
}

.proposal-copy {
  position: sticky;
  top: 95px;
}

.proposal-copy p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
}

.proposal-copy > a {
  display: inline-block;
  margin-top: 14px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 850;
}

.form-card--dark {
  border-color: rgba(255, 255, 255, 0.12);
  background: #0a2a3d;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.24);
}

.form-card--dark .portal-form label:not(.checkbox-field) {
  color: var(--white);
}

.form-card--dark .checkbox-field {
  color: rgba(255, 255, 255, 0.62);
}

/* 404 */

.not-found-page {
  position: relative;
  overflow: hidden;
  padding-block: 80px 95px;
  background:
    radial-gradient(circle at 50% 20%, rgba(5, 103, 177, 0.08), transparent 28%),
    var(--paper);
}

.not-found-page__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.not-found-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(95px, 15vw, 170px);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.not-found-code i {
  display: grid;
  width: clamp(75px, 10vw, 120px);
  height: clamp(75px, 10vw, 120px);
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  font-size: clamp(20px, 3vw, 34px);
  font-style: normal;
  letter-spacing: 0;
}

.not-found-page h1 {
  margin: 8px 0 11px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 53px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.not-found-page__inner > p {
  max-width: 640px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.search-page-form--center {
  width: min(600px, 100%);
  margin-bottom: 22px;
  text-align: left;
}

.not-found-suggestions {
  padding-top: 85px;
}

.back-to-top {
  position: fixed;
  z-index: 70;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(6, 27, 44, 0.2);
  font-size: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.copy-feedback {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 75px;
  padding: 11px 15px;
  border-radius: 7px;
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
  font-size: 10px;
  font-weight: 850;
}

@media (max-width: 1120px) {
  .article-shell {
    grid-template-columns: 48px minmax(0, 1fr);
    max-width: 920px;
  }

  .article-aside {
    position: static;
    grid-column: 2;
  }

  .article-aside .sidebar {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-aside .most-read-card {
    grid-row: span 2;
  }

  .ad-formats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .page-hero,
  .page-hero--compact {
    padding-block: 45px 52px;
  }

  .page-hero h1,
  .contact-hero h1,
  .advertise-hero h1,
  .gallery-detail__header h1,
  .article-header h1 {
    font-size: clamp(38px, 8vw, 57px);
  }

  .search-hero__inner,
  .page-hero__split,
  .contact-section,
  .advertise-hero__grid,
  .proposal-grid {
    grid-template-columns: 1fr;
  }

  .search-hero__inner {
    gap: 28px;
  }

  .contact-hero__mark {
    display: none;
  }

  .contact-section,
  .proposal-grid {
    gap: 45px;
  }

  .gallery-archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid__item,
  .photo-grid__item--featured {
    grid-column: span 6;
  }

  .photo-grid__item--featured button,
  .photo-grid__item button {
    height: 390px;
  }

  .related-post-grid,
  .related-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-post:last-child,
  .related-gallery:last-child {
    display: none;
  }

  .advertise-hero__grid {
    gap: 38px;
  }

  .advertise-hero__visual {
    width: min(590px, 100%);
  }

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

  .audience-strip > div,
  .audience-strip > div:first-child,
  .audience-strip > div:last-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audience-strip > div:last-child {
    border-bottom: 0;
  }

  .proposal-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .page-hero,
  .page-hero--compact,
  .gallery-detail__header {
    padding-block: 34px 42px;
  }

  .breadcrumbs {
    margin-bottom: 22px;
  }

  .listing-section,
  .gallery-archive,
  .prose-page,
  .contact-section,
  .ad-formats-section {
    padding-block: 52px 70px;
  }

  .news-list-card {
    grid-template-columns: 125px minmax(0, 1fr);
    gap: 15px;
  }

  .news-list-card .latest-card__image img {
    height: 125px;
  }

  .news-list-card h2 {
    font-size: 19px;
  }

  .news-list-card p,
  .news-list-card .read-more {
    display: none;
  }

  .pagination {
    gap: 8px;
  }

  .pagination__pages a,
  .pagination__pages > span:not([aria-hidden]) {
    width: 32px;
    height: 32px;
  }

  .pagination__arrow {
    font-size: 0;
  }

  .pagination__arrow span {
    font-size: 19px;
  }

  .gallery-archive-grid,
  .related-post-grid,
  .related-gallery-grid,
  .ad-formats-grid {
    grid-template-columns: 1fr;
  }

  .related-post:last-child,
  .related-gallery:last-child {
    display: block;
  }

  .gallery-archive-card__image {
    height: 230px;
  }

  .article-header {
    padding-top: 38px;
    padding-bottom: 27px;
  }

  .article-shell {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-bottom: 65px;
  }

  .share-rail {
    position: static;
    display: flex;
    align-items: center;
    order: 2;
    width: 100%;
    padding-top: 0;
  }

  .share-rail > span {
    margin: 0 8px 0 0;
    writing-mode: initial;
    transform: none;
  }

  .article-column {
    order: 1;
    width: 100%;
  }

  .article-aside {
    order: 3;
    width: 100%;
  }

  .article-aside .sidebar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .article-content {
    font-size: 18px;
    line-height: 1.72;
  }

  .article-content iframe {
    min-height: 240px;
  }

  .article-cover {
    margin-bottom: 28px;
  }

  .article-cover img {
    min-height: 240px;
    border-radius: 11px;
  }

  .article-cover figcaption,
  .photo-grid figcaption {
    display: block;
  }

  .article-cover figcaption small,
  .photo-grid figcaption small {
    display: block;
    margin-top: 3px;
  }

  .article-end-share {
    align-items: flex-start;
    flex-direction: column;
  }

  .photo-grid {
    display: block;
  }

  .photo-grid__item,
  .photo-grid__item--featured {
    margin-bottom: 25px;
  }

  .photo-grid__item button,
  .photo-grid__item--featured button {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .lightbox[open] {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .contact-section {
    gap: 38px;
  }

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

  .form-card {
    padding: 25px 20px;
    border-radius: 13px;
  }

  .advertise-hero {
    padding-block: 42px 55px;
  }

  .advertise-hero__visual {
    min-height: 300px;
  }

  .ad-mock--square {
    right: 3%;
    width: 190px;
    height: 175px;
  }

  .ad-mock--mobile {
    width: 175px;
  }

  .proposal-section {
    padding-block: 58px;
  }

  .not-found-code {
    gap: 5px;
  }

  .back-to-top {
    right: 13px;
    bottom: 13px;
  }
}

@media (max-width: 420px) {
  .news-list-card {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .news-list-card .latest-card__image img {
    height: 112px;
  }

  .news-list-card h2 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 17px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .latest-card__meta time {
    display: none;
  }

  .archive-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .lightbox[open] {
    display: block;
  }

  .lightbox figure {
    padding-inline: 8px;
  }

  .lightbox__nav {
    position: absolute;
    z-index: 5;
    top: 50%;
  }

  .lightbox__nav--prev {
    left: 8px;
  }

  .lightbox__nav--next {
    right: 8px;
  }

  .article-end-share .button {
    width: 100%;
  }

  .portal-form > .button {
    width: 100%;
  }
}



@media (min-width: 681px) and (max-width: 900px) {
  .gallery-grid.gallery-grid--count-1,
  .gallery-grid.gallery-grid--count-2,
  .gallery-grid.gallery-grid--count-3,
  .gallery-grid.gallery-grid--count-4 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 360px auto;
  }

  .gallery-grid.gallery-grid--count-1 .gallery-card--featured,
  .gallery-grid.gallery-grid--count-2 .gallery-card--featured,
  .gallery-grid.gallery-grid--count-3 .gallery-card--featured,
  .gallery-grid.gallery-grid--count-4 .gallery-card--featured {
    grid-column: 1 / -1;
    min-height: 360px;
  }

  .gallery-grid.gallery-grid--count-1 .gallery-card:not(.gallery-card--featured),
  .gallery-grid.gallery-grid--count-2 .gallery-card:not(.gallery-card--featured),
  .gallery-grid.gallery-grid--count-3 .gallery-card:not(.gallery-card--featured),
  .gallery-grid.gallery-grid--count-4 .gallery-card:not(.gallery-card--featured) {
    min-height: 230px;
  }
}

@media (max-width: 680px) {
  .gallery-grid.gallery-grid--count-1,
  .gallery-grid.gallery-grid--count-2,
  .gallery-grid.gallery-grid--count-3,
  .gallery-grid.gallery-grid--count-4 {
    grid-template-columns: 1fr;
    grid-template-rows: 380px;
    grid-auto-rows: 230px;
  }

  .gallery-grid.gallery-grid--count-1 .gallery-card--featured,
  .gallery-grid.gallery-grid--count-2 .gallery-card--featured,
  .gallery-grid.gallery-grid--count-3 .gallery-card--featured,
  .gallery-grid.gallery-grid--count-4 .gallery-card--featured {
    grid-column: auto;
  }
}


.top-ad--image {
  padding: 0;
  overflow: hidden;
  background: #f1f5f7;
}

.top-ad--image::before,
.top-ad--image::after {
  display: none;
}

.top-ad--image small {
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, .58);
  color: #fff;
}

.top-ad--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.cookie-consent {
  position: fixed;
  z-index: 1200;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  width: min(760px, calc(100% - 2rem));
  padding: 1.15rem 1.25rem;
  color: #f5f9fc;
  background: rgba(5, 25, 40, .98);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent strong { display: block; margin-bottom: .25rem; font-size: 1rem; }
.cookie-consent p { margin: 0; color: #c6d3dc; font-size: .88rem; line-height: 1.55; }
.cookie-consent a { color: #fff; text-decoration: underline; }
.cookie-consent__actions { display: flex; gap: .65rem; white-space: nowrap; }
.cookie-consent .button--ghost { color: #fff; border-color: rgba(255,255,255,.25); }
@media (max-width: 680px) {
  .cookie-consent { grid-template-columns: 1fr; }
  .cookie-consent__actions { display: grid; grid-template-columns: 1fr 1fr; }
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
