/* LP/2 — Editorial advertorial style */
:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --text: #1a1a1a;
  --text-muted: #555;
  --border: #e5e5e5;
  --bg: #fff;
  --cta: #2563eb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 18px;
}

a { color: var(--blue); }

/* Header */
.site-top {
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

.site-top a {
  text-decoration: none;
  color: var(--text-muted);
}

.site-top a:hover { color: var(--blue); }

/* Article */
.article-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

.article-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #000;
}

.article-meta {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}

.article-meta strong { color: var(--text); }

.hero-img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 28px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/10;
}

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

.section-head {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin: 40px 0 20px;
  color: #000;
}

.section-img {
  width: 100%;
  border-radius: 4px;
  margin: 20px 0 24px;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.section-img.tall {
  aspect-ratio: 4/3;
}

.section-img.product {
  aspect-ratio: 16/10;
  object-fit: contain;
  background: transparent;
}

.cost-list {
  margin: 16px 0 20px 24px;
}

.cost-list li {
  margin-bottom: 8px;
}

.before-after-caption {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  margin: -4px 0 32px;
  line-height: 1.6;
  font-style: italic;
}

.before-after {
  margin: 20px 0 12px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.before-after img {
  width: 100%;
  display: block;
}

.before-after figcaption {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.before-after-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.before-after-gallery .before-after {
  margin: 0;
}

.ba-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ba-label.before { color: #dc2626; }
.ba-label.after { color: #16a34a; }

.test-results {
  margin: 20px 0 16px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.test-results img {
  width: 100%;
  display: block;
}

.results-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 16px;
}

.result-stat {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.result-label {
  display: block;
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.result-change {
  display: block;
  font-size: 16px;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.result-diff {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  padding: 2px 8px;
  border-radius: 999px;
}

.test-results-note {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 32px;
  line-height: 1.5;
}

@media (max-width: 500px) {
  .results-highlights {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  border-left: 3px solid var(--blue);
  padding: 12px 0 12px 20px;
  margin: 24px 0;
  font-style: italic;
  color: #333;
}

.testimonial cite {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 15px;
  font-family: sans-serif;
}

.recommend-box {
  background: #f8fafc;
  border: 2px solid var(--blue);
  border-radius: 8px;
  padding: 28px;
  margin: 32px 0;
  text-align: center;
}

.recommend-box h3 {
  font-family: sans-serif;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}

.recommend-box .price {
  font-family: sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  margin: 12px 0;
}

.recommend-box .price-old {
  font-size: 20px;
  color: #999;
  text-decoration: line-through;
  margin-right: 8px;
}

.cta-btn {
  display: inline-block;
  background: var(--cta);
  color: #fff !important;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 17px;
  padding: 16px 36px;
  border-radius: 6px;
  margin-top: 16px;
  transition: background 0.2s;
}

.cta-btn:hover { background: var(--blue-dark); }

.cta-btn.block {
  display: block;
  text-align: center;
}

.guarantee-line {
  font-family: sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}

.footer-note {
  text-align: center;
  font-family: sans-serif;
  font-size: 12px;
  color: #999;
  padding: 24px;
  border-top: 1px solid var(--border);
}

.trust-reviews--list {
  margin-top: 40px;
  padding-top: 0;
  border-top: none;
}

.trust-reviews--list .trust-reviews__heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.trust-reviews--list .trust-reviews__label {
  text-align: left;
  margin-bottom: 16px;
}

.trust-reviews--list .cta-btn {
  margin-top: 28px;
}

@media (max-width: 600px) {
  .article-body { font-size: 17px; }
  .section-head { font-size: 21px; }
}
