/* ── News ── */

.news {
  background: #fff;
  padding: 5rem 4.2%;
}

.news__inner {
  max-width: 1600px;
  margin: 0 auto;
}

.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.news__heading {
  font-size: clamp(2rem, 3vw, 2.53rem);
  font-weight: 800;
  color: #155573;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.news__btn {
  display: inline-block;
  background: #155573;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.75;
  padding: 0.5rem 1.25rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s;
}

.news__btn:hover {
  background: #0e3f57;
}

.news__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  align-items: start;
}

.news__card:nth-of-type(1) { grid-column: 1; grid-row: 1; }
.news__card:nth-of-type(2) { grid-column: 3; grid-row: 1; }
.news__card:nth-of-type(3) { grid-column: 1; grid-row: 2; }
.news__card:nth-of-type(4) { grid-column: 3; grid-row: 2; }

.news__card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: opacity 0.2s;
}

.news__card:hover {
  opacity: 0.8;
}

.news__card-img {
  width: 100%;
  aspect-ratio: 348 / 374;
  border-radius: 8px;
  overflow: hidden;
}

.news__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news__card-title {
  font-size: clamp(1.1rem, 1.6vw, 1.69rem);
  font-weight: 700;
  color: #155573;
  letter-spacing: -0.03em;
  line-height: 1.22;
}

.news__featured-link {
  grid-column: 2;
  grid-row: 1 / 3;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: opacity 0.2s;
}

.news__featured-link:hover {
  opacity: 0.8;
}

.news__featured-img {
  width: 100%;
  aspect-ratio: 746 / 747;
  border-radius: 8px;
  overflow: hidden;
}

.news__featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news__featured-title {
  font-size: clamp(1.75rem, 3vw, 3.07rem);
  font-weight: 700;
  color: #155573;
  letter-spacing: -0.03em;
  line-height: 1.14;
  text-align: center;
}
