/* =========================
   GRID (3 pro Reihe)
========================= */

.supporter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .supporter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .supporter-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================
   SLIDER
========================= */

.supporter-slider-wrapper {
    position: relative;
    overflow: hidden;
}

.supporter-slider {
    display: flex;
}

.supporter-slider .supporter-card {
    box-sizing: border-box;
    padding: 15px;
}

/* Navigation Buttons */

.supporter-prev,
.supporter-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 18px;
    z-index: 20;
    opacity: 0.8;
}

.supporter-prev:hover,
.supporter-next:hover {
    opacity: 1;
}

.supporter-prev { left: 0; }
.supporter-next { right: 0; }



/* =========================
   NAVIGATION BUTTONS
========================= */

.supporter-prev,
.supporter-next {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    position: absolute;
    z-index: 10;
}

.supporter-prev {
    left: 0;
}

.supporter-next {
    right: 0;
}

.supporter-prev:hover,
.supporter-next:hover {
    background: #333;
}


/* =========================
   CARD DESIGN
========================= */

.supporter-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.supporter-link {
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    color: inherit;
}

.supporter-logo img {
    max-width: 120px;
    height: auto;
}

.supporter-text h3 {
    margin: 0 0 10px;
    font-size: 20px !important;
}

.supporter-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .supporter-link {
        flex-direction: column;
        text-align: center;
    }
}
