:root {
  --ink: #2b3037;
  --muted: #929ba7;
  --line: #edf0f3;
  --accent: #f18700;
}

body {
  background: #fff;
  color: var(--ink);
}

.discover-page {
  min-height: 760px;
}

.info-hero {
  position: relative;
  height: 520px;
  display: grid;
  place-items: center;
  background: url("https://images.unsplash.com/photo-1504711434969-e33886168f5c?auto=format&fit=crop&w=2200&q=82") center / cover no-repeat;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

.info-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(17, 42, 61, .46), rgba(0, 0, 0, .75)),
    linear-gradient(90deg, rgba(23, 54, 77, .22), rgba(0, 0, 0, .08));
}

.info-hero h1 {
  margin: 115px 0 0;
  font-size: 36px;
  line-height: 1;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(18px);
  animation: heroIn .7s ease forwards;
}

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

.info-bar-inner {
  width: 1090px;
  max-width: calc(100% - 32px);
  height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.info-crumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a5adb7;
  font-size: 12px;
}

.info-crumbs b {
  color: #1f252d;
}

.info-tabs {
  display: flex;
  align-items: stretch;
}

.info-tabs button {
  min-width: 108px;
  padding: 0 26px;
  border: 0;
  border-left: 1px solid var(--line);
  background: #fff;
  color: #4f5964;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .22s ease, color .22s ease;
}

.info-tabs button:last-child {
  border-right: 1px solid var(--line);
}

.info-tabs button.active,
.info-tabs button:hover {
  background: var(--accent);
  color: #fff;
}

.news-list {
  width: 1090px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  padding: 76px 0 110px;
}

.news-item {
  padding-bottom: 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.news-item:last-child {
  margin-bottom: 0;
}

.news-link {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  color: inherit;
}

.news-thumb {
  display: block;
  width: 300px;
  height: 180px;
  overflow: hidden;
  background: #eef1f4;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.news-item:hover .news-thumb img {
  transform: scale(1.055);
  filter: saturate(1.04);
}

.news-copy {
  padding-top: 1px;
}

.news-copy h2 {
  max-width: 850px;
  margin: 0 0 17px;
  font-size: 22px;
  line-height: 1.3;
  color: #2d333a;
  font-weight: 900;
}

.news-link:hover h2 {
  color: var(--accent);
}

.news-copy p {
  margin: 0 0 20px;
  color: #9aa2ad;
  line-height: 1.85;
  font-size: 14px;
}

.read-more {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.news-copy time {
  display: block;
  color: #9aa2ad;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .info-hero {
    height: 360px;
  }

  .info-hero h1 {
    margin-top: 56px;
    font-size: 32px;
  }

  .info-bar-inner {
    height: auto;
    display: block;
  }

  .info-crumbs {
    height: 48px;
  }

  .info-tabs {
    overflow-x: auto;
  }

  .info-tabs button {
    height: 48px;
    flex: 0 0 auto;
  }

  .news-list {
    padding: 44px 0 72px;
  }

  .news-item {
    margin-bottom: 34px;
    padding-bottom: 34px;
  }

  .news-link {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 480px) {
  .info-hero {
    height: 300px;
  }

  .info-hero h1 {
    font-size: 28px;
  }

  .news-copy h2 {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .info-hero h1,
  .reveal,
  .news-thumb img {
    animation: none;
    transition: none;
  }
}
