/* Album */
.album {
    width: 100%;
    max-width: 100vw;
    padding: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.album-container {
    width: 100%;
    overflow: hidden;
    touch-action: pan-x;
    flex: 1;
    display: flex;
    align-items: center;
}

.album-track {
    display: flex;
    transition: transform 0.3s ease;
}

.album-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
}

.album-photo {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-bottom: 1rem;
    background-color: var(--bg-secondary);
}

.album-caption {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 280px;
}

.album-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.album-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gray);
    opacity: 0.4;
    transition: all var(--transition-fast);
}

.album-dot.active {
    background: var(--gold);
    opacity: 1;
    transform: scale(1.3);
}
