.zgr-hero {
  background: var(--zgr-white);
  padding: 22px var(--zgr-page-pad) 0;
}

.zgr-hero__inner {
  display: grid;
  grid-template-columns: 1fr 30em;
  gap: 32px;
  max-width: var(--zgr-max-width);
  margin: 0 auto;
}

.zgr-hero__image {
  width: 100%;
  aspect-ratio: 981 / 450;
  border-radius: var(--zgr-radius);
  overflow: hidden;
}

.zgr-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zgr-hero__content {
  padding: 32px 32px 0;
  text-align: center;
}

.zgr-hero__title {
  font-family: var(--font-tinos);
  font-size: 40px;
  line-height: 48px;
  color: var(--zgr-black);
  margin-bottom: 20px;
  font-weight: 600;
}

.zgr-hero__title a:hover {
  color: var(--zgr-navy);
}

.zgr-hero__excerpt {
  font-family: var(--font-baskerville);
  font-size: 16px;
  line-height: 25.6px;
  color: var(--zgr-gray);
}

.zgr-hero__empty {
  padding: 40px;
  text-align: center;
  color: var(--zgr-gray);
}

.zgr-flash {
  padding-top: 0;
  border-left: none;
}

.zgr-flash__title {
  font-family: var(--font-tinos);
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: var(--zgr-black);
  padding-left: 24px;
  margin-bottom: 0;
}

.zgr-flash__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px;
  border-bottom: 1px dashed var(--zgr-light-gray);
}

.zgr-flash__item:last-child {
  border-bottom: none;
}

.zgr-flash__item--empty {
  color: var(--zgr-gray);
}

.zgr-flash__item-title {
  font-family: var(--font-tinos);
  font-size: 18px;
  line-height: 25.2px;
  color: var(--zgr-black);
}

.zgr-flash__item-title a:hover {
  color: var(--zgr-navy);
}

.zgr-flash__item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.zgr-flash__item-cat {
  font-family: var(--font-urbanist);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--zgr-navy);
}

.zgr-flash__sep,
.zgr-flash__item-author,
.zgr-flash__item-time {
  font-family: var(--font-urbanist);
  font-size: 12px;
  color: var(--zgr-gray);
}

.zgr-visual-stories {
  background: var(--zgr-white);
  padding: var(--zgr-section-top) var(--zgr-page-pad);
}

.zgr-visual-stories__inner,
.zgr-most-popular__inner,
.zgr-latest-stories__inner,
.zgr-global-view__inner,
.zgr-must-reads__inner,
.zgr-berlin-2026__inner,
.zgr-in-focus__inner,
.zgr-category-sections__inner {
  max-width: var(--zgr-max-width);
  margin: 0 auto;
}

.zgr-visual-stories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--zgr-gap);
  margin-top: 32px;
}

.zgr-visual-story {
  display: flex;
  flex-direction: column;
}

.zgr-visual-story__image {
  width: 100%;
  aspect-ratio: 728 / 320;
  border-radius: var(--zgr-radius);
  overflow: hidden;
}

.zgr-visual-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.zgr-visual-story:hover .zgr-visual-story__image img,
.zgr-global-card:hover .zgr-global-card__image img,
.zgr-card-sm:hover .zgr-card-sm__image img,
.zgr-in-focus__item:hover img,
.zgr-cat-main:hover .zgr-cat-main__image img {
  transform: scale(1.04);
}

.zgr-visual-story__body {
  padding: 24px 24px 0;
  text-align: center;
}

.zgr-visual-story__title {
  font-family: var(--font-tinos);
  font-size: 28px;
  line-height: 35px;
  color: var(--zgr-black);
  margin-bottom: 16px;
}

.zgr-visual-story__title a:hover,
.zgr-popular-item__title a:hover,
.zgr-latest-stories-item__title a:hover,
.zgr-cat-main__title a:hover,
.zgr-cat-sub__title a:hover {
  color: var(--zgr-navy);
}

.zgr-visual-story__excerpt {
  font-family: var(--font-baskerville);
  font-size: 16px;
  line-height: 25.6px;
  color: var(--zgr-gray);
  margin-bottom: 16px;
}

.zgr-visual-story__author {
  font-family: var(--font-poppins);
  font-size: 14px;
  color: var(--zgr-black);
}

.zgr-most-popular {
  background: var(--zgr-white);
  border-top: 1px solid var(--zgr-light-gray);
  padding: 65px var(--zgr-page-pad) 40px;
}

.zgr-most-popular__header,
.zgr-global-view__header,
.zgr-must-reads__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zgr-most-popular__header {
  margin-bottom: 32px;
}

.zgr-most-popular__controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.zgr-most-popular__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--zgr-black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zgr-most-popular__nav-btn svg {
  display: block;
}

.zgr-most-popular__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.zgr-popular-slide[hidden] {
  display: none !important;
}

.zgr-popular-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-right: 33px;
  border-right: 1px solid var(--zgr-light-gray);
}

.zgr-popular-item:last-child {
  border-right: none;
  padding-right: 0;
}

.zgr-popular-item__num {
  font-family: var(--font-urbanist);
  font-size: 64px;
  font-weight: 700;
  line-height: 64px;
  color: var(--zgr-navy);
  flex-shrink: 0;
  min-width: 40px;
}

.zgr-popular-item__body,
.zgr-latest-stories-item__body {
  flex: 1;
  min-width: 0;
}

.zgr-popular-item__title {
  font-family: var(--font-tinos);
  font-size: 20px;
  line-height: 28px;
  color: var(--zgr-black);
  margin-bottom: 8px;
}

.zgr-popular-item__byline {
  font-family: var(--font-urbanist);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--zgr-gray);
}

.zgr-most-popular__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.zgr-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  padding: 0;
  background: var(--zgr-light-gray);
  transition: background 0.2s;
}

.zgr-dot.is-active {
  background: var(--zgr-crimson);
}

.zgr-latest-stories {
  background: var(--zgr-white);
  padding: var(--zgr-section-top) var(--zgr-page-pad) 48px;
}

.zgr-latest-stories__title {
  font-family: var(--font-urbanist);
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0.48px;
  color: var(--zgr-navy);
  margin-bottom: 32px;
}

.zgr-latest-stories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.zgr-latest-stories-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.zgr-latest-stories-item__num {
  font-family: var(--font-tinos);
  font-size: 32px;
  line-height: 48px;
  color: var(--zgr-light-gray);
  flex-shrink: 0;
  min-width: 20px;
  font-weight: 700;
}

.zgr-latest-stories-item__title {
  font-family: var(--font-tinos);
  font-size: 18px;
  line-height: 23.4px;
  color: var(--zgr-black);
  margin-bottom: 6px;
}

.zgr-latest-stories-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.zgr-global-view {
  background: var(--zgr-navy);
  padding: var(--zgr-section-top) var(--zgr-page-pad);
}

.zgr-global-view__header {
  margin-bottom: 48px;
}

.zgr-global-view__title {
  font-family: var(--font-tinos);
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 1.92px;
  color: var(--zgr-white);
}

.zgr-global-view__see-all {
  font-family: var(--font-urbanist);
  font-size: 14px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--zgr-white-70);
  transition: color 0.2s;
}

.zgr-global-view__see-all:hover {
  color: var(--zgr-white);
}

.zgr-global-view__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--zgr-gap);
}

.zgr-global-card {
  display: flex;
  flex-direction: column;
}

.zgr-global-card__image {
  width: 100%;
  aspect-ratio: 474 / 256;
  border-radius: var(--zgr-radius);
  overflow: hidden;
}

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

.zgr-global-card__body {
  padding-top: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.zgr-global-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.zgr-global-card__title {
  font-family: var(--font-tinos);
  font-size: 24px;
  line-height: 30px;
  color: var(--zgr-white);
  margin-bottom: 16px;
}

.zgr-global-card__title a {
  color: inherit;
}

.zgr-global-card__title a:hover {
  opacity: 0.8;
}

.zgr-global-card__excerpt {
  font-family: var(--font-baskerville);
  font-size: 15.2px;
  line-height: 24.32px;
  color: var(--zgr-white);
  opacity: 0.7;
  flex: 1;
  margin-bottom: 32px;
}

.zgr-global-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.zgr-must-reads {
  background: var(--zgr-white);
  padding: var(--zgr-section-top) var(--zgr-page-pad) 48px;
}

.zgr-must-reads__header {
  align-items: flex-start;
  margin-bottom: 32px;
}

.zgr-must-reads__label {
  font-family: var(--font-urbanist);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--zgr-black);
  margin-bottom: 8px;
}

.zgr-must-reads__subtitle {
  font-family: var(--font-baskerville);
  font-style: italic;
  font-size: 14px;
  line-height: 21px;
  color: var(--zgr-gray);
}

.zgr-must-reads__see-all {
  font-family: var(--font-urbanist);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--zgr-black);
  flex-shrink: 0;
}

.zgr-must-reads__see-all:hover {
  text-decoration: underline;
}

.zgr-must-reads__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--zgr-gap-sm);
}

.zgr-card-sm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.zgr-card-sm__image {
  width: 100%;
  aspect-ratio: 360 / 192;
  border-radius: var(--zgr-radius);
  overflow: hidden;
}

.zgr-card-sm__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.zgr-card-sm__title {
  font-family: var(--font-baskerville);
  font-size: 14px;
  line-height: 19.6px;
  color: var(--zgr-black);
}

.zgr-card-sm__title a:hover {
  color: var(--zgr-navy);
}

.zgr-berlin-2026 {
  background: var(--zgr-white);
  padding: var(--zgr-section-top) var(--zgr-page-pad) 48px;
}

.zgr-in-focus {
  background: var(--zgr-navy);
  padding: var(--zgr-section-top) var(--zgr-page-pad) 60px;
}

.zgr-in-focus__header {
  text-align: center;
  margin-bottom: 48px;
}

.zgr-in-focus__title {
  font-family: var(--font-urbanist);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: var(--zgr-white);
  margin-bottom: 12px;
}

.zgr-in-focus__subtitle {
  font-family: var(--font-baskerville);
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.zgr-in-focus__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.zgr-in-focus__item {
  aspect-ratio: 235 / 224;
  border-radius: var(--zgr-radius);
  overflow: hidden;
}

.zgr-in-focus__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.zgr-in-focus__item:hover img {
  transform: scale(1.06);
}

.zgr-in-focus__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.zgr-btn-gallery {
  background: var(--zgr-white);
  color: var(--zgr-navy);
  font-family: var(--font-urbanist);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.2s;
}

.zgr-btn-gallery:hover {
  background: var(--zgr-light-gray);
}

.zgr-category-sections {
  background: var(--zgr-white);
  padding: var(--zgr-section-top) var(--zgr-page-pad);
}

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

.zgr-cat-section__title {
  font-family: var(--font-urbanist);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  color: var(--zgr-black);
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--zgr-navy);
}

.zgr-cat-main {
  margin-bottom: 24px;
}

.zgr-cat-main__image {
  width: 100%;
  aspect-ratio: 464 / 224;
  border-radius: var(--zgr-radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.zgr-cat-main__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.zgr-cat-main__title {
  font-family: var(--font-tinos);
  font-size: 24px;
  line-height: 31.2px;
  color: var(--zgr-black);
  margin-bottom: 12px;
}

.zgr-cat-main__excerpt {
  font-family: var(--font-baskerville);
  font-size: 16px;
  line-height: 24px;
  color: var(--zgr-gray);
  margin-bottom: 12px;
}

.zgr-cat-sub {
  padding: 16px 0;
  border-bottom: 1px solid var(--zgr-light-gray);
}

.zgr-cat-sub:last-child {
  border-bottom: none;
}

.zgr-cat-sub__title {
  font-family: var(--font-tinos);
  font-size: 18px;
  line-height: 23.4px;
  color: var(--zgr-black);
  margin-bottom: 6px;
}

@media (max-width: 1200px) {
  .zgr-hero__inner {
    grid-template-columns: 1fr 300px;
  }

  .zgr-most-popular__grid {
    grid-template-columns: 1fr 1fr;
  }

  .zgr-most-popular__grid .zgr-popular-item:last-child {
    display: none;
  }

  .zgr-category-sections__inner {
    gap: 32px;
  }

  .zgr-in-focus__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .zgr-hero__inner {
    grid-template-columns: 1fr;
  }

  .zgr-flash {
    border-top: 1px solid var(--zgr-light-gray);
    padding-top: 24px;
  }

  .zgr-visual-stories__grid,
  .zgr-most-popular__grid {
    grid-template-columns: 1fr;
  }

  .zgr-most-popular__grid .zgr-popular-item {
    border-right: none;
    padding-right: 0;
  }

  .zgr-latest-stories__grid,
  .zgr-global-view__grid,
  .zgr-must-reads__grid,
  .zgr-category-sections__inner {
    grid-template-columns: 1fr 1fr;
  }

  .zgr-global-view__grid .zgr-global-card:last-child,
  .zgr-category-sections__inner .zgr-cat-section:last-child {
    display: none;
  }

  .zgr-in-focus__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .zgr-latest-stories__grid,
  .zgr-global-view__grid,
  .zgr-category-sections__inner {
    grid-template-columns: 1fr;
  }

  .zgr-global-view__grid .zgr-global-card:last-child,
  .zgr-category-sections__inner .zgr-cat-section:last-child {
    display: block;
  }

  .zgr-must-reads__grid {
    grid-template-columns: 1fr 1fr;
  }

  .zgr-in-focus__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zgr-hero__title {
    font-size: 28px;
    line-height: 36px;
  }

  .zgr-hero__content {
    padding: 20px 0 0;
  }

  .zgr-most-popular__grid .zgr-popular-item:last-child {
    display: flex;
  }
}

@media (max-width: 480px) {
  .zgr-must-reads__grid {
    grid-template-columns: 1fr;
  }

  .zgr-in-focus__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zgr-popular-item__num {
    font-size: 40px;
  }
}
