/* Cadre image + note - texte à gauche (1/3), image à droite (2/3) */
.info-frame-card {
    display: flex;
    flex-wrap: wrap;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    margin: 1.5rem 0;
    transition: all 0.35s ease;
}
.info-frame-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
@media (min-width: 768px) {
    .info-frame-card { flex-wrap: nowrap; }
}
.info-frame-note {
    position: relative;
    flex: 1 1 100%;
    padding: 2rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
@media (min-width: 768px) {
    .info-frame-note {
        flex: 0 0 34%;
        order: 1;
        padding: 2rem 2.25rem;
    }
}
.info-frame-note span,
.info-frame-note p {
    display: block;
    color: #334155;
    line-height: 1.85;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.info-frame-note p:last-child,
.info-frame-note span:last-child { margin-bottom: 0; }
.info-frame-note strong { color: #1e293b; font-size: 1.1rem; }
.info-frame-img {
    position: relative;
    flex: 0 0 100%;
    min-height: 240px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .info-frame-img {
        flex: 0 0 66%;
        order: 2;
        min-height: 300px;
    }
}
.info-frame-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 78, 90, 0.15) 0%, transparent 50%, rgba(46, 94, 170, 0.1) 100%);
    pointer-events: none;
}
.info-frame-img img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}
@media (min-width: 768px) {
    .info-frame-img img { min-height: 300px; }
}
