/* ====== MITGLIEDSCHAFT SEITE STYLES ====== */

.membership-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

/* === EINZELNE PRICING CARD === */
.pricing-card {
    background: var(--white);
    /* WEISS - Card Hintergrund */
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.2);
    /* ROT getönter Schatten beim Hover */
}

.pricing-card h3 {
    color: var(--primary-dark);
    /* DUNKEL - Titel der Card */
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-card p {
    color: var(--paragraph-gray);
    /* GRAU - Beschreibungstext */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* === PREIS === */
.price {
    color: var(--primary);
    /* ROT - Preis Zahl */
    font-size: 48px;
    font-weight: 700;
    margin: 25px 0;
}

.price span {
    color: var(--paragraph-gray);
    /* GRAU - "/ Monat" Text */
    font-size: 18px;
    font-weight: 400;
}

/* === FEATURE LIST === */
.pricing-card ul {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.pricing-card ul li {
    color: var(--paragraph-gray);
    /* GRAU - Liste Items */
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
    .membership-container {
        grid-template-columns: 1fr;
    }
}