.news-archive-page {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(18, 183, 166, 0.14), transparent 31%),
    radial-gradient(circle at 90% 72%, rgba(199, 157, 99, 0.11), transparent 30%),
    linear-gradient(145deg, #f4fbf8 0%, #ffffff 54%, #f7f4ec 100%);
  color: var(--navy);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--navy);
  box-shadow: 0 14px 34px rgba(6, 26, 47, 0.2);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.news-archive-orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.news-archive-orb-one {
  top: 12%;
  left: -180px;
  width: 440px;
  height: 440px;
  background: rgba(18, 183, 166, 0.08);
}

.news-archive-orb-two {
  right: -130px;
  bottom: 2%;
  width: 380px;
  height: 380px;
  background: rgba(199, 157, 99, 0.07);
}

.news-page-header,
.news-archive-hero,
.news-archive-list,
.news-page-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.news-page-header {
  padding: 26px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.news-page-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
}

.news-page-brand img {
  width: 50px;
  height: 50px;
  padding: 7px;
  border: 1px solid rgba(6, 26, 47, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 36px rgba(6, 26, 47, 0.1);
  object-fit: contain;
}

.news-page-brand span {
  display: grid;
  line-height: 1;
}

.news-page-brand small {
  color: var(--jade);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-page-brand strong {
  margin-top: 5px;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
}

.news-page-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-page-back,
.news-page-instagram {
  min-height: 46px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(6, 26, 47, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 850;
  text-decoration: none;
}

.news-page-instagram {
  background: linear-gradient(135deg, #0f9e91, #20c7b8);
  color: #ffffff;
}

.news-archive-hero {
  padding: clamp(82px, 10vw, 150px) 0 clamp(58px, 7vw, 92px);
}

.news-archive-hero h1 {
  max-width: 850px;
  margin: 18px 0 24px;
  color: var(--navy);
  font-size: clamp(3.1rem, 9vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -0.078em;
  line-height: 0.9;
}

.news-archive-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(6, 26, 47, 0.64);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.78;
}

.news-archive-list {
  padding-bottom: clamp(92px, 10vw, 150px);
}

.news-archive-list .news-premium-grid {
  align-items: stretch;
}

.news-page-footer {
  padding: 28px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(6, 26, 47, 0.09);
  color: rgba(6, 26, 47, 0.52);
  font-size: 0.74rem;
  font-weight: 700;
}

@media (hover: hover) {
  .news-page-back:hover,
  .news-page-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(6, 26, 47, 0.13);
  }
}

@media (max-width: 760px) {
  .news-page-header {
    align-items: flex-start;
  }

  .news-page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .news-page-instagram {
    display: none;
  }

  .news-archive-hero {
    padding-top: 72px;
  }

  .news-page-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .news-page-header,
  .news-archive-hero,
  .news-archive-list,
  .news-page-footer {
    width: min(100% - 28px, 1180px);
  }

  .news-page-brand strong {
    font-size: 0.98rem;
  }

  .news-page-back {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.7rem;
  }
}
