/* ═══════════════════════════════════════════════════════
   GLOBAL MEN'S GROUP - BLOG POST STYLES
   ═══════════════════════════════════════════════════════ */

/* ── Post Hero ── */
.post-hero {
    position: relative;
    padding: 160px 0 0;
    background: var(--navy);
}

.post-hero > .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 48px;
}

.post-hero-image {
    width: 100%;
    max-height: 420px;
    overflow: hidden;
    border-radius: 12px;
}

.post-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}

.post-hero .container {
    position: relative;
    z-index: 1;
}

.post-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-hero .blog-tag {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
}

.post-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: 1px;
    max-width: 800px;
}

.post-hero .blog-meta {
    margin-top: 20px;
    margin-bottom: 0;
}

.post-hero .blog-date {
    color: var(--gray-200);
}

.post-hero .blog-category {
    background: rgba(200, 168, 78, 0.2);
    color: var(--gold-light);
}

/* ── Post Content ── */
.post-content {
    padding: 64px 0 80px;
    background: var(--white);
}

.post-body {
    max-width: 760px;
    margin: 0 auto;
}

.post-body h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 48px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.post-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 36px;
    margin-bottom: 16px;
}

.post-body p {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 20px;
}

.post-body blockquote {
    border-left: 4px solid var(--gold);
    padding: 24px 32px;
    margin: 36px 0;
    background: var(--gray-50);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.post-body blockquote p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0;
    line-height: 1.8;
}

.post-body ul, .post-body ol {
    margin: 20px 0 20px 24px;
    list-style: disc;
}

.post-body ol {
    list-style: decimal;
}

.post-body li {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 10px;
}

.post-body strong {
    color: var(--navy);
}

.post-closing {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--gray-100);
    text-align: center;
}

.post-closing p {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 1px;
}

.post-closing .hashtags {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.post-closing .hashtags span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
}

/* ── Back to Blog ── */
.post-nav {
    padding: 40px 0;
    background: var(--off-white);
    text-align: center;
}

.post-nav a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.post-nav a:hover {
    color: var(--gold-dark);
    gap: 14px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .post-hero {
        padding: 130px 0 0;
    }

    .post-hero > .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .post-hero-image img {
        height: 300px;
    }

    .post-body {
        padding: 0 8px;
    }

    .post-body h2 {
        font-size: 1.3rem;
    }

    .post-body p, .post-body li {
        font-size: 1rem;
    }

    .post-body blockquote {
        padding: 20px 24px;
    }
}

@media (max-width: 480px) {
    .post-hero {
        padding: 110px 0 0;
    }

    .post-hero h1 {
        font-size: 1.3rem;
    }

    .post-hero-image img {
        height: 220px;
    }

    .post-content {
        padding: 40px 0 60px;
    }
}
