/*
 Theme Name:   Neve Child
 Description:  Mein individuelles Neve Child Theme
 Author:       Dein Name
 Template:     neve
 Version:      1.0.0
*/

/* --- Anbieter Grid Styling --- */
.anbieter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.anbieter-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.anbieter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Exklusiv Design */
.anbieter-card.anbieter-exklusiv {
    border: 2px solid #fbbf24; /* Goldener Rand */
}

.anbieter-tip {
    background-color: #fbbf24;
    color: #111;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    position: absolute;
    top: 0;
    right: 0;
    border-bottom-left-radius: 8px;
    z-index: 10;
}

.anbieter-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.anbieter-logo-wrapper {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.anbieter-logo-img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.anbieter-name-fallback {
    font-weight: bold;
    font-size: 1.2rem;
    color: #374151;
}

.anbieter-badge {
    background-color: #eff6ff;
    color: #1d4ed8;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 99px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.anbieter-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 24px;
}

.anbieter-footer {
    margin-top: auto;
    width: 100%;
}

.anbieter-btn {
    display: block;
    width: 100%;
    background-color: #2563eb;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 6px;
    transition: background-color 0.2s;
    text-align: center;
}

.anbieter-btn:hover {
    background-color: #1d4ed8;
}

.anbieter-no-btn {
    color: #9ca3af;
    font-size: 13px;
}