.nav-logo .lt{min-width:0;}
.nav-logo .lt span{font-size:.62rem;letter-spacing:.06em;white-space:nowrap;}
.nav-logo .lt{min-width:0;}
.nav-logo .lt span{font-size:.66rem;letter-spacing:.08em;white-space:nowrap;}
:root {
  --news-paper: #f7f3ee;
}
.news-page {
  background: linear-gradient(180deg, #fff 0%, #faf6f2 100%);
}
.news-hero {
  padding: 74px 28px 38px;
  background:
    radial-gradient(circle at top left, rgba(177,18,38,.12), transparent 38%),
    linear-gradient(135deg, #101114 0%, #1b1d23 100%);
  color: #fff;
}
.news-hero-inner {
  max-width: 1220px;
  margin: 0 auto;
}
.news-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
  margin: 10px 0 14px;
}
.news-hero p {
  max-width: 780px;
  color: rgba(255,255,255,.74);
  line-height: 1.8;
  font-size: .98rem;
}
.news-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  padding: 13px 20px;
  font-weight: 700;
  font-size: .88rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .25s ease;
}
.hero-btn.primary {
  background: #fff;
  color: var(--red);
}
.hero-btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.22);
}
.hero-btn:hover {
  transform: translateY(-2px);
}
.news-page-section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 44px 28px 80px;
}
.news-page-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.news-page-head .sec-p {
  max-width: 560px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.news-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(15,15,18,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(15,15,18,.15);
}
.news-card.featured {
  grid-column: span 2;
}
.news-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.news-card.featured .news-thumb {
  height: 280px;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.news-card:hover .news-thumb img {
  transform: scale(1.04);
}
.news-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15,15,18,.84);
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.news-body {
  padding: 20px;
}
.news-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.15;
  color: var(--dark);
  margin: 7px 0 8px;
}
.news-card.featured .news-body h3 {
  font-size: 1.55rem;
}
.news-body .nc-x {
  color: var(--gmid);
  line-height: 1.7;
  font-size: .9rem;
}
.news-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  color: var(--glt);
  font-size: .76rem;
}
.news-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-actions {
  margin-top: 16px;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 700;
  font-size: .82rem;
}
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .news-card.featured {
    grid-column: span 2;
  }
}
@media (max-width: 720px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card.featured {
    grid-column: span 1;
  }
  .news-page-head {
    align-items: start;
  }
  .news-hero,
  .news-page-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
