
/* ===== Album Cards - Always Show Info ===== */



.albums-grid {
    display: grid;
    gap: 1.5rem;
    justify-content: center;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    padding: 1rem;
}

.album-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: inherit;
    color: inherit;
}


.album-img-container {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.album-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}



.album-info {
    padding: 12px;
    background: inherit;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}


/* Theme-specific album info borders */
.dark .album-info,
.orange .album-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.album-title {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}



.album-genre,
.album-date {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.2rem;
}


  /* Pagination styles */



/* ===== Responsive Styles ===== */
/* ===== Ultra-Tiny Mobile Devices (under 416px) ===== */


/* Then your existing responsive queries below... */
/* Small devices (451px-640px) */
@media (min-width: 451px) and (max-width: 640px) {
    .albums-grid {
        grid-template-columns: repeat(3, minmax(120px, 1fr));
        /* 3 columns but smaller */
        gap: 0.8rem;
    }
}

/* Tablet (641px-768px) - unchanged */
@media (min-width: 641px) and (max-width: 768px) {
    .albums-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Larger breakpoints remain unchanged */