/* ========================================
   album.css
   تنسيقات ألبومات الصور والفيديو (المشترك بين program و university)
   ======================================== */

.album-section {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    margin-bottom: 18px;
    padding: 18px;
}

.album-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
}

.album-title i {
    color: var(--blue);
    cursor: pointer;
}

.slider {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 4px 4px 12px;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.album-media {
    min-width: 260px;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 3;
    cursor: pointer;
}

.slider-btn.prev {
    left: 4px;
}

.slider-btn.next {
    right: 4px;
}

.campus-panel {
    display: none;
}

.album-section.open .campus-panel {
    display: block;
}

@media (max-width: 760px) {
    .album-media {
        min-width: 200px;
        height: 130px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
    }
}