.post-hero {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    line-height: 0;
}

.post-hero img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ---- CONTENITORE CORPO ARTICOLO ---- */
.post-body-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 50px 40px 80px;
}

/* ---- HEADING: titolo + breadcrumbs ---- */
.post-heading {
    margin-bottom: 40px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--bg-grey);
}

.post-heading h1 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 46px);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 14px;
}

.breadcrumbs {
    font-size: 13px;
    color: var(--text-mid);
}

.breadcrumbs a {
    color: var(--blue-mid);
    font-weight: 700;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--blue-section);
}

/* ---- TESTO ARTICOLO ---- */
.post-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.post-text-content p {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.85;
}

.post-text-content a {
    color: var(--blue-mid);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.post-text-content a:hover {
    color: var(--blue-section);
}

/* Paragrafo in evidenza */
.testo-evidenza {
    background: transparent;
    border-left: none;
    border-radius: 0;
    padding: 0;
    font-size: 16px !important;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-dark) !important;
    line-height: 1.85 !important;
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--green);
}

/* ---- NAVIGAZIONE FINE ARTICOLO ---- */
.post-footer-nav {
    margin-top: 60px;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    flex-wrap: wrap; 
}

.nav-divider {
    width: 100%;
    height: 1px;
    background: var(--bg-grey);
    margin-bottom: 24px;
}
.next-post-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-mid);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: gap 0.2s, color 0.2s;
}

.next-post-link:hover {
    color: var(--blue-section);
    gap: 16px;
}

.next-post-link i {
    font-size: 12px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .post-hero img {
        height: 280px;
        width: 1000%;
        object-fit: fill;
    }

    .post-body-container {
        padding: 36px 24px 60px;
    }
}