/* ── Penny Oven News Page ─────────────────────────────── */

.po-news-hero {
  background: #fff;
  padding: 110px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.po-news-eyebrow {
  font-family: 'Kristi', cursive;
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.po-news-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.po-news-sub {
  font-size: 15px;
  color: var(--body);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.po-news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.po-news-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.po-news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.po-news-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #f5ede0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

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

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

.po-news-card-title {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.po-news-card-excerpt {
  font-size: 13px;
  color: var(--body);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.po-news-card-meta {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

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

/* ── Empty state ─────────────────────────────────────── */
.po-news-empty {
  text-align: center;
  padding: 80px 0;
  font-size: 15px;
  color: #bbb;
}

/* ── Single post page ────────────────────────────────── */
.po-post-hero {
  background: #fff;
  padding: 110px 0 50px;
  border-bottom: 1px solid var(--border);
}

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

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

.po-post-title {
  font-family: 'Lato', sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.po-post-meta {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.5px;
}

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

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

.po-post-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.85;
  color: var(--body);
}

.po-post-body h2 {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.po-post-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}

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

.po-post-body a {
  color: var(--gold);
  border-bottom: 1px solid rgba(207,166,112,0.35);
  transition: border-color 0.2s;
}
.po-post-body a:hover { border-color: var(--gold); }

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

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

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

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