/* ════════════════════════════════════════
   ÉCLAT — Blog Article Styles
   ════════════════════════════════════════ */

/* ── Post Hero ── */
.post-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    padding-bottom: clamp(40px, 7vw, 80px);
}
.post-hero--fade-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 40%, rgba(15,15,18,.6) 100%);
    pointer-events: none;
}
.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.18) 0%,
        rgba(0,0,0,.25) 40%,
        rgba(0,0,0,.72) 100%
    );
}
.post-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 clamp(20px, 6vw, 60px);
    width: 100%;
}
.post-back {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-bottom: 20px;
    transition: color .2s;
}
.post-back:hover { color: #fff; }
.post-hero-content .blog-tag {
    color: rgba(255,255,255,.85);
    display: block;
    margin-bottom: 14px;
}
.post-hero-content h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 16px rgba(0,0,0,.3);
}
.post-meta {
    font-size: .72rem;
    color: rgba(255,255,255,.6);
    letter-spacing: .08em;
    text-transform: uppercase;
}

/* ── Post Body ── */
.post-body {
    max-width: 760px !important;
    padding-top: clamp(48px, 8vw, 80px);
    padding-bottom: clamp(64px, 10vw, 120px);
}
.post-lead {
    font-size: 1.12rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2a2e34;
    margin-bottom: 40px;
    border-left: 3px solid #7a9c99;
    padding-left: 20px;
}
.post-body h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 400;
    color: #1a1e24;
    margin: 40px 0 16px;
    line-height: 1.3;
}
.post-body p {
    font-size: .95rem;
    color: #4e5560;
    line-height: 1.85;
    margin-bottom: 18px;
}
.post-body ul,
.post-body ol {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
}
.post-body ul li,
.post-body ol li {
    font-size: .93rem;
    color: #4e5560;
    line-height: 1.75;
    padding: 6px 0 6px 24px;
    position: relative;
}
.post-body ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #7a9c99;
    font-size: .6rem;
    top: 10px;
}
.post-body ol {
    counter-reset: item;
}
.post-body ol li {
    counter-increment: item;
}
.post-body ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: #7a9c99;
    font-weight: 600;
    font-size: .82rem;
    top: 7px;
}
.post-body strong { color: #1a1e24; }

/* ── Highlight quote ── */
.post-highlight {
    background: linear-gradient(135deg, #f3f8f7 0%, #f0eef7 100%);
    border-left: 4px solid #7a9c99;
    border-radius: 0 12px 12px 0;
    padding: 28px 32px;
    margin: 40px 0;
}
.post-highlight p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #1a1e24;
    line-height: 1.6;
    margin-bottom: 12px;
}
.post-highlight span {
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #7a9c99;
    font-weight: 600;
}

/* ── CTA block ── */
.post-cta {
    background: linear-gradient(
        135deg,
        #7BA89C  0%,
        #90B5AD 35%,
        #A8B4BE 58%,
        #B8B2C8 78%,
        #C1B8CC 100%
    );
    border-radius: 20px;
    padding: clamp(36px, 6vw, 60px);
    text-align: center;
    margin: 56px 0 40px;
}
.post-cta h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 12px;
}
.post-cta p {
    color: rgba(255,255,255,.88);
    font-size: .95rem;
    margin-bottom: 28px;
    line-height: 1.6;
}
.post-cta .btn--primary {
    background: #fff;
    color: #4e7f7c;
    border-color: #fff;
}
.post-cta .btn--primary:hover {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.8);
}

/* ── Related ── */
.post-related {
    padding-top: 40px;
    border-top: 1px solid rgba(122,156,153,.2);
}
.post-related h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #1a1e24;
    margin-bottom: 16px;
}
.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.related-links a {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #7a9c99;
    border: 1.5px solid rgba(122,156,153,.35);
    padding: 8px 18px;
    border-radius: 50px;
    transition: all .22s;
}
.related-links a:hover {
    background: #7a9c99;
    color: #fff;
    border-color: #7a9c99;
}
