/* Hero / Featured Image */
.post-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.post-hero-content {
    position: absolute;
    bottom: 20px;
    inset-inline-start: 20px;
    color: #fff;
    z-index: 2;
}

.post-hero h1 {
    font-weight: 700;
    font-size: 2rem;
}

/* Post Content */
.post-content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
}

.post-content h2 {
    margin-top: 1.5rem;
    font-weight: 600;
}


@media (max-width: 576px) {
    .sidebar {
        margin: 1.7rem 0;
    }
}