.guide-figure {
    margin: 1.5rem 0;
}
.guide-figure img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
}
.guide-figure figcaption {
    margin-top: .4rem;
    font-size: .85rem;
    color: #777;
    text-align: center;
}
.guide-figure--full {
    width: 100%;
}
.guide-figure--center {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.guide-figure--left,
.guide-figure--right {
    max-width: 50%;
}
.guide-figure--left {
    float: left;
    margin-right: 1.5rem;
}
.guide-figure--right {
    float: right;
    margin-left: 1.5rem;
}
@media (max-width: 639px) {
    .guide-figure--left,
    .guide-figure--right {
        float: none;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ============================================================
   Componenti editoriali (shortcode: callout, stats, compare,
   quote, cta). Coerenti con il brand: rosso #ff250d, grigio #a7aaaa.
   ============================================================ */

/* --- Callout / box "Punti chiave" --- */
.guide-callout {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: #faf7f6;
    border: 1px solid #eee;
    border-left: 4px solid #ff250d;
    border-radius: 4px;
}
.guide-callout__title {
    margin: 0 0 .6rem;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #ff250d;
}
.guide-callout__body > :last-child {
    margin-bottom: 0;
}

/* --- Numeri-statistica --- */
.guide-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
}
.guide-stat {
    flex: 1 1 140px;
    padding: 1.25rem 1rem;
    text-align: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
}
.guide-stat__num {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    font-weight: 700;
    color: #ff250d;
}
.guide-stat__label {
    display: block;
    margin-top: .35rem;
    font-size: .85rem;
    color: #777;
}

/* --- Confronto A/B --- */
.guide-compare {
    margin: 2rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.guide-compare__col {
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-top: 3px solid #a7aaaa;
    border-radius: 4px;
}
.guide-compare__col:last-child {
    border-top-color: #ff250d;
}
.guide-compare__title {
    margin: 0 0 .75rem;
    font-weight: 700;
}
.guide-compare__body > :last-child {
    margin-bottom: 0;
}
@media (max-width: 639px) {
    .guide-compare {
        grid-template-columns: 1fr;
    }
}

/* --- Pull-quote --- */
.guide-quote {
    margin: 2rem 0;
    padding: .25rem 0 .25rem 1.5rem;
    border-left: 4px solid #ff250d;
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #333;
}
.guide-quote p {
    margin: 0;
}
.guide-quote__cite {
    margin-top: .5rem;
    font-size: .85rem;
    font-style: normal;
    color: #777;
}

/* --- CTA --- */
.guide-cta-wrap {
    margin: 2.5rem 0;
    text-align: center;
}
.guide-cta {
    display: inline-block;
    padding: 15px 30px;
    background: #ff250d;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 6px;
    transition: background .15s ease;
}
.guide-cta:hover,
.guide-cta:focus {
    background: #ee230b;
    color: #fff;
    text-decoration: none;
}

/* ============================================================
   Indice: barra filtro per categoria + chip categoria sulle card
   ============================================================ */
.guide-filter {
    margin-bottom: 2rem;
}
.guide-card-cat {
    display: inline-block;
    margin-bottom: .35rem;
    padding: .15rem .6rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #ff250d;
    background: #faf0ef;
    border-radius: 3px;
}
