/* ============================================================
   KAGEZI SEEDS — press-room.css
   ============================================================ */

#press-listing { background: var(--cream); }

/* ── CATEGORY TABS ── */
.press-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.press-tab {
  padding: 8px 20px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}
.press-tab:hover,
.press-tab.active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

/* ── FEATURED POST ── */
.press-featured {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 40px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.25s;
}
.press-featured:hover { box-shadow: var(--shadow-md); }
.press-featured-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.press-featured-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.press-featured-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
}
.press-featured-body h2 {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.press-featured-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.press-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
}
.press-featured-meta span { display: flex; align-items: center; gap: 5px; }

/* ── ARTICLES GRID ── */
.press-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.25s, transform 0.25s;
}
.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.article-card-img { width: 100%; height: 190px; object-fit: cover; }
.article-card-body { padding: 20px 22px 26px; }
.article-cat {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 8px;
}
.article-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 8px;
}
.article-card-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}
.article-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-meta i { font-size: 11px; }

/* ── NEWSLETTER ── */
#press-newsletter {
  background: var(--green-deep);
  padding: 72px 5%;
  text-align: center;
}
.newsletter-inner { max-width: 560px; margin: 0 auto; }
.newsletter-inner .section-tag { color: var(--gold-light); }
.newsletter-inner h2 { color: var(--white); margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,.68); margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 40px;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.45); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  padding: 13px 24px;
  border-radius: 40px;
  border: none;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .press-featured { grid-template-columns: 1fr; }
  .press-featured-img { min-height: 280px; }
  .press-articles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .press-articles-grid { grid-template-columns: 1fr; }
  .press-featured-body { padding: 28px; }
  .newsletter-form { flex-direction: column; }
}
