.fhl-pub-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.pub-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #111;
}

.fhl-pub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px 30px; /* Meer ruimte tussen rijen */
}

.fhl-pub-item {
    text-align: center;
    transition: transform 0.4s ease;
}

.pub-cover-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background-color: #f9f9f9;
    aspect-ratio: 2/3;
}

.pub-cover-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Effecten */
.fhl-pub-item:hover .pub-cover-wrapper img {
    transform: scale(1.05);
}

.fhl-pub-item:hover .pub-cover-wrapper {
    box-shadow: 0 20px 45px rgba(197, 164, 109, 0.2);
    border: 1px solid #c5a46d;
}

.pub-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fhl-pub-item:hover .pub-overlay {
    opacity: 1;
}

.pub-genre {
    color: #fff;
    border: 1px solid #c5a46d;
    padding: 8px 15px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Tekst onder de cover */
.pub-info {
    margin-top: 20px;
}

.pub-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #111;
}

.pub-info p {
    color: #c5a46d;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Mobiel */
@media (max-width: 768px) {
    .fhl-pub-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}