/* Soccer page: show photo next to the timeline cards (desktop), below on small screens */

.timeline-column--soccer .soccer-layout{
    display: flex;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
}

.timeline-column--soccer .soccer-content{
    flex: 1 1 560px;
    min-width: 320px;
}

/* Keep the photo aligned to the same right edge as the cards container */
.timeline-column--soccer .soccer-image{
    flex: 0 0 340px;
    max-width: 340px;
    margin-left: auto;
}

.timeline-column--soccer .soccer-image img{
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px; /* keep the same rounded look as CV */
    border: none;
    box-shadow: none;
    object-fit: cover;
}

/* Smaller screens: image goes below the cards */
@media (max-width: 1100px){
    .timeline-column--soccer .soccer-layout{
        flex-direction: column;
        gap: 20px;
    }

    .timeline-column--soccer .soccer-image{
        max-width: 520px;
        width: 100%;
        margin-left: 0;
    }
}
