/* V10: linked inner pages, refined header/menu and restored news center */
.desktop-nav {
  margin-left: auto;
}

.mobile-nav {
  margin-left: clamp(22px, 2.6vw, 44px);
  transform: translateY(3px);
}

.mobile-nav > .side-menu {
  width: 184px;
  top: 47px;
  padding: 12px 14px 14px;
}

.mobile-nav .side-menu a {
  display: block;
  width: 100%;
  padding: 10px 3px;
  color: #26343d;
  text-align: right;
  font-size: 13px;
  letter-spacing: .04em;
  transition: color .25s ease, background-color .25s ease, padding-right .25s ease;
}

.mobile-nav .side-menu a + a {
  margin-top: 2px;
}

.mobile-nav .side-menu a:hover,
.mobile-nav .side-menu a:focus-visible {
  color: #b98a3d;
  padding-right: 8px;
  background: linear-gradient(90deg, transparent, rgba(185, 138, 61, .08));
  outline: none;
}

.news-center {
  padding: 92px 0 100px;
  background:
    radial-gradient(circle at 8% 0, rgba(185, 138, 61, .08), transparent 27%),
    linear-gradient(135deg, rgba(249, 250, 250, .97), rgba(233, 237, 239, .94));
  border-bottom: 1px solid rgba(31, 49, 62, .08);
}

.news-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.news-heading .section-title {
  margin-bottom: 38px;
}

.news-controls {
  display: flex;
  gap: 9px;
  margin-bottom: 40px;
}

.news-arrow {
  width: 43px;
  height: 43px;
  border: 1px solid rgba(31, 49, 62, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  color: #26343d;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease;
}

.news-arrow:hover,
.news-arrow:focus-visible {
  color: #fff;
  background: #b98a3d;
  border-color: #b98a3d;
  transform: translateY(-2px);
  outline: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.news-page.is-active {
  animation: newsReveal .42s ease both;
}

.news-card {
  display: grid;
  grid-template-rows: 224px 1fr;
  min-height: 410px;
  overflow: hidden;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .94);
  box-shadow: 0 20px 55px rgba(29, 43, 53, .1);
  transition: transform .38s ease, box-shadow .38s ease;
}

.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 28px 68px rgba(29, 43, 53, .17);
  outline: none;
}

.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eef1f2;
  transition: transform .55s ease, opacity .55s ease;
}

.news-card--contain {
  background: #fff;
}

.news-card--contain > img {
  object-fit: contain;
  background: #081b35;
}

.news-card:hover img,
.news-card:focus-visible img {
  transform: scale(1.035);
  opacity: .92;
}

.news-card > div {
  display: flex;
  flex-direction: column;
  padding: 25px 27px 24px;
}

.news-card time {
  color: #b98a3d;
  letter-spacing: .15em;
  font-size: 10px;
}

.news-card h3 {
  margin: 13px 0 24px;
  color: #26343d;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.news-card span {
  margin-top: auto;
  color: #7a858d;
  letter-spacing: .13em;
  font-size: 9px;
}

.story-panels article,
.research-cards article,
.company {
  position: relative;
}

.card-link,
.section-link {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.family-image {
  display: block;
  transition: transform .38s ease, box-shadow .38s ease;
}

.family-image:hover,
.family-image:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 31px 76px rgba(27, 43, 54, .27);
  outline: none;
}

.company-grid {
  position: relative;
  z-index: 1;
}

.company:hover .company-copy h2 {
  color: #e9d09f;
}

@keyframes newsReveal {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
  .mobile-nav {
    margin-left: auto;
    transform: translateY(2px);
  }

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 10px);
  }
}

@media (max-width: 620px) {
  .mobile-nav {
    transform: translateY(2px);
  }

  .mobile-nav > .side-menu {
    width: min(180px, calc(100vw - 40px));
    top: 43px;
    padding: 10px 12px 12px;
  }

  .news-center {
    padding: 70px 0 74px;
  }

  .news-heading {
    align-items: center;
  }

  .news-heading .section-title {
    margin-bottom: 30px;
  }

  .news-heading .section-title p {
    display: none;
  }

  .news-controls {
    flex: 0 0 auto;
    margin-bottom: 30px;
  }

  .news-arrow {
    width: 38px;
    height: 38px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card,
  .news-card:last-child {
    width: 100%;
    min-height: 0;
    grid-column: auto;
    grid-template-rows: 205px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-page.is-active {
    animation: none;
  }
}
