.post-hero-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    background: linear-gradient(135deg, rgba(223, 236, 239, 0.6), rgba(248, 244, 236, 0.8));
    padding: 3rem;
    border-radius: 32px;
    border: 1px solid rgba(92, 136, 124, 0.18);
    box-shadow: 0 34px 64px -40px rgba(47, 74, 67, 0.45);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.post-hero-section::before {
    content: "";
    position: absolute;
    inset: -20% 40% 60% -20%;
    background: radial-gradient(circle at top left, rgba(217, 122, 74, 0.35), transparent 60%);
    pointer-events: none;
}

.post-hero-section::after {
    content: "";
    position: absolute;
    inset: 50% -20% -30% 40%;
    background: radial-gradient(circle at bottom right, rgba(92, 136, 124, 0.25), transparent 55%);
    pointer-events: none;
}

.post-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.post-hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: 2.8rem;
    color: #2f4a43;
    margin: 0;
}

.post-hero-kicker {
    font-size: 0.75rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #5d8a7e;
    margin: 0;
}

.post-hero-content p.lead {
    color: #4f7068;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.7;
}

.post-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: #5d8a7e;
}

.post-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.post-hero-tags span {
    background: rgba(232, 243, 239, 0.8);
    color: #4f7068;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.post-hero-image {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 56px -32px rgba(47, 74, 67, 0.55);
    background: rgba(255, 255, 255, 0.35);
    aspect-ratio: 3 / 2;
    display: flex;
}

.post-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post-body-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 32px 70px -40px rgba(68, 111, 98, 0.35);
    border: 1px solid rgba(215, 232, 226, 0.8);
    line-height: 1.8;
    color: #344e48;
}

.post-body-wrapper p {
    margin-bottom: 1.4rem;
}

.post-body-wrapper h2,
.post-body-wrapper h3,
.post-body-wrapper h4 {
    font-family: "Playfair Display", serif;
    color: #2f4a43;
}

.related-section {
    margin-top: 4rem;
}

.related-section h2 {
    font-family: "Playfair Display", serif;
    color: #2f4a43;
    margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
    .post-hero-section {
        padding: 2.25rem;
        gap: 2rem;
    }

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