/* Albums Highlight */
.albums-highlight {
    padding: 15px 20px 40px 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.05) 0px,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px,
            transparent 2px
        ),
        linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.albums-highlight h2 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.album-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.album-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.album-card h3 {
    font-size: 1.2rem;
    margin: 10px;
    color: #222;
}

.album-card span {
    display: block;
    margin: 0 10px 10px;
    font-size: 0.9rem;
    color: #666;
}

.album-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}
.album-card a:hover {
    text-decoration: underline;
}