/* Dieren Overzicht */
.kb-dieren-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-dier-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.kb-dier-image {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

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

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

.kb-dier-content h3 {
    margin: 0 0 12px;
    font-size: 20px;
}

.kb-dier-content h3 a {
    color: #333;
    text-decoration: none;
}

.kb-dier-content h3 a:hover {
    color: #4CAF50;
}

.kb-dier-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.kb-dier-meta {
    margin-bottom: 16px;
}

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

.kb-meta-item.adopteerbaar {
    background: #d4edda;
    color: #155724;
}

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

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

/* Single Dier */
.kb-dier-single {
    max-width: 1200px;
    margin: 0 auto;
}

.kb-dier-hero {
    position: relative;
    margin-bottom: 40px;
}

.kb-dier-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.kb-dier-header {
    margin-bottom: 32px;
}

.kb-dier-header h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.kb-dier-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.kb-info-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.kb-info-box h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: #333;
}

.kb-info-box p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

.kb-adoptie-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 24px;
    margin: 32px 0;
    text-align: center;
}

.kb-adoptie-box h3 {
    margin: 0 0 16px;
    color: #856404;
}

.kb-qr-section {
    text-align: center;
    padding: 32px;
    background: #f5f5f5;
    border-radius: 8px;
    margin: 32px 0;
}

.kb-qr-code {
    max-width: 200px;
    margin: 16px auto;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .kb-columns-2,
    .kb-columns-3,
    .kb-columns-4 {
        grid-template-columns: 1fr;
    }
    
    .kb-dier-hero img {
        height: 250px;
    }
    
    .kb-dier-header h1 {
        font-size: 28px;
    }
    
    .kb-info-box {
        padding: 16px;
    }
}
