.news {
  background: #fff;
}

.header nav {
  gap: 22px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 32px;
  overflow: hidden;
  background: #f3f3f1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.news-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 180px;
  height: 180px;
  background: rgba(78, 136, 181, .08);
  border-radius: 50%;
  content: "";
}

.news-featured {
  color: #fff;
  background: #182b36;
  border: 2px solid #6fb5e6;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .65rem;
  font-weight: 800;
}

.news-meta span {
  color: #996633;
}

.news-featured .news-meta,
.news-featured h3,
.news-featured p,
.news-featured > a {
  color: #fff;
}

.news-featured .news-meta span {
  color: #dff3ff;
}

.news-featured .news-meta {
  font-size: .78rem;
  line-height: 1.5;
}

.news-featured h3 {
  color: #fff;
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  line-height: 1.25;
}

.news-featured p {
  font-size: 1.05rem;
  line-height: 1.75;
}

.news-symbol {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: #fff;
  background: #4e88b5;
  border-radius: 17px;
  font-size: 1.05rem;
  font-weight: 900;
}

.news-card h3 {
  max-width: 520px;
  margin: 0 0 18px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.news-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: .91rem;
}

.news-card > a {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: #4e88b5;
  font-size: .86rem;
  font-weight: 800;
}

.news-featured p {
  color: #fff;
}

.news-featured > a {
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.news-featured > a:hover {
  color: #fff;
}

.news-featured > a:focus-visible {
  color: #18252d;
  background: #fff;
  outline: 3px solid #8bc9f3;
  outline-offset: 4px;
}

.news-note {
  margin-top: 25px;
  color: var(--muted);
  font-size: .74rem;
}

@media (max-width: 900px) {
  .news-card { min-height: 520px; }
}

@media (max-width: 700px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: auto; }
  .news-card > a { margin-top: 24px; }
}

.ai-label {
  z-index: 4;
  margin: 0;
  padding: 7px 11px;
  color: #fff;
  background: rgba(32, 36, 42, .88);
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 7px;
  backdrop-filter: blur(6px);
  font-size: .66rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-ai-label {
  position: absolute;
  right: 22px;
  bottom: 22px;
  max-width: 430px;
}

.scene-media {
  position: relative;
}

.scene-media > img {
  width: 100%;
  height: min(49vw, 580px);
  object-fit: cover;
}

.scene-ai-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 480px;
}

@media (max-width: 700px) {
  .scene-media > img { height: 420px; }

  .hero-ai-label {
    right: 14px;
    bottom: 76px;
    left: 14px;
    max-width: none;
  }

  .scene-ai-label {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: none;
  }
}
