.journey-results {
    width: min(100%, 1060px);
    margin: 0 auto clamp(34px, 4.8vw, 54px);
    padding: clamp(26px, 3.4vw, 40px) clamp(26px, 3.4vw, 42px) clamp(28px, 3.6vw, 42px);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.78)),
        repeating-linear-gradient(90deg, rgba(174, 222, 253, 0.22) 0 2px, rgba(255, 255, 255, 0.82) 2px 10px);
    box-shadow:
        0 26px 72px rgba(6, 74, 167, 0.11),
        0 14px 42px rgba(71, 131, 207, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.journey-results::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        repeating-linear-gradient(90deg, rgba(124, 204, 251, 0.28) 0 2px, rgba(255, 255, 255, 0.42) 2px 10px);
    opacity: 0.46;
    -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 26%, #000 62%, rgba(0, 0, 0, 0.14) 100%);
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.3) 26%, #000 62%, rgba(0, 0, 0, 0.14) 100%);
    pointer-events: none;
}

.journey-results > * {
    position: relative;
    z-index: 1;
}

.journey-results__photos {
    margin-top: clamp(18px, 2.6vw, 26px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 300px));
    justify-content: center;
    gap: clamp(12px, 1.4vw, 16px);
}

.journey-results__photos figure,
.journey-results__photo {
    margin: 0;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 360 / 460;
}

.journey-results__photos img,
.journey-results__photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    background: #eef1f5;
    box-shadow: 0 10px 24px rgba(52, 60, 82, 0.08);
}

.journey-results__photos figcaption,
.journey-results__photo figcaption {
    margin-top: 9px;
    color: #064aa7;
    font-size: clamp(14px, 1.15vw, 16px);
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.journey-results__stats {
    min-height: 86px;
    margin: 0 auto;
    padding: clamp(18px, 2.4vw, 28px) 10% 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    background: transparent;
    text-align: center;
}

.journey-results__stats p {
    margin: 0;
    flex: 0 1 220px;
}

.journey-results__stats strong {
    display: block;
    color: var(--journey-accent) !important;
    font-size: clamp(36px, 4.6vw, 52px);
    font-weight: 900;
    line-height: 0.9;
}

.journey-results__stats span {
    display: block;
    margin-top: 6px;
    color: var(--journey-text);
    font-size: clamp(14px, 1.25vw, 17px);
    font-weight: 700;
}

@media (max-width: 767px) {
    .journey-results {
        width: min(100%, 430px);
        padding: 22px 14px 26px;
    }

    .journey-results__photos {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .journey-results__photos img {
        max-width: min(100%, 300px);
    }

    .journey-results__stats {
        padding-top: 20px;
    }
}
