/* =========================================================================
   PAGINA — Articolo e case study
   ========================================================================= */

.ex-case__facts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ex-space-lg);
    padding: var(--ex-space-xl);
    background: var(--ex-surface);
    border-radius: var(--ex-radius-lg);
}

@media (min-width: 900px) {
    .ex-case__facts {
        grid-template-columns: repeat(5, 1fr);
    }
}

.ex-case__fact dd {
    margin: 0.35rem 0 0;
    font-weight: 700;
    color: var(--ex-cream);
}

.ex-case__cover {
    margin-bottom: 0;
}

.ex-case__cover img {
    width: 100%;
    border-radius: var(--ex-radius-lg);
}

.ex-case__block {
    padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    background: var(--ex-surface);
    border-radius: var(--ex-radius-lg);
}

.ex-case__block .ex-h3 {
    margin-bottom: var(--ex-space-md);
}

.ex-case__block p {
    color: var(--ex-text-muted);
    line-height: 1.75;
}
