/* Alumni Executive Board Slider Styles */

.atl-eb-slider-app {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.atl-eb-slider-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atl-eb-slider-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.atl-eb-slider-viewport {
    overflow: hidden;
    overflow-y: hidden;
    scrollbar-width: none;
    padding: 8px 2px;
}

.atl-eb-slider-viewport::-webkit-scrollbar {
    display: none;
}

.atl-eb-slider-track {
    display: flex;
    gap: 16px;
    width: max-content;
    min-height: 1px;
    will-change: transform;
}

.atl-eb-card {
    flex: 0 0 clamp(200px, 22vw, 260px);
    background: #ffffff;
    border: 1px solid #dbe3ef;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.atl-eb-card-image {
    height: 190px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atl-eb-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atl-eb-card-placeholder {
    font-size: 56px;
    color: #64748b;
}

.atl-eb-card-content {
    padding: 12px 14px;
}

.atl-eb-card-name {
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    color: #0f172a;
}

.atl-eb-card-role {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: #475569;
}

.atl-eb-empty {
    margin: 0;
    padding: 12px;
    color: #475569;
}

@media (max-width: 700px) {
    .atl-eb-slider-app {
        grid-template-columns: 36px minmax(0, 1fr) 36px;
        gap: 6px;
    }

    .atl-eb-slider-btn {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }

    .atl-eb-card {
        flex-basis: clamp(180px, 70vw, 230px);
    }

    .atl-eb-card-image {
        height: 160px;
    }
}
