/* =========================================================
   ROAD USA V4 — composant propre et autonome
   ========================================================= */

.road-v4 {
    max-width: 1500px;
    margin: 0 auto;
    padding: 48px 5vw 56px;
}

.road-v4__inner {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 46px;
    align-items: start;
}

.road-v4__copy {
    max-width: 540px;
}

.road-v4__kicker {
    margin: 0 0 24px;
    color: #d2a449;
    font-size: 14px;
    line-height: 1;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.road-v4__title {
    margin: 0;
    color: #f7f2e9;
    font-family: var(--font-serif, Georgia, serif);
    font-size: clamp(70px, 7vw, 112px);
    font-weight: 400;
    line-height: .86;
    letter-spacing: -.045em;
}

.road-v4__line {
    width: 82px;
    height: 1px;
    margin: 30px 0;
    background: linear-gradient(90deg, #d2a449, rgba(210,164,73,0));
}

.road-v4__text {
    max-width: 520px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 20px;
    line-height: 1.65;
}

.road-v4__right {
    max-width: 780px;
    justify-self: end;
    width: 100%;
}

.road-v4__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.road-v4__card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    min-height: 148px;
    padding: 18px 28px 18px 18px;
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(28,28,28,.97), rgba(9,9,9,.98));
    border: 1px solid rgba(210,164,73,.30);
    box-shadow: 0 22px 60px rgba(0,0,0,.36);
    overflow: hidden;
}

.road-v4__media {
    width: 132px;
    height: 104px;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #101010;
}

.road-v4__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.road-v4__body {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 4px 18px;
    align-items: start;
}

.road-v4__body span {
    grid-column: 1;
    grid-row: 1 / span 2;
    color: #d2a449;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 44px;
    line-height: 1;
    white-space: nowrap;
}

.road-v4__body strong {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    color: #f7f2e9;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.12;
}

.road-v4__body p {
    grid-column: 2;
    grid-row: 2;
    max-width: 430px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 15.5px;
    line-height: 1.5;
}

.road-v4__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
    align-items: flex-start;
}

.road-v4__btn {
    width: 320px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 13px;
    font-weight: 700;
}

.road-v4__btn--primary {
    color: #090909;
    background: linear-gradient(135deg, #d2a449, #f3c76b, #b98224);
}

.road-v4__btn--ghost {
    color: #d2a449;
    border: 1px solid rgba(210,164,73,.58);
    background: rgba(0,0,0,.18);
}

@media (max-width: 1180px) {
    .road-v4__inner {
        grid-template-columns: 1fr;
    }

    .road-v4__right {
        max-width: none;
        justify-self: stretch;
    }
}

@media (max-width: 760px) {
    .road-v4 {
        padding: 52px 22px;
    }

    .road-v4__card {
        grid-template-columns: 1fr;
    }

    .road-v4__media {
        width: 100%;
        height: 180px;
    }

    .road-v4__body {
        grid-template-columns: 1fr;
    }

    .road-v4__body span,
    .road-v4__body strong,
    .road-v4__body p {
        grid-column: 1;
        grid-row: auto;
    }

    .road-v4__btn {
        width: 100%;
    }
}

/* ROAD V4 — boutons premium côte à côte */

.road-v4__actions {
    flex-direction: row;
    gap: 14px;
    margin-top: 26px;
    align-items: center;
    flex-wrap: wrap;
}

.road-v4__btn {
    width: auto;
    min-width: 230px;
    height: 50px;
    padding: 0 24px;
    font-size: 11.5px;
    line-height: 1;
    letter-spacing: .13em;
    white-space: nowrap;
}

.road-v4__btn--ghost {
    min-width: 250px;
}

@media (max-width: 760px) {
    .road-v4__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .road-v4__btn,
    .road-v4__btn--ghost {
        width: 100%;
        min-width: 0;
    }
}
