/* ═══════════════════════════════════════════════════════════════
   WE HAVE THAT AT HOME — screen.css
   Ghost 6.0 Theme Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────────────────────── */
:root {
  --cream:   #FFFDF4;
  --yellow:  #FFD447;
  --red:     #FF3B2F;
  --navy:    #1A2340;
  --green:   #27AE60;
  --blue:    #3B8BEB;
  --purple:  #8B5CF6;
  --orange:  #FF9900;
  --gray:    #999;
  --font-display: 'Permanent Marker', cursive;
  --font-body:    'Nunito', sans-serif;
}

/* ── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  background-image: repeating-linear-gradient(
    0deg, transparent, transparent 27px, #e8e0d0 28px
  );
  color: var(--navy);
  min-height: 100vh;
}

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

img { max-width: 100%; height: auto; display: block; }

/* ── SITE HEADER ────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  border-bottom: 5px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-logo-text {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--yellow);
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1;
}

.site-logo-text em {
  color: white;
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a,
.site-nav-item {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #aab;
  padding: 6px 12px;
  border-radius: 8px 2px 8px 2px;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav-item:hover {
  color: var(--yellow);
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

.site-tagline {
  background: var(--yellow);
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--navy);
  padding: 5px 24px;
  border-bottom: 3px solid var(--navy);
  transform: rotate(-0.2deg);
}

/* ── MAIN LAYOUT ────────────────────────────────────────────── */
#site-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

/* ── HOMEPAGE HERO ──────────────────────────────────────────── */
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: 40px 0 32px;
}

@media (max-width: 768px) {
  .home-hero {
    grid-template-columns: 1fr;
  }
}

/* Left side */
.home-hero-left { }

.home-hero-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.home-hero-kid {
  flex-shrink: 0;
  transform: rotate(-3deg);
  filter: drop-shadow(2px 2px 0 rgba(26,35,64,0.15));
}

.home-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--navy);
  transform: rotate(-1deg);
  display: inline-block;
  margin-bottom: 12px;
}

.home-hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.home-hero-ask {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  flex-wrap: nowrap;
}

.home-hero-ask-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--navy);
  line-height: 1.3;
  flex: 1;
}

.home-hero-arrow {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  flex-shrink: 0;
  line-height: 1;
  display: inline-block;
  transform: translateY(4px);
  letter-spacing: -4px;
}

@media (max-width: 768px) {
  .home-hero-arrow { display: none; }
}

.home-explore {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-explore-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gray);
}

.home-explore-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-explore-tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--navy);
  background: white;
  padding: 5px 14px;
  border: 2.5px solid var(--navy);
  border-radius: 10px 3px 10px 3px;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 2px 2px 0 var(--navy);
}

.home-explore-tag:hover {
  background: var(--yellow);
  transform: rotate(-1deg) translate(-1px, -1px);
  text-decoration: none;
}

/* Right side — Deal of the Day */
.home-hero-right { }

.hero-deal {
  background: var(--red);
  border: 3px solid var(--navy);
  border-radius: 4px 16px 4px 16px;
  box-shadow: 6px 6px 0 var(--navy);
  padding: 24px 28px;
  transform: rotate(0.5deg);
}

.hero-deal-label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.hero-deal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: white;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-deal-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: white;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.hero-deal-price s { opacity: 0.6; font-size: 1.3rem; }

.hero-deal-now { color: var(--yellow); }

.hero-deal-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 16px;
}

.hero-deal-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  background: var(--yellow);
  color: var(--navy);
  padding: 12px 26px;
  border-radius: 10px 3px 10px 3px;
  border: 2.5px solid var(--navy);
  text-decoration: none;
  transition: transform 0.1s;
  margin-bottom: 10px;
}

.hero-deal-btn:hover {
  transform: translate(-2px, -2px);
  text-decoration: none;
}

.hero-deal-fine {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

/* ── VERDICT EXPLAINER STRIP ────────────────────────────────── */
.verdict-explainer {
  margin: 0 0 40px;
}

.verdict-explainer-intro {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 14px;
}

.verdict-explainer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 560px) {
  .verdict-explainer-cards { grid-template-columns: 1fr; }
}

.verdict-explainer-card {
  border: 3px solid var(--navy);
  border-radius: 12px 4px 12px 4px;
  padding: 18px 20px;
  box-shadow: 4px 4px 0 var(--navy);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.verdict-explainer-card:nth-child(1) { transform: rotate(-0.5deg); }
.verdict-explainer-card:nth-child(2) { transform: rotate(0.3deg); }
.verdict-explainer-card:nth-child(3) { transform: rotate(-0.4deg); }

.verdict-yes { background: #C8F7DC; }
.verdict-meh { background: #F0F0F0; border-color: #999; box-shadow: 4px 4px 0 #999; }
.verdict-no  { background: var(--yellow); }

.ve-emoji { font-size: 1.6rem; line-height: 1; margin-bottom: 4px; }

.ve-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}

.ve-desc {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.5;
  margin-top: 4px;
}


/* ── VERDICT SECTIONS (homepage) ────────────────────────────── */
.verdict-section {
  margin-bottom: 52px;
}

.verdict-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 3px solid var(--navy);
  border-radius: 12px 4px 4px 4px;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0 var(--navy);
}

.verdict-section-yes .verdict-section-header { background: #C8F7DC; }
.verdict-section-meh .verdict-section-header { background: #F0F0F0; border-color: #999; box-shadow: 4px 4px 0 #999; }
.verdict-section-no  .verdict-section-header { background: var(--yellow); }

.verdict-section-emoji { font-size: 1.5rem; line-height: 1; }

.verdict-section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  line-height: 1;
}

.verdict-section-sub {
  font-size: 0.88rem;
  color: #555;
  font-style: italic;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 0;
}

/* ── POST CARD ──────────────────────────────────────────────── */
.post-card {
  background: white;
  border: 3px solid var(--navy);
  border-radius: 16px 4px 16px 4px;
  box-shadow: 5px 5px 0 var(--navy);
  overflow: hidden;
  transition: transform 0.15s, box-shadow 0.15s;
}

.post-card:nth-child(odd)  { transform: rotate(-0.4deg); }
.post-card:nth-child(even) { transform: rotate(0.4deg); }

.post-card:hover {
  transform: rotate(0deg) translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--navy);
}

.post-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: var(--navy);
}

.post-card-header {
  background: var(--navy);
  padding: 16px 18px 14px;
}

.post-card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--yellow);
  background: rgba(255,255,255,0.1);
  padding: 2px 10px;
  border-radius: 8px 2px 8px 2px;
  margin-bottom: 8px;
  text-decoration: none;
}

.post-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: white;
  line-height: 1.3;
}

.post-card-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  padding: 14px 18px 0;
  flex: 1;
}

.post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px 16px;
  margin-top: auto;
}

.post-card-date {
  font-size: 0.78rem;
  color: var(--gray);
}

.post-card-cta {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--yellow);
  padding: 4px 12px;
  border-radius: 6px 2px 6px 2px;
  border: 2px solid var(--navy);
}

/* ── PAGINATION ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
  font-family: var(--font-display);
}

.pagination a {
  background: var(--navy);
  color: var(--yellow);
  padding: 10px 22px;
  border-radius: 10px 3px 10px 3px;
  border: 2.5px solid var(--navy);
  font-size: 1rem;
}

.pagination .page-number { font-size: 0.9rem; color: var(--gray); }

/* ── SINGLE POST ────────────────────────────────────────────── */
.post {
  max-width: 740px;
  margin: 0 auto;
}

.post-header {
  margin-bottom: 36px;
}

.post-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: white;
  background: var(--purple);
  padding: 4px 14px;
  border-radius: 12px 3px 12px 3px;
  border: 2px solid var(--navy);
  transform: rotate(-1.5deg);
  margin-bottom: 14px;
  text-decoration: none;
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}

.post-meta {
  font-size: 0.82rem;
  color: var(--gray);
  display: flex;
  gap: 12px;
}

/* ── POST CONTENT ───────────────────────────────────────────── */
/* All injected HTML from the API lives inside .gh-content */

.gh-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #2a2a2a;
}

.gh-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin: 36px 0 14px;
  transform: rotate(-0.5deg);
  display: inline-block;
}

.gh-content p { margin-bottom: 1.2em; }

.gh-content a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── DIALOGUE PANEL (injected via API) ──────────────────────── */
.dialogue-panel {
  background: white;
  border: 3px solid var(--navy);
  border-radius: 16px 4px 16px 4px;
  box-shadow: 6px 6px 0 var(--navy);
  padding: 24px;
  margin: 28px 0;
  transform: rotate(-0.3deg);
}

.dialogue-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.dialogue-row.parent-row {
  flex-direction: row-reverse;
}

.speaker-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gray);
  text-align: center;
  margin-top: 4px;
  white-space: nowrap;
}

.bubble {
  padding: 14px 18px;
  border-radius: 4px 20px 20px 20px;
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 80%;
  border: 2px solid var(--navy);
}

.bubble.child {
  background: #EEF6FF;
  box-shadow: 3px 3px 0 var(--blue);
  border-radius: 4px 20px 20px 20px;
}

.bubble.parent {
  background: #FFFBE6;
  box-shadow: 3px 3px 0 var(--navy);
  border-radius: 20px 4px 20px 20px;
  text-align: right;
}

/* ── DEAL OF THE DAY (injected via API) ─────────────────────── */
.deal-of-day {
  background: var(--red);
  border: 3px solid var(--navy);
  border-radius: 4px 16px 4px 16px;
  box-shadow: 5px 5px 0 var(--navy);
  padding: 16px 20px;
  margin: 28px 0;
  transform: rotate(-0.4deg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.deal-of-day-content { flex: 1; min-width: 200px; }

.deal-of-day-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2px;
  letter-spacing: 0.05em;
}

.deal-of-day-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: white;
  line-height: 1.2;
}

.deal-of-day-title s { opacity: 0.6; }
.deal-of-day-title .deal-price { color: var(--yellow); }

.deal-of-day-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  background: var(--yellow);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 10px 3px 10px 3px;
  border: 2.5px solid var(--navy);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  transition: transform 0.1s;
}

.deal-of-day-btn:hover {
  transform: translate(-2px, -2px);
  text-decoration: none;
}

/* ── PRODUCT COMPARISON (injected via API) ──────────────────── */
.product-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}

@media (max-width: 560px) {
  .product-comparison { grid-template-columns: 1fr; }
}

.product-card {
  border: 3px solid var(--navy);
  border-radius: 16px 4px 16px 4px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--navy);
  background: white;
}

.product-card.the-want {
  transform: rotate(-0.8deg);
  border-color: var(--red);
  box-shadow: 5px 5px 0 var(--red);
  border-radius: 16px 4px 16px 4px;
}

.product-card.we-have {
  transform: rotate(0.6deg);
  border-color: var(--green);
  box-shadow: 5px 5px 0 var(--green);
  border-radius: 4px 16px 4px 16px;
}

.card-header {
  padding: 10px 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: white;
  display: flex;
  align-items: center;
  gap: 6px;
}

.the-want .card-header { background: var(--red); }
.we-have .card-header  { background: var(--green); }

.card-img {
  background: #f5f5f5;
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: 12px;
}

.we-have .card-img {
  filter: blur(2px) brightness(0.85);
}

.no-stamp {
  position: absolute;
  font-size: 6rem;
  color: var(--red);
  opacity: 0.85;
  font-weight: 900;
  transform: rotate(-15deg);
  line-height: 1;
}

.card-body { padding: 14px 16px 18px; }

.card-product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--red);
  margin-bottom: 8px;
}

.we-have .card-price { color: var(--green); }

.card-desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: #555;
  margin-bottom: 12px;
}

.card-cta {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  background: var(--orange);
  color: #111;
  padding: 8px 16px;
  border-radius: 8px 2px 8px 2px;
  border: 2px solid var(--navy);
  text-decoration: none;
  transition: transform 0.1s;
}

.card-cta:hover {
  transform: translate(-1px, -1px);
  text-decoration: none;
}

/* ── VERDICT BOX (injected via API) ─────────────────────────── */
.verdict {
  border: 3px solid var(--navy);
  border-radius: 12px 4px 12px 4px;
  padding: 22px 24px;
  margin: 28px 0;
  box-shadow: 5px 5px 0 var(--navy);
}

.verdict.yes { background: #C8F7DC; }
.verdict.meh { background: #F0F0F0; box-shadow: 5px 5px 0 var(--gray); border-color: var(--gray); }
.verdict.no  { background: var(--yellow); }

.verdict-label {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verdict-rating {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.verdict-text {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #333;
  margin-bottom: 14px;
}

.verdict-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 10px 22px;
  border-radius: 10px 3px 10px 3px;
  border: 2.5px solid var(--navy);
  text-decoration: none;
  transition: transform 0.1s;
}

.verdict-btn:hover {
  transform: translate(-2px, -2px);
  text-decoration: none;
}

.verdict.yes .verdict-btn { background: var(--green); color: white; }
.verdict.meh .verdict-btn { background: var(--gray);  color: white; }
.verdict.no  .verdict-btn { background: var(--orange); color: #111; }

/* ── SECONDARY SECTION (injected via API) ───────────────────── */
.secondary-section {
  border: 3px dashed var(--navy);
  border-radius: 4px 16px 4px 16px;
  padding: 22px 24px;
  margin: 28px 0;
}

.secondary-section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.alt-products {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.alt-product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: white;
  border: 2px solid var(--navy);
  border-radius: 8px 2px 8px 2px;
  flex-wrap: wrap;
}

.alt-product-info { flex: 1; }
.alt-product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 2px;
}
.alt-product-desc { font-size: 0.82rem; color: #666; }

.alt-product-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  background: var(--orange);
  color: #111;
  padding: 6px 14px;
  border-radius: 6px 2px 6px 2px;
  border: 2px solid var(--navy);
  text-decoration: none;
  white-space: nowrap;
}

/* ── SUBSCRIBE FORM (injected via API) ──────────────────────── */
.subscribe-box {
  background: var(--navy);
  border: 3px solid var(--navy);
  border-radius: 4px 16px 4px 16px;
  box-shadow: 5px 5px 0 var(--yellow);
  padding: 22px 24px;
  margin: 28px 0;
  transform: rotate(0.4deg);
}

.subscribe-box-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--yellow);
  margin-bottom: 6px;
}

.subscribe-box-desc {
  font-size: 0.92rem;
  color: #ccd;
  line-height: 1.6;
  margin-bottom: 16px;
}

.subscribe-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.subscribe-input {
  flex: 1;
  min-width: 180px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2.5px solid var(--yellow);
  border-radius: 10px 3px 10px 3px;
  background: white;
  color: var(--navy);
  outline: none;
}

.subscribe-btn {
  padding: 10px 22px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.05rem;
  border: 2.5px solid var(--yellow);
  border-radius: 3px 10px 3px 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.1s;
}

.subscribe-btn:hover { transform: translate(-1px, -1px); }

.subscribe-fine-print {
  font-size: 0.72rem;
  color: #778;
  margin-top: 10px;
}

/* ── CRAYON DIVIDER ─────────────────────────────────────────── */
.crayon-divider {
  text-align: center;
  margin: 28px 0;
  overflow: hidden;
}

/* ── POST FOOTER ────────────────────────────────────────────── */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.post-tag-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--navy);
  padding: 4px 14px;
  border: 2px solid var(--navy);
  border-radius: 10px 3px 10px 3px;
  transition: transform 0.1s, background 0.1s;
  text-decoration: none;
}

.post-tag-link:hover {
  background: var(--yellow);
  transform: rotate(-1deg);
  text-decoration: none;
}

.site-tagline-link {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-style: italic;
}

.site-tagline-link:hover { opacity: 0.7; text-decoration: underline; }

.footer-subscribe-link {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-subscribe-link:hover { opacity: 0.8; text-decoration: underline; }

.post-subscribe { margin: 40px 0 0; }

.post-disclaimers {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 2px dashed #ccc;
}

.post-disclaimers p {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ── PAGE (ABOUT ETC) ───────────────────────────────────────── */
.page {
  max-width: 740px;
  margin: 0 auto;
}

.page-header { margin-bottom: 28px; }

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  color: var(--navy);
  transform: rotate(-0.5deg);
  display: inline-block;
}

/* ── SITE FOOTER ────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 5px solid var(--yellow);
  padding: 32px 24px;
  margin-top: 80px;
}

.site-footer-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--yellow);
  transform: rotate(-0.5deg);
  display: inline-block;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: #aab;
  margin-bottom: 16px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #aab;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-disclaimers {
  border-top: 1px solid #333;
  padding-top: 16px;
  margin-bottom: 16px;
  text-align: left;
}

.footer-disclaimers p {
  font-size: 0.72rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 6px;
}

.footer-disclaimers strong { color: #777; }

.footer-copy {
  font-size: 0.75rem;
  color: #555;
}

.footer-copy a { color: #555; text-decoration: underline; }

/* ── POST NAVIGATION ────────────────────────────────────────── */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
}

.post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 18px;
  background: white;
  border: 2.5px solid var(--navy);
  border-radius: 10px 3px 10px 3px;
  box-shadow: 4px 4px 0 var(--navy);
  text-decoration: none;
  transition: transform 0.1s;
}

.post-nav-item:hover {
  transform: translate(-2px, -2px);
  text-decoration: none;
}

.post-nav-next { text-align: right; }

.post-nav-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--gray);
}

.post-nav-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.3;
}

@media (max-width: 560px) {
  .post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
}

/* ── GHOST CARD WIDTHS (required by GScan) ──────────────────── */
/* These handle wide/full-width image cards from the Ghost editor */

.gh-content .kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 0 auto;
  transform: translateX(calc(50% - 50vw * 0.85));
}

.gh-content .kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .site-header-inner { padding: 12px 16px; }
  .site-logo-text { font-size: 1.3rem; }
  .site-nav a { font-size: 0.85rem; padding: 4px 8px; }
  #site-main { padding: 24px 16px 60px; }
  .post-grid { grid-template-columns: 1fr; }
  .product-comparison { grid-template-columns: 1fr; }
  .deal-of-day { flex-direction: column; }
  .subscribe-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .site-logo-text { font-size: 1.1rem; }
  .post-title { font-size: 1.8rem; }
}
