.prochaines-sorties-page {
    width: min(1500px, calc(100% - 30px));
    margin: 0 auto;
    padding: 35px 0 60px;
}

.sorties-header {
    margin-bottom: 35px;
}

.sorties-header h1 {
    margin: 0;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

.sorties-header p {
    margin: 8px 0 0;
    color: #8b949e;
    font-size: 15px;
}

.sorties-section {
    margin-bottom: 50px;
}

.sorties-section-heading {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.section-kicker {
    display: block;
    margin-bottom: 5px;
    color: #58a6ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.sorties-section-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: 23px;
    font-weight: 650;
}

.section-count {
    color: #8b949e;
    font-size: 14px;
}

.sorties-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sortie-card {
    min-width: 0;
    overflow: hidden;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.sortie-card:hover {
    transform: translateY(-3px);
    border-color: #484f58;
    background: #1b2129;
}

.sortie-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.sortie-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #0d1117;
}

.sortie-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.sortie-card:hover .sortie-image {
    transform: scale(1.025);
}

.sortie-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #6e7681;
}

.sortie-placeholder i {
    font-size: 28px;
}

.sortie-placeholder span {
    font-size: 12px;
}

.sortie-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border-radius: 7px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.sortie-badge.cinema {
    background: rgba(31, 111, 235, 0.9);
}

.sortie-badge.streaming {
    background: rgba(137, 87, 229, 0.9);
}

.sortie-content {
    padding: 13px;
}

.sortie-content h3 {
    margin: 0 0 11px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.3;
}

.sortie-date,
.sortie-presence,
.sortie-non-vu {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 6px 0 0;
    color: #8b949e;
    font-size: 12px;
    line-height: 1.4;
}

.sortie-date i,
.sortie-presence i,
.sortie-non-vu i {
    width: 14px;
    margin-top: 2px;
    text-align: center;
}

.sortie-presence {
    color: #c9d1d9;
}

.sortie-non-vu {
    color: #58a6ff;
    font-weight: 600;
}

.sorties-empty {
    min-height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 25px;
    background: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    color: #8b949e;
    text-align: center;
}

.sorties-empty i {
    color: #58a6ff;
    font-size: 25px;
}

.sorties-empty p {
    margin: 0;
}

@media (min-width: 600px) {
    .sorties-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .sorties-section-heading {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

@media (min-width: 900px) {
    .prochaines-sorties-page {
        padding-top: 45px;
    }

    .sorties-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .sorties-header h1 {
        font-size: 38px;
    }

    .sorties-section-heading h2 {
        font-size: 26px;
    }
}

@media (min-width: 1200px) {
    .sorties-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}