/* ─── NEWS HERO ─────────────────────── */
#news-hero {
  background: #ffffff;
  padding: 90px 5vw 60px;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.news-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.news-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 12px;
}
.news-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--c-red);
  border-radius: 2px;
}

.news-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: #1A1F2B;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.news-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #4A5568;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── NEWS SECTION ─────────────────────── */
#news-section {
  background: #F0F2F7;
  padding: 64px 5vw 90px;
  min-height: 50vh;
}

/* ─── NEWS GRID ─────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── NEWS CARD ─────────────────────── */
.news-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: rgba(215,43,43,0.2);
}

/* Thumbnail */
.news-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #E8EAF0;
  position: relative;
  flex-shrink: 0;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}

.news-card:hover .news-card-thumb img {
  transform: scale(1.05);
}

/* Play icon overlay for YouTube links */
.news-card-thumb .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.news-card:hover .play-icon { opacity: 1; }
.play-icon svg {
  width: 52px; height: 52px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

/* Body */
.news-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.news-card-tag {
  display: inline-block;
  background: rgba(215,43,43,0.08);
  border: 1px solid rgba(215,43,43,0.15);
  color: var(--c-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.news-card-date {
  font-size: 12px;
  color: #7A8096;
  font-weight: 500;
}

.news-card-title {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: #1A1F2B;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  flex: 1;
}

.news-card-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #7A8096;
  font-weight: 500;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.news-card-source svg {
  width: 14px; height: 14px;
  color: var(--c-red);
  flex-shrink: 0;
}

/* Read more arrow */
.news-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-red);
  margin-top: 14px;
  transition: gap 0.2s ease;
}
.news-card:hover .news-card-arrow { gap: 8px; }
.news-card-arrow svg { width: 14px; height: 14px; }

/* ─── EMPTY STATE ─────────────────────── */
.news-empty {
  text-align: center;
  padding: 80px 20px;
  color: #7A8096;
  font-size: 15px;
}
.news-empty.hidden { display: none; }

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 1000px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  #news-section { padding: 48px 5vw 70px; }
  .news-grid { grid-template-columns: 1fr; gap: 20px; }
  #news-hero { padding: 70px 6vw 48px; }
}