/* Hergebruik veel styles van dieren plugin */
.kb-bloemen-overzicht {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.kb-columns-2 { grid-template-columns: repeat(2, 1fr); }
.kb-columns-3 { grid-template-columns: repeat(3, 1fr); }
.kb-columns-4 { grid-template-columns: repeat(4, 1fr); }

.kb-bloem-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.kb-bloem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.kb-bloem-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.kb-bloem-content {
    padding: 20px;
}

.kb-bloem-content h3 {
    margin: 0 0 8px;
}

.kb-latijnse-naam {
    font-style: italic;
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.kb-bloem-excerpt {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

.kb-meta-item {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 13px;
    margin-right: 8px;
}

.kb-button {
    display: inline-block;
    padding: 10px 20px;
    background: #4CAF50;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s;
}

.kb-button:hover {
    background: #45a049;
}

/* Seizoenskalender */
.kb-seizoenskalender {
    margin: 32px 0;
}

.kb-seizoen-sectie {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.kb-seizoen-sectie h3 {
    margin-top: 0;
    color: #4CAF50;
}

.kb-bloemen-lijst {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.kb-bloemen-lijst li a {
    display: block;
    padding: 12px;
    background: #fff;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s;
}

.kb-bloemen-lijst li a:hover {
    background: #e8f5e9;
}

@media (max-width: 768px) {
    .kb-columns-2, .kb-columns-3, .kb-columns-4 {
        grid-template-columns: 1fr;
    }
}
