/* ── Côté gauche : chèque ── */
.cheque-left {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--col-border);
    width: 50%;
}

.cheque-img-wrap {
    flex: 1;
    overflow: hidden;
    background: #f0ede8;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cheque-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.cheque-left:hover .cheque-img-wrap img {
    transform: scale(1.03);
}


.cheque-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}



.cheque-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    margin: 30px 0;
}

.cheque-left,
.cheque-right {
    padding: 10px;
    border: 2px dashed #1063a1;
    border-radius: 9px;
    height: 320px;

}

iframe {
    margin-bottom: 0 !important;
    height: 300px;
}

@media (max-width: 1024px) {
    .cheque-wrapper {
        flex-direction: column;
    }

    .cheque-left,
    .cheque-right {
        width: 45vw;
        height: auto;
        margin: 10px;
    }
}

/* ── Mobile (max 600px) ── */
@media (max-width: 600px) {
    .cheque-wrapper {
        flex-direction: column;
    }

    .cheque-left,
    .cheque-right {
        width: 70vw;
        height: auto;
        margin: 10px;
    }

    .cheque-right {
        position: relative;
        padding-bottom: 56.25%;
        /* ratio 16:9 */
        height: 0;
    }

    .cheque-right iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}