:root {
  --blue-950: #082146;
  --blue-850: #0a3470;
  --blue-700: #0959b9;
  --green-700: #16813b;
  --yellow-500: #f5c529;
  --ink: #172033;
  --muted: #667085;
  --line: #e5e9f0;
  --surface: #ffffff;
  --soft: #f3f7fb;
  --shadow: 0 18px 45px rgba(8, 33, 70, .12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f8fafc;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.top-strip {
  color: #fff;
  background: var(--blue-950);
  font-size: 13px;
}

.top-strip__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-strip strong {
  padding: 4px 9px;
  color: var(--blue-950);
  background: var(--yellow-500);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.top-strip time {
  margin-left: auto;
  color: rgba(255, 255, 255, .78);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(12px);
}

.header-grid {
  min-height: 112px;
  display: grid;
  grid-template-columns: 210px 1fr 190px;
  gap: 28px;
  align-items: center;
}

.brand img {
  width: 180px;
}

.search-box label,
.newsletter label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--blue-700);
  font-weight: 800;
}

.article-page {
  padding: 34px 0 48px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 260px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 1fr);
  gap: 38px;
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-header h1 {
  margin: 14px 0 16px;
  color: var(--blue-950);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

.article-subtitle {
  margin: 0;
  color: #475467;
  font-size: 21px;
  line-height: 1.42;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.article-meta strong,
.article-meta span {
  display: block;
}

.article-meta strong {
  color: var(--blue-950);
}

.article-cover {
  margin: 28px 0 16px;
}

.article-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-cover__button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.article-cover__button img {
  transition: transform .2s ease, filter .2s ease;
}

.article-cover__button:hover img {
  filter: brightness(.92);
  transform: scale(1.01);
}

.article-cover figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.article-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 22px 0;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-share span {
  color: var(--blue-950);
  font-weight: 900;
}

.article-share a,
.article-tags a {
  padding: 8px 11px;
  border-radius: 6px;
  color: var(--blue-700);
  background: rgba(9, 89, 185, .08);
  font-size: 14px;
  font-weight: 800;
}

.article-share__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-700);
  transition: transform .15s ease, filter .15s ease;
}

.article-share__link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.article-share__link:hover {
  transform: translateY(-1px);
  filter: brightness(.94);
}

.article-share__link--whatsapp {
  background: #25d366;
}

.article-share__link--facebook {
  background: #1877f2;
}

.article-share__link--x {
  background: #111;
}

.article-body {
  color: #26344d;
  font-size: 20px;
  line-height: 1.72;
}

.article-body p {
  margin: 0 0 24px;
}

.article-body h2 {
  margin: 34px 0 14px;
  color: var(--blue-950);
  font-size: 30px;
  line-height: 1.15;
}

.article-body blockquote {
  margin: 28px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--yellow-500);
  color: var(--blue-950);
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.article-gallery {
  margin-top: 38px;
}

.article-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.article-gallery__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.article-gallery__item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.article-gallery__item img {
  transition: transform .2s ease, filter .2s ease;
}

.article-gallery__item:hover img {
  filter: brightness(.92);
  transform: scale(1.03);
}

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

.article-tags span {
  color: var(--blue-950);
  font-weight: 900;
}

.article-sidebar {
  position: sticky;
  top: 190px;
  display: grid;
  gap: 16px;
}

.sidebar-box {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.sidebar-box h2 {
  margin: 5px 0 16px;
  color: var(--blue-950);
  font-size: 22px;
  line-height: 1.1;
}

.sidebar-box > a {
  display: block;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--blue-950);
  font-weight: 900;
  line-height: 1.28;
}

.sidebar-video .video-frame {
  margin-top: 10px;
}

.latest-list--compact {
  margin-top: 8px;
}

.latest-list--compact li {
  grid-template-columns: 48px 1fr;
  padding: 13px 0;
}

.category-hero {
  padding: 32px 0 36px;
  background: linear-gradient(135deg, #ffffff 0%, #eef5fb 100%);
  border-bottom: 1px solid var(--line);
}

.category-hero__content {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 24px;
  align-items: end;
}

.category-hero h1 {
  margin: 8px 0 10px;
  color: var(--blue-950);
  font-size: clamp(40px, 6vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

.category-hero p {
  max-width: 760px;
  margin: 0;
  color: #475467;
  font-size: 20px;
  line-height: 1.45;
}

.category-hero__stats {
  padding: 18px;
  border: 1px solid rgba(9, 89, 185, .15);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.category-hero__stats strong {
  display: block;
  color: var(--blue-700);
  font-size: 42px;
  line-height: 1;
}

.category-hero__stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.category-page {
  display: grid;
  grid-template-columns: minmax(0, 790px) minmax(300px, 1fr);
  gap: 34px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 48px;
}

.category-content {
  min-width: 0;
}

.category-feature,
.category-news-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
  overflow: hidden;
}

.category-feature > a {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) 1fr;
  min-height: 340px;
}

.category-feature img,
.category-news-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-feature div {
  padding: 28px;
  align-self: end;
}

.category-feature h2 {
  margin: 14px 0 12px;
  color: var(--blue-950);
  font-size: 32px;
  line-height: 1.08;
}

.category-feature p,
.category-news-item p {
  margin: 0;
  color: var(--muted);
}

.category-feature time,
.category-news-item time {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
}

.category-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin: 26px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.category-toolbar strong {
  color: var(--blue-950);
  font-size: 22px;
}

.category-toolbar div {
  display: flex;
  gap: 8px;
}

.category-toolbar a,
.pagination a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--blue-950);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.category-toolbar a.is-active,
.pagination a.is-current {
  color: #fff;
  border-color: var(--blue-700);
  background: var(--blue-700);
}

.category-news-list {
  display: grid;
  gap: 14px;
}

.category-news-item > a {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 168px;
}

.category-news-item div {
  padding: 20px;
}

.category-news-item h2 {
  margin: 10px 0 8px;
  color: var(--blue-950);
  font-size: 24px;
  line-height: 1.16;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.rank-list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: rank;
}

.rank-list li {
  counter-increment: rank;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.rank-list li::before {
  content: counter(rank);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--blue-950);
  background: var(--yellow-500);
  font-size: 13px;
  font-weight: 900;
}

.rank-list a {
  color: var(--blue-950);
  font-weight: 900;
  line-height: 1.25;
}

.empty-state {
  color: var(--muted);
  font-weight: 800;
}

.empty-state--box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.banner-area {
  padding-top: 18px;
  padding-bottom: 18px;
}

.banner-area__inner {
  display: grid;
  gap: 12px;
}

.banner-area--position-1 {
  padding-top: 12px;
  padding-bottom: 12px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.banner-area__item {
  display: grid;
  place-items: center;
  min-height: 90px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-950);
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
  font-weight: 900;
  text-align: center;
}

.banner-area__item img {
  width: 100%;
  height: auto;
}

.sidebar-banner {
  padding: 0;
  overflow: hidden;
}

.sidebar-banner__item {
  display: grid;
  gap: 8px;
  min-height: 220px;
  color: var(--blue-950);
  font-weight: 900;
  text-align: center;
}

.sidebar-banner__item img {
  width: 100%;
  height: auto;
  display: block;
}

.sidebar-banner__item strong,
.sidebar-banner__item span {
  padding: 0 16px 16px;
}

.page-lateral-banner {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 34px;
}

.page-lateral-banner .sidebar-banner {
  width: min(100%, 360px);
}

.galleries-page {
  padding-top: 36px;
  padding-bottom: 50px;
}

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

.gallery-card {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.gallery-card--featured {
  grid-column: span 2;
}

.gallery-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.gallery-card--featured img {
  height: 310px;
}

.gallery-card div {
  padding: 20px;
}

.gallery-card h2 {
  margin: 12px 0 8px;
  color: var(--blue-950);
  font-size: 25px;
  line-height: 1.12;
}

.gallery-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.gallery-card strong {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-detail-hero {
  padding: 34px 0 28px;
  background: linear-gradient(135deg, #ffffff 0%, #eef5fb 100%);
  border-bottom: 1px solid var(--line);
}

.gallery-detail-hero h1 {
  max-width: 880px;
  margin: 8px 0 12px;
  color: var(--blue-950);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
}

.gallery-detail-hero p {
  max-width: 780px;
  margin: 0;
  color: #475467;
  font-size: 20px;
  line-height: 1.45;
}

.gallery-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
  padding-top: 34px;
  padding-bottom: 18px;
}

.photo-tile {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--blue-950);
  cursor: zoom-in;
}

.photo-tile--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 514px;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .2s ease;
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 33, 70, .02), rgba(8, 33, 70, .78));
}

.photo-tile:hover img {
  transform: scale(1.04);
}

.photo-tile span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  text-align: left;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.12;
}

.gallery-back {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 48px;
}

body.has-lightbox {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px 76px;
  background: rgba(3, 13, 28, .92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__figure {
  width: min(100%, 1100px);
  margin: 0;
  color: #fff;
}

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

.lightbox__figure figcaption {
  min-height: 28px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  text-align: center;
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  cursor: pointer;
}

.lightbox__close {
  top: 18px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 32px;
  line-height: 1;
}

.lightbox__nav {
  top: 50%;
  width: 52px;
  height: 72px;
  border-radius: 8px;
  transform: translateY(-50%);
  font-size: 58px;
  line-height: .8;
}

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

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

.lightbox__counter {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  font-size: 13px;
  font-weight: 900;
}

.search-box div,
.newsletter form {
  display: flex;
  gap: 8px;
}

.search-box input,
.newsletter input {
  width: 100%;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
}

.search-box button,
.newsletter button,
.read-more {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--blue-700);
  font-weight: 700;
  cursor: pointer;
}

.send-news {
  padding: 13px 15px;
  border: 1px solid rgba(22, 129, 59, .28);
  border-radius: 8px;
  background: rgba(22, 129, 59, .06);
}

.send-news span,
.section-kicker,
.tag {
  display: inline-block;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.send-news strong {
  display: block;
  margin-top: 2px;
  color: var(--blue-950);
  font-size: 14px;
}

.main-nav {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav-scroll {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  overflow: visible;
}

.nav-scroll a {
  flex: 0 0 auto;
  padding: 14px 16px;
  color: var(--blue-950);
  font-size: 14px;
  font-weight: 800;
  border-bottom: 3px solid transparent;
}

.nav-scroll a:hover {
  border-color: var(--yellow-500);
}

.nav-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.nav-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 7px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  vertical-align: middle;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  display: none;
  min-width: 190px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: block;
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover {
  color: var(--blue-700);
  background: var(--soft);
}

.hero-section {
  padding: 28px 0 32px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(300px, .9fr);
  gap: 24px;
}

.headline-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--blue-950);
}

.headline-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.headline-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 33, 70, .88), rgba(8, 33, 70, .38) 58%, rgba(8, 33, 70, .08));
}

.headline-card__content {
  position: absolute;
  z-index: 1;
  left: 34px;
  bottom: 34px;
  width: min(680px, calc(100% - 68px));
  color: #fff;
}

.headline-card h1 {
  margin: 12px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.headline-card p {
  max-width: 650px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
}

.tag {
  padding: 5px 9px;
  border-radius: 4px;
  background: rgba(22, 129, 59, .12);
}

.tag--primary {
  color: var(--blue-950);
  background: var(--yellow-500);
}

.read-more {
  display: inline-flex;
  align-items: center;
}

.latest-panel,
.news-card,
.category-card,
.video-feature,
.video-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.latest-panel {
  padding: 24px;
  box-shadow: 0 12px 30px rgba(8, 33, 70, .08);
}

.latest-panel h2,
.section-heading h2,
.newsletter h2 {
  margin: 4px 0 0;
  color: var(--blue-950);
  line-height: 1.1;
}

.latest-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.latest-list li {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.latest-list time {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.latest-list a {
  min-width: 0;
  font-weight: 800;
  line-height: 1.32;
}

.featured-lateral-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
  padding: 30px 0;
  align-items: start;
}

.featured-lateral-layout > .featured-grid {
  width: 100%;
  margin: 0;
  padding: 0;
  grid-template-columns: 1.4fr 1fr;
}

.featured-lateral-layout--no-banner {
  grid-template-columns: 1fr;
}

.featured-lateral-layout--no-banner > .featured-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 18px;
}

.home-lateral-banner {
  min-width: 0;
}

.home-lateral-banner .sidebar-banner {
  margin: 0;
}

.home-lateral-banner .sidebar-banner__item {
  min-height: 0;
}

.news-card {
  min-height: 230px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.news-card--wide {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background: var(--blue-950);
}

.news-card--wide img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.news-card--wide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 33, 70, .02), rgba(8, 33, 70, .88));
}

.news-card--wide div {
  position: relative;
  z-index: 1;
  padding: 24px;
  margin-top: auto;
}

.news-card h2 {
  margin: 12px 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.news-card:not(.news-card--wide) h2 {
  color: var(--blue-950);
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.news-card--wide p {
  color: rgba(255, 255, 255, .84);
}

.section-block {
  padding: 34px 0 44px;
}

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

.section-heading h2 {
  font-size: 32px;
}

.section-heading > a {
  color: var(--blue-700);
  font-weight: 800;
}

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

.category-card {
  min-height: 190px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--yellow-500);
}

.category-card span {
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card h3 {
  margin: 16px 0 24px;
  color: var(--blue-950);
  font-size: 21px;
  line-height: 1.2;
}

.category-card a {
  color: var(--blue-700);
  font-weight: 800;
}

.authors-section {
  padding-top: 8px;
}

.authors-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-snap-type: x proximity;
}

.author-card {
  min-height: 245px;
  padding: 20px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
  text-align: center;
  scroll-snap-align: start;
}

.author-card img {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #eef4ff;
}

.author-card strong {
  color: var(--blue-950);
  font-size: 18px;
  line-height: 1.12;
}

.author-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.articles-page {
  padding-top: 36px;
  padding-bottom: 52px;
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card div {
  padding: 18px;
}

.article-card span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h2 {
  margin: 8px 0 10px;
  color: var(--blue-950);
  font-size: 23px;
  line-height: 1.14;
}

.article-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.article-card strong {
  color: var(--blue-700);
  font-weight: 900;
}

.author-profile {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.author-profile img,
.author-sidebar img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #eef4ff;
}

.author-profile h1 {
  margin: 6px 0 12px;
  color: var(--blue-950);
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
}

.author-profile p,
.author-sidebar p {
  color: #475467;
}

.author-sidebar {
  text-align: center;
}

.author-sidebar img {
  margin: 0 auto 16px;
}

.gallery-band {
  padding: 42px 0;
  color: #fff;
  background: var(--blue-950);
}

.section-heading--light h2,
.section-heading--light a {
  color: #fff;
}

.section-heading--light .section-kicker {
  color: var(--yellow-500);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  border-radius: 8px;
  background: #0f2444;
}

.gallery-item--large {
  min-height: 360px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .2s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 33, 70, .05), rgba(8, 33, 70, .82));
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.15;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, .8fr);
  gap: 20px;
}

.video-feature {
  padding: 16px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-feature h3 {
  margin: 16px 4px 4px;
  color: var(--blue-950);
  font-size: 25px;
  line-height: 1.18;
}

.video-list {
  display: grid;
  gap: 12px;
}

.video-list a {
  display: block;
  padding: 20px;
}

.video-list span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-list strong {
  display: block;
  margin-top: 8px;
  color: var(--blue-950);
  font-size: 18px;
  line-height: 1.25;
}

.videos-page {
  padding-top: 36px;
  padding-bottom: 50px;
}

.video-feature--page {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.video-feature--page h2 {
  margin: 10px 0 12px;
  color: var(--blue-950);
  font-size: 32px;
  line-height: 1.12;
}

.video-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-card div {
  padding: 16px;
}

.video-card span {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card h2 {
  margin: 8px 0;
  color: var(--blue-950);
  font-size: 21px;
  line-height: 1.18;
}

.video-card p {
  margin: 0;
  color: var(--muted);
}

.newsletter {
  padding: 34px 0;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr minmax(340px, 520px);
  gap: 22px;
  align-items: center;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, .82);
  background: #061832;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .8fr;
  gap: 40px;
}

.site-footer img {
  width: 150px;
  margin-bottom: 14px;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

@media (max-width: 900px) {
  .header-grid,
  .hero-layout,
  .featured-lateral-layout,
  .featured-grid,
  .category-grid,
  .gallery-grid,
  .video-layout,
  .video-feature--page,
  .video-card-grid,
  .newsletter__inner,
  .footer-grid,
  .article-layout,
  .article-gallery__grid,
  .category-hero__content,
  .category-page,
  .category-feature > a,
  .article-card-grid,
  .author-profile,
  .gallery-list-grid,
  .gallery-detail-grid {
    grid-template-columns: 1fr;
  }

  .header-grid {
    grid-template-columns: auto minmax(0, 1fr);
    min-height: 86px;
    gap: 18px;
    padding: 10px 0;
  }

  .brand img {
    width: 132px;
  }

  .search-box {
    min-width: 0;
  }

  .search-box div {
    flex-direction: row;
    align-items: center;
  }

  .search-box input {
    min-width: 0;
  }

  .search-box button {
    flex: 0 0 auto;
    padding: 0 14px;
  }

  .headline-card,
  .headline-card img {
    min-height: 460px;
  }

  .top-strip time,
  .send-news {
    display: none;
  }

  .article-sidebar {
    position: static;
  }

  .category-feature > a {
    min-height: 0;
  }

  .category-feature img {
    height: 300px;
  }

  .gallery-card--featured,
  .photo-tile--large {
    grid-column: auto;
    grid-row: auto;
  }

  .photo-tile,
  .photo-tile--large {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .top-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    padding: 9px 0;
  }

  .newsletter form {
    flex-direction: column;
  }

  .header-grid {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 72px;
    gap: 10px;
    padding: 8px 0;
  }

  .brand img {
    width: 104px;
  }

  .search-box div {
    gap: 6px;
  }

  .search-box input {
    min-height: 38px;
    padding: 0 9px;
    font-size: 13px;
  }

  .search-box button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
  }

  .headline-card,
  .headline-card img {
    min-height: 430px;
  }

  .headline-card__content {
    left: 20px;
    bottom: 22px;
    width: calc(100% - 40px);
  }

  .headline-card h1 {
    font-size: 32px;
  }

  .headline-card p {
    font-size: 16px;
  }

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

  .news-card h2,
  .video-feature h3 {
    font-size: 22px;
  }

  .article-page {
    padding-top: 24px;
  }

  .article-header h1 {
    font-size: 34px;
  }

  .article-subtitle,
  .article-body {
    font-size: 18px;
  }

  .article-body blockquote {
    font-size: 21px;
  }

  .category-hero h1 {
    font-size: 38px;
  }

  .category-hero p {
    font-size: 17px;
  }

  .category-news-item > a {
    grid-template-columns: 1fr;
  }

  .category-news-item img {
    height: 210px;
  }

  .category-feature h2,
  .category-news-item h2 {
    font-size: 23px;
  }

  .category-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-card img,
  .gallery-card--featured img {
    height: 230px;
  }

  .gallery-detail-hero h1 {
    font-size: 36px;
  }

  .gallery-detail-hero p {
    font-size: 17px;
  }

  .lightbox {
    padding: 72px 12px 62px;
  }

  .lightbox__nav {
    top: auto;
    bottom: 12px;
    width: 48px;
    height: 46px;
    transform: none;
    font-size: 42px;
  }

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

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

  .lightbox__counter {
    bottom: 21px;
  }
}

@media (max-width: 380px) {
  .header-grid {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 8px;
  }

  .brand img {
    width: 92px;
  }

  .search-box button {
    padding: 0 8px;
  }
}
