.janin-approche-section {
    width: 100%;
    background: #ffffff;
    padding: 96px 0;
}

.janin-approche-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.janin-approche-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.janin-approche-grid.is-reversed .janin-approche-content {
    order: 2;
}

.janin-approche-grid.is-reversed .janin-approche-image-wrap {
    order: 1;
}

.janin-approche-content {
    max-width: 560px;
}

.janin-approche-eyebrow {
    margin: 0 0 12px;
    color: #e30613;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.janin-approche-title {
    margin: 0 0 24px;
    color: #030712;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.janin-approche-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
}

.janin-approche-text p {
    margin: 0;
}

.janin-approche-image-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: #f3f4f6;
}

.janin-approche-image-wrap img,
.janin-approche-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .janin-approche-section {
        padding: 72px 0;
    }

    .janin-approche-grid {
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .janin-approche-section {
        padding: 56px 0;
    }

    .janin-approche-container {
        padding: 0 20px;
    }

    .janin-approche-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .janin-approche-grid.is-reversed .janin-approche-content,
    .janin-approche-grid.is-reversed .janin-approche-image-wrap {
        order: initial;
    }

    .janin-approche-content {
        max-width: 100%;
    }

    .janin-approche-title {
        font-size: 32px;
    }

    .janin-approche-text {
        font-size: 16px;
        line-height: 1.6;
    }
}