/* pokiesportal.site — Newspaper Layout */
:root {
  --pbn-primary: #1a1a1a;
  --pbn-primary-light: #333333;
  --pbn-secondary: #b8860b;
  --pbn-bg: #fcfcf9;
  --pbn-surface: #ffffff;
  --pbn-text: #1a1a1a;
  --pbn-text-light: #555555;
  --pbn-border: #e0ddd0;
}

/* Page Layout */
.pbn-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Top Bar */
.pbn-topbar {
  text-align: center;
  padding: 20px 0;
  border-bottom: 2px solid var(--pbn-secondary);
  margin-bottom: 40px;
}
.pbn-topbar .date {
  font-size: 0.85rem;
  color: var(--pbn-text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Hero — newspaper headline */
.pbn-hero {
  text-align: center;
  padding: 0 0 50px;
  border-bottom: 1px solid var(--pbn-border);
}
.pbn-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--pbn-text);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.pbn-hero .deck {
  font-size: 1.15rem;
  color: var(--pbn-text-light);
  max-width: 650px;
  margin: 0 auto 28px;
  font-style: italic;
  line-height: 1.7;
}
.pbn-hero .rule {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--pbn-secondary), #daa520, var(--pbn-secondary));
  margin: 0 auto 28px;
}
.pbn-btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--pbn-primary);
  color: #fff;
  font-family: system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s;
}
.pbn-btn:hover { background: var(--pbn-primary-light); transform: translateY(-2px); }

/* Feature Cards — newspaper 2-col */
.pbn-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 48px 0;
}
.pbn-card {
  padding: 32px 28px;
  border-right: 1px solid var(--pbn-border);
  border-bottom: 1px solid var(--pbn-border);
}
.pbn-card:nth-child(even) { border-right: none; }
.pbn-card:nth-child(3) { border-bottom: none; }
.pbn-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.pbn-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--pbn-text); margin-bottom: 8px; line-height: 1.3; }
.pbn-card p { font-size: 0.95rem; color: var(--pbn-text-light); line-height: 1.75; }

/* CTA Block */
.pbn-cta {
  background: linear-gradient(135deg, var(--pbn-primary), var(--pbn-primary-light));
  padding: 60px 48px;
  text-align: center;
  margin: 20px 0 60px;
}
.pbn-cta h2 { font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.pbn-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.pbn-cta .pbn-btn { background: var(--pbn-secondary); }
.pbn-cta .pbn-btn:hover { background: #8b6508; }

@media (max-width: 768px) {
  .pbn-cards { grid-template-columns: 1fr; }
  .pbn-card { border-right: none; }
  .pbn-card:nth-child(3) { border-bottom: 1px solid var(--pbn-border); }
  .pbn-card:last-child { border-bottom: none; }
}
