/* =============================================
   Post / Article Styles
   ============================================= */

.post-hero {
  background: var(--off-white);
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--gray-light);
}

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

.post-hero .post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.post-read {
  font-size: 0.8rem;
  color: var(--gray-mid);
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.post-intro {
  font-size: 1.05rem;
  color: var(--gray-dark);
  line-height: 1.75;
  font-weight: 300;
}

/* ---- POST LAYOUT ---- */
.post-body {
  padding: 64px 0 80px;
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 64px;
  align-items: start;
}

.post-content { min-width: 0; }
.post-sidebar { min-width: 0; }

/* ---- POST CONTENT ---- */
.post-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  margin: 48px 0 16px;
  letter-spacing: -0.01em;
}

.post-content h2:first-child { margin-top: 0; }

.post-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 20px;
}

/* ---- VERDICT BOX ---- */
.verdict-box {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 32px 0;
  border-radius: 0 4px 4px 0;
}

.verdict-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.verdict-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--black);
}

/* ---- SIDEBAR ---- */
.post-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget {
  border: 1px solid var(--gray-light);
  padding: 24px;
}

.sidebar-widget h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-light);
}

.sidebar-widget a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-dark);
  text-decoration: none;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-light);
  line-height: 1.4;
  transition: color 0.2s;
}

.sidebar-widget a:last-child { border-bottom: none; }
.sidebar-widget a:hover { color: var(--black); }

/* ---- PRICE TABLE ---- */
.price-table {
  margin: 32px 0;
  border: 1px solid var(--gray-light);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  display: block;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 460px;
  table-layout: auto;
}

.price-table thead tr { background: var(--black); color: var(--white); }
.price-table th { padding: 11px 16px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; text-align: left; }
.price-table td { padding: 11px 16px; border-bottom: 1px solid var(--gray-light); color: #2a2a2a; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--off-white); }
.price-table td:first-child { font-weight: 500; color: var(--black); }
.price-table td.best { color: var(--cat-compare-text); font-weight: 500; }
.price-table td.worst { color: #8b2020; }
.price-table td.na { color: var(--gray-mid); font-style: italic; }
.price-table tr.highlight td { background: var(--accent-light); }

/* ---- RESPONSIVE: TABLET ---- */
@media (max-width: 900px) {
  .post-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .post-sidebar {
    position: static;
    border-top: 1px solid var(--gray-light);
    padding-top: 40px;
  }
}

/* ---- RESPONSIVE: MOBILE ---- */
@media (max-width: 600px) {
  .post-hero { padding: 28px 0 24px; }
  .post-title { font-size: clamp(1.5rem, 7vw, 2rem); }
  .post-intro { font-size: 0.92rem; line-height: 1.7; }
  .post-body { padding: 24px 0 40px; }
  .post-layout { gap: 24px; }

  .post-content h2 { font-size: 1.3rem; margin: 28px 0 10px; }
  .post-content p { font-size: 0.93rem; line-height: 1.75; }

  .verdict-box { padding: 14px 16px; }
  .verdict-box p { font-size: 0.9rem; }

  .post-sidebar { padding-top: 24px; border-top: 1px solid var(--gray-light); }
  .sidebar-widget { padding: 16px; }

  .price-table table { font-size: 0.78rem; }
  .price-table th, .price-table td { padding: 8px 10px; }
}
