.album-section {
    width: min(980px, calc(100% - 2rem));
    margin: 2rem auto 3rem;
}

.album-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    justify-items: center;
    align-items: stretch;
}

.album-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.4rem;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.album-card:hover,
.album-card:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    border-color: rgba(255, 255, 255, 0.28);
}

.album-art {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1.2rem;
    display: block;
    min-height: 220px;
}

.album-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.album-title {
    margin: 0;
    font-size: clamp(1rem, 2vw, 1.15rem);
    font-weight: 700;
    color: #f5f5f5;
}

.album-subtitle {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(245, 245, 245, 0.78);
}

@media (max-width: 700px) {
    .album-section {
        width: min(100% - 1rem, 100%);
        margin-top: 1.2rem;
    }

    .album-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .album-card {
        max-width: 100%;
        padding: 0.75rem;
    }

    .album-art {
        min-height: 180px;
    }

    .album-title {
        font-size: 1rem;
    }

    .album-subtitle {
        font-size: 0.85rem;
    }
}
