body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.2em;
  margin-bottom: 0.6em;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.2rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1em;
}

a {
  color: #b80000;
  text-decoration: none;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1rem;
}

.blog-post {
  max-width: 700px;
  margin: auto;
  padding: 1rem;
}

.blog-post h4,
.blog-post h5,
.blog-post h6 {
  font-weight: 600;
}

.blog-post img {
  max-width: 100%;
  height: auto;
}

/* ===== CTA Upsell ===== */
.cta-upsell {
  background-color: var(--light-red, #fee2e2);
  border-radius: 12px;
  padding: 18px;
  margin: 24px auto;
  text-align: center;
  max-width: 720px;
}

.cta-upsell__heading {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark-gray, #1f2937);
}

.cta-upsell__subcopy {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--dark-gray, #1f2937);
  margin: 0 auto 14px;
  max-width: 42ch;
}

.cta-upsell__button {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: var(--primary-red, #dc2626);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.05s ease, background-color 0.15s ease;
  box-shadow: 0 2px 0 var(--dark-red, #991b1b);
}

.cta-upsell__button:hover,
.cta-upsell__button:focus {
  background-color: var(--dark-red, #991b1b);
}

.cta-upsell__button:active {
  transform: translateY(1px);
}

.cta-upsell__perk {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--dark-gray, #1f2937);
  opacity: 0.9;
}

/* ===== Tagline visibility & sizing ===== */
.site-tagline {
  display: block !important;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-gray, #1f2937);
  text-align: center;
  margin-top: 6px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .cta-upsell { padding: 22px 28px; }
  .cta-upsell__heading { font-size: 1.35rem; }
  .site-tagline { font-size: 1rem; }
}

/* ===== Hero Section ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1rem 4rem;
  gap: 2rem;
}

.hero-text {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 1rem;
}

.hero-text h1 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}

.hero-text p {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-text a {
  background: #dc2626;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

.hero-image img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 12px;
  margin-top: 0;
}
/* -------------------------------
   Seen & Red • Blog Prose Theme
   Build v29
----------------------------------*/

/* Base scale & container */
:root{
  --sr-red:#E63946;
  --sr-green:#2ECC71;
  --sr-text:#1F2937;       /* slate-800 */
  --sr-muted:#6B7280;      /* gray-500 */
  --sr-bg:#ffffff;
  --sr-card:#ffffff;
  --sr-shadow:0 8px 24px rgba(17,24,39,.08);
  --sr-radius:16px;
}

.prose-wrap{
  display:block;
  margin:0 auto;
  background:var(--sr-bg);
  /* desktop max width with comfortable line length */
  max-width: 860px;
  padding: 24px 24px 72px;
}

@media (max-width: 980px){
  .prose-wrap{ max-width: 720px; padding:20px 18px 64px; }
}
@media (max-width: 640px){
  .prose-wrap{ max-width: 100%; padding:16px 14px 56px; }
}

/* Typography */
.prose{
  color:var(--sr-text);
  font-family: Lato, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  letter-spacing: .005em;
}

.prose h1{
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 700;
  font-size: 2.1rem;
  line-height:1.2;
  margin: .25rem 0 1rem;
}
@media (max-width:640px){
  .prose h1{ font-size:1.7rem; }
}

.prose h2{
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.45rem;
  margin: 1.4rem 0 .5rem;
}

.prose h3{
  font-weight: 700;
  font-size: 1.1rem;
  margin: 1rem 0 .4rem;
}

.prose p{ margin:.6rem 0; }
.prose .muted{ color:var(--sr-muted); font-size:.95rem; }

.prose a{
  color:var(--sr-red);
  text-decoration: none;
  border-bottom: 1px solid rgba(230,57,70,.25);
}
.prose a:hover{ border-color: var(--sr-red); }

/* Lists */
.prose ul, .prose ol{ margin:.5rem 0 .9rem 1.2rem; }
.prose li{ margin:.25rem 0; }

/* Blockquotes */
.prose blockquote{
  margin: .8rem 0;
  padding: .8rem .9rem;
  border-left: 3px solid var(--sr-red);
  background: #fff6f7;
  border-radius: 8px;
  font-style: italic;
}

/* Horizontal rule */
.prose hr{
  border: none;
  height: 1px;
  background: #e5e7eb;
  margin: 1rem 0;
}

/* Buttons (unified with site CTAs) */
.btn{
  display:inline-block;
  background: var(--sr-red);
  color:#fff !important;
  font-weight:700;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: var(--sr-shadow);
  border: none;
}
.btn:hover{ filter: brightness(.95); transform: translateY(-1px); transition: all .12s ease; }
.btn + .btn{ margin-left: 8px; }
@media (max-width:520px){
  .btn{ display:block; text-align:center; width:100%; }
  .btn + .btn{ margin-left:0; margin-top:10px; }
}

/* Article hero */
.article-hero{
  margin: 0 0 14px;
  border-radius: var(--sr-radius);
  overflow:hidden;
  box-shadow: var(--sr-shadow);
}
.article-hero img{
  display:block;
  width:100%;
  height: clamp(180px, 38vw, 420px);
  object-fit: cover;
}

/* Thumbnails in cards */
.post-card .thumb{
  display:block;
  width:100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 10px;
  box-shadow: var(--sr-shadow);
}
@media (max-width:980px){
  .post-card .thumb{ height: 140px; }
}
@media (max-width:640px){
  .post-card .thumb{ height: 120px; }
}

/* Utility readability tweaks */
.prose-wrap, .prose{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-wrap: anywhere;
}

/* Build badge normalization (in case older text lingers) */
#sr-build-badge{
  position:fixed; right:12px; bottom:12px;
  background:#111; color:#fff; padding:8px 12px; border-radius:999px;
  font:600 12px/1 Lato, sans-serif; box-shadow: var(--sr-shadow);
  z-index: 50;
}

/* (your existing styles remain above) */

/* ===== Blog grid & cards (uniform layout) ===== */
.blog-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}
.blog-card .card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.blog-card .card-body {
  padding: 14px 16px 18px;
}
.blog-card h2 {
  font-size: 1.125rem;
  line-height: 1.35;
  margin: 0 0 8px;
}
.blog-card p {
  margin: 0;
  color: #555;
  font-size: 0.98rem;
}
@media (min-width: 1200px) {
  .blog-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
}

/* === Normalize blog card thumbnails & link styling === */
.post-card .post-card-media img,
.blog-card .card-img,
.post-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.post-card a, .post-card a:visited,
.blog-card a, .blog-card a:visited {
  color: inherit;
  text-decoration: none;
}
.post-card a:hover,
.blog-card a:hover {
  text-decoration: none;
}

/* ===== Article hero image ===== */
.hero-image img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.hero-image figcaption {
  font-size: 0.95rem;
  color: #666;
  margin-top: 8px;
}

/* Card thumbnails: consistent crop */
.blog-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;   /* prevents layout shift; requires modern browsers */
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
  background: #f6f6f6;
}

/* Article hero: full content width, capped height */
.post-hero-img {
  width: 100%;
  height: auto;
  max-height: 520px;      /* adjust to taste */
  object-fit: cover;
  display: block;
  border-radius: 12px;
  margin: 0 0 1rem 0;
  background: #f6f6f6;
}

@supports not (aspect-ratio: 1) {
  /* fallback for very old browsers */
  .blog-card-img { height: 220px; }
}

/* === Seen & Red: CTA block (namespaced) === */
.sr-cta {
  margin-top: 3rem;
  padding: 2rem;
  background: #fafafa;
  border-radius: 12px;
  text-align: center;
}
.sr-cta h2 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
}
.sr-cta .cta-sub {
  margin: 0 0 1rem 0;
  color: #555;
}
.sr-cta .cta-group {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary { background: #c62828; color: #fff; }
.btn-primary:hover { background: #b71c1c; }
.btn-accent { background: #333; color: #fff; }
.btn-accent:hover { background: #000; }

