/* ── Four Café News Page ─────────────────────────────── */

.news-hero {
  background: var(--dark-bg);
  padding: 100px 0 60px;
  text-align: center;
  border-bottom: 1px solid rgba(144,185,62,0.15);
}

.news-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.news-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.news-hero-sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── News grid ───────────────────────────────────────── */
.news-section {
  background: var(--dark-bg);
  padding: 60px 0 100px;
}

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

.news-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.news-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: rgba(144,185,62,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.news-card-body {
  padding: 24px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.news-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-card-excerpt {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.news-card-meta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.news-card-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.news-card-link:hover { gap: 10px; }

/* ── Empty state ─────────────────────────────────────── */
.news-empty {
  text-align: center;
  padding: 80px 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.3);
}

/* ── Single post page ────────────────────────────────── */
.post-hero {
  background: var(--dark-bg);
  padding: 100px 0 50px;
  border-bottom: 1px solid rgba(144,185,62,0.15);
}

.post-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.post-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: block;
}

.post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}

.post-meta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.5px;
}

.post-cover {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  display: block;
  margin: 0;
}

.post-body-section {
  background: var(--dark-bg);
  padding: 60px 0 100px;
}

.post-body {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255,255,255,0.7);
}

.post-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 26px;
  color: #fff;
  margin: 40px 0 14px;
}

.post-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  color: #fff;
  margin: 30px 0 10px;
}

.post-body p { margin-bottom: 20px; }

.post-body a {
  color: var(--green);
  border-bottom: 1px solid rgba(144,185,62,0.3);
  transition: border-color 0.2s;
}
.post-body a:hover { border-color: var(--green); }

.post-body ul, .post-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.post-body li { margin-bottom: 8px; }

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 48px;
  transition: gap 0.2s;
}
.post-back:hover { gap: 12px; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-hero { padding: 80px 0 40px; }
}

@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-hero { padding: 70px 0 36px; }
}
