/* ==========================================
   Sponsoren Layout & Cards
   ========================================== */
.sponsoren-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.sponsor-card {
    background: rgba(20, 22, 28, 0.85);
    border: 1px solid rgba(255, 159, 67, 0.25);
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.sponsor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 159, 67, 0.6);
}

.sponsor-media {
    text-align: center;
    margin-bottom: 12px;
}

.sponsor-media img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    border-radius: 6px;
}

.sponsor-naam {
    color: #ff9f43;
    font-size: 1.15rem;
    margin: 0 0 8px 0;
}

.sponsor-tekst {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #e0e0e0;
    margin: 0 0 12px 0;
}

.sponsor-acties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.sponsor-btn {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background: #2a2e39;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease;
}

.sponsor-btn:hover {
    background: #ff9f43;
    color: #121318;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: #ffffff;
}
