.kb-planten-grid {
    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-plant-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

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

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

.kb-plant-content h3 {
    margin: 0 0 8px;
    color: #2c5f2d;
}

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

.kb-plant-meta {
    margin: 16px 0;
}

.kb-meta-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #e8f5e9;
    color: #2c5f2d;
    border-radius: 4px;
    font-size: 13px;
    margin-right: 8px;
}

.kb-button-small {
    display: inline-block;
    padding: 8px 16px;
    background: #4CAF50;
    color: white !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.2s;
}

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

.kb-oogst-kalender {
    margin: 32px 0;
}

.kb-oogst-kalender h3 {
    color: #2c5f2d;
    margin-bottom: 24px;
}

.kb-seizoen-sectie {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #4CAF50;
}

.kb-seizoen-sectie h4 {
    margin-top: 0;
    color: #2c5f2d;
}

.kb-seizoen-sectie ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.kb-seizoen-sectie li {
    background: white;
    padding: 10px;
    border-radius: 4px;
}

.kb-seizoen-sectie li a {
    color: #333;
    text-decoration: none;
}

.kb-seizoen-sectie li a:hover {
    color: #4CAF50;
}

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