
/* ── BLOG HERO ── */
.blog-hero {
position: relative;
height: clamp(340px, 55vw, 640px);
overflow: hidden;
}

.blog-hero-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
/* placeholder gradient — swap for real <img> */
background: linear-gradient(160deg, #1e3a28 0%, #0d1f16 60%, #050e09 100%);
}

.blog-hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to bottom, rgba(0,0,0,.1) 30%, rgba(0,0,0,.72) 100%);
}

.blog-hero-meta {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: clamp(24px, 5vw, 52px) var(--px) clamp(32px, 6vw, 60px);
max-width: 860px;
}

.blog-hero-tag {
display: inline-block;
font-size: 10px;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--red);
background: rgba(255,255,255,.1);
border: 1px solid rgba(192,57,43,.5);
border-radius: 999px;
padding: 4px 12px;
margin-bottom: 14px;
font-weight: 500;
}
@media (max-width: 768px) {
    .blog-hero-tag {
        font-size: 8px;
        letter-spacing: 1.5px;
        padding: 3px 10px;
    }
}

.blog-hero-title {
font-family: var(--serif);
font-size: clamp(26px, 5vw, 50px);
color: var(--white);
line-height: 1.12;
margin-bottom: 16px;
font-weight: 400;
}

@media (max-width: 768px) {
    .blog-hero-title {
    font-family: var(--serif);
    font-size: clamp(15px, 5vw, 50px);
    }
}

.blog-hero-byline {
font-size: 14px;
color: rgba(255,255,255,.6);
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}

@media (max-width: 768px) {
    .blog-hero-byline {
        font-size: 10px;
        gap: 8px;
    }
}

.blog-hero-byline strong {
color: rgba(255,255,255,.85);
font-weight: 500;
}

.byline-dot {
width: 3px;
height: 3px;
border-radius: 50%;
background: rgba(255,255,255,.35);
flex-shrink: 0;
}

/* ── ARTICLE LAYOUT ── */
.article-wrap {
display: grid;
grid-template-columns: 1fr;
gap: 0;
}

@media(min-width: 1024px) {
.article-wrap {
    grid-template-columns: 1fr 56px;
}
}

.article-body {
max-width: 760px;
margin: 0 auto;
padding: 52px var(--px) 80px;
width: 100%;
}

/* ── PROSE ── */
.prose p {
font-size: 17px;
line-height: 1.85;
color: var(--gray-700);
margin-bottom: 24px;
}

.prose p strong {
color: var(--text);
font-weight: 500;
}

.prose p:first-child::first-letter {
font-family: var(--serif);
font-size: 4.2em;
line-height: .75;
float: left;
margin: 6px 10px 0 0;
color: var(--text);
}

/* ── INLINE IMAGES ── */
.article-img-wrap {
margin: 36px -4px 36px;
border-radius: var(--radius-lg);
overflow: hidden;
}

@media(min-width: 640px) {
.article-img-wrap {
    margin: 40px -20px 40px;
}
}

.article-img-wrap img,
.article-img-ph {
width: 100%;
height: clamp(220px, 40vw, 420px);
object-fit: cover;
display: block;
border-radius: var(--radius-lg);
}

.article-img-caption {
font-size: 13px;
color: var(--gray-400);
margin-top: 10px;
padding: 0 4px;
line-height: 1.5;
}

/* ── TWO-UP IMAGES ── */
.article-img-duo {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
margin: 36px 0;
}

.article-img-duo .article-img-ph {
height: clamp(160px, 28vw, 300px);
}

/* ── BLOCKQUOTE ── */
.article-blockquote {
margin: 44px 0;
padding: 32px 36px;
border-left: 4px solid var(--red);
background: var(--gray-100);
border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
position: relative;
}

.article-blockquote::before {
content: '\201C';
font-family: var(--serif);
font-size: 72px;
color: var(--red);
line-height: .6;
position: absolute;
top: 20px;
left: 28px;
opacity: .25;
}

.article-blockquote p {
font-family: var(--serif);
font-size: clamp(17px, 2.5vw, 21px) !important;
line-height: 1.6 !important;
color: var(--text) !important;
margin-bottom: 12px !important;
position: relative;
z-index: 1;
}

.article-blockquote cite {
font-size: 14px;
color: var(--gray-400);
font-style: normal;
}

.article-blockquote cite strong {
color: var(--gray-700);
font-weight: 500;
}

/* ── PULL STAT ── */
.article-pull-stat {
margin: 48px 0;
padding: 36px 32px;
background: #141210;
border-radius: var(--radius-lg);
display: grid;
grid-template-columns: auto 1fr;
gap: 24px;
align-items: center;
}

.pull-stat-num {
font-family: var(--serif);
font-size: clamp(42px, 8vw, 64px);
color: var(--red);
line-height: 1;
white-space: nowrap;
}

.pull-stat-text {
font-size: 16px;
color: rgba(255,255,255,.7);
line-height: 1.6;
}

.pull-stat-text strong {
display: block;
color: var(--white);
font-size: 18px;
margin-bottom: 4px;
font-weight: 500;
}

/* ── SECTION HEADING WITHIN ARTICLE ── */
.prose h3 {
font-family: var(--serif);
font-size: clamp(20px, 3vw, 26px);
font-weight: 400;
color: var(--text);
line-height: 1.25;
margin: 44px 0 16px;
}

/* ── TAG ROW ── */
.article-tags {
display: flex;
gap: 8px;
flex-wrap: wrap;
margin-top: 48px;
padding-top: 28px;
border-top: 1px solid var(--gray-200);
}

.article-tag-chip {
font-size: 12px;
color: var(--gray-700);
border: 1px solid var(--gray-200);
border-radius: 999px;
padding: 5px 14px;
text-decoration: none;
transition: border-color .15s, color .15s;
}

.article-tag-chip:hover {
border-color: var(--gray-700);
color: var(--text);
}

/* ── SHARE ROW (mobile, below article) ── */
.article-share-row {
display: flex;
align-items: center;
gap: 10px;
margin-top: 24px;
}

.article-share-label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--gray-400);
}

@media(min-width: 1024px) {
.article-share-row {
    display: none;
}
}

/* ── SOCIAL ASIDE (reuse main.css .social-aside) ── */

/* ── FEATURED STORIES ── */
.featured-section {
padding: 72px var(--px);
background: var(--gray-100);
border-top: 1px solid var(--gray-200);
}

.featured-grid {
display: grid;
grid-template-columns: 1fr;
gap: 16px;
margin-top: 32px;
}

@media(min-width: 640px) {
.featured-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media(min-width: 1024px) {
.featured-grid {
    grid-template-columns: repeat(3, 1fr);
}
}

.feat-card {
position: relative;
border-radius: var(--radius-lg);
overflow: hidden;
cursor: pointer;
aspect-ratio: 4/3;
}

.feat-card-img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform .5s cubic-bezier(.4,0,.2,1);
}

/* placeholder gradients */
.feat-ph1 { background: linear-gradient(155deg, #3d5a3e, #1e2e1f); }
.feat-ph2 { background: linear-gradient(155deg, #3a2d4a, #1e1528); }
.feat-ph3 { background: linear-gradient(155deg, #4a3728, #261c12); }
.feat-ph4 { background: linear-gradient(155deg, #2c3e4a, #141e28); }
.feat-ph5 { background: linear-gradient(155deg, #4a453a, #261f14); }
.feat-ph6 { background: linear-gradient(155deg, #2e4852, #14222a); }

.feat-card:hover .feat-card-img {
transform: scale(1.06);
}

/* always-visible gradient bar at bottom */
.feat-card-base {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 36px 20px 18px;
background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
pointer-events: none;
}

.feat-card-tag {
font-size: 9px;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--red);
font-weight: 500;
margin-bottom: 5px;
}

.feat-card-title {
font-size: 14px;
color: var(--white);
font-weight: 500;
line-height: 1.4;
}

/* hover overlay */
.feat-overlay {
position: absolute;
inset: 0;
background: rgba(20,18,16,.88);
opacity: 0;
transition: opacity .3s ease;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 24px 20px;
pointer-events: none;
}

.feat-card:hover .feat-overlay {
opacity: 1;
pointer-events: auto;
}

.feat-overlay-tag {
font-size: 9px;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--red);
font-weight: 500;
margin-bottom: 7px;
}

.feat-overlay-title {
font-family: var(--serif);
font-size: 17px;
color: var(--white);
line-height: 1.35;
margin-bottom: 10px;
}

.feat-overlay-desc {
font-size: 13px;
color: rgba(255,255,255,.65);
line-height: 1.55;
margin-bottom: 16px;
}
