/* ============================================================
 * Video testimonianza cliente (sezione Testimonianze)
 * Video verticale: dimensione contenuta, testo che va a capo.
 * ============================================================ */
.video-testimonianza-wrap {
    max-width: 860px;
    margin: 0 auto 3.5rem;
    text-align: center;
}
.video-testimonianza-card {
    display: block;
    width: 100%;
    max-width: 300px;          /* ← GRANDEZZA del video: alza/abbassa questo numero */
    margin: 0 auto;
    padding: 12px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(201, 169, 97, 0.30); /* sottile bordo oro */
}
.video-testimonianza {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    background: #000;
}
.video-testimonianza-caption {
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}
.video-testimonianza-caption i {
    color: #c9a961; /* oro brand */
    margin-top: 2px;
    flex-shrink: 0;
}
@media (max-width: 575.98px) {
    .video-testimonianza-card { padding: 8px; border-radius: 18px; }
}