:root {
  --main-color: #2E97A6;
  --main-color-dark: #2a8ca8;
  --main-color-light: rgba(46, 151, 166, 0.10);
  --accent-color: #F0A000;
  --accent-color-dark: #C88500;
  --accent-color-light: rgba(240, 160, 0, 0.10);
  --gold: #F9D478;
  --magenta: #E5175B;
  --dark: #14303E;
  --dark-deep: #0E2430;
  --bg: #F4F1EA;
  --bg-warm: #ECE7DB;
  --white: #FFFFFF;
  --text: #1A2332;
  --text-soft: #5F6B7A;
  --text-faint: #8E99A8;
  --border: rgba(20, 48, 62, 0.08);
  --border-strong: rgba(20, 48, 62, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --radius-pill: 999px;
  --max-w: 1540px;
  --edge: 24px;
  --gap: 20px;
  --shadow-sm: 0 1px 3px rgba(20, 48, 62, 0.06);
  --shadow-md: 0 8px 30px rgba(20, 48, 62, 0.08);
  --shadow-lg: 0 16px 48px rgba(20, 48, 62, 0.12);
  --header-h: 90px;
  --scroll-offset-gap: 20px;
  --scroll-offset-nudge: 0px;
}

.news {
  padding: 100px 0 80px;
}

.news-item {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.news-item:first-child {
  border-top: 1px solid var(--border);
}

.news-date {
  flex-shrink: 0;
  width: 72px;
  text-align: center;
}
.news-date .day {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  display: block;
}
.news-date .month {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-top: 4px;
  display: block;
}

.news-body h3 a {
  font-family: "EB Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
  display: inline-block;
  margin-bottom: 8px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.news-body h3 a:hover {
  color: var(--main-color);
}
.news-body p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}
.news-body .news-tag {
  display: inline-block;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--main-color);
  background: var(--main-color-light);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-top: 12px;
}

@media (max-width: 680px) {
  .news {
    padding: 60px 0;
  }
  .news-item {
    flex-direction: column;
    gap: 12px;
  }
  .news-date {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 8px;
    width: auto;
  }
}
