/* Step4Wellness Classes — Elementor / Wellness style */

.s4w-group-classes {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin: 20px 0 30px 0;

    /* 🌿 Elementor-mäinen vaalea vihreä tausta */
    padding: 16px;
    background: #F1FFF4;

    border-radius: 12px;
    border: 1px solid rgba(129, 165, 144, 0.25);
}

/* Yksittäinen tuntikortti */
.s4w-class-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;
    gap: 12px;

    padding: 14px 16px;

    background: #ffffff;

    border: 1px solid rgba(129, 165, 144, 0.25);
    border-left: 5px solid #81A590;

    border-radius: 10px;

    box-shadow: 0 2px 8px rgba(0,0,0,0.04);

    transition: all 0.25s ease;
}

/* Hover efekt */
.s4w-class-row:hover {
    background: #f6fff8;
    border-left-color: #48bca2;
    box-shadow: 0 6px 18px rgba(72, 188, 162, 0.12);
    transform: translateY(-1px);
}

/* INFO */
.s4w-class-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 18px;

    font-size: 0.95rem;
    color: #4f4f4f;
}

/* Päivä */
.s4w-date {
    font-weight: 600;
    color: #0a0500;
}

/* Kesto */
.s4w-duration {
    font-size: 0.88rem;
    color: #6b6b6b;
}

/* Paikkatilanne */
.s4w-spots {
    font-size: 0.88rem;
    color: #25ad99;
    font-weight: 500;
}

/* Täynnä */
.s4w-spots-full {
    color: #999;
}

/* Melkein täynnä */
.s4w-spots-low {
    color: #c87941;
    font-weight: 600;
}

/* FULL STATE */
.s4w-class-row.s4w-full {
    opacity: 0.5;
    border-left-color: #bbb;
    background: #f9f9f9;
}

/* ALMOST FULL */
.s4w-class-row.s4w-almost-full {
    border-left-color: #c87941;
    background: #fffaf6;
}

/* VARAA-NAPPI */
.s4w-btn-register {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;

    background: #48bca2;
    color: #ffffff !important;

    border-radius: 8px;
    text-decoration: none !important;

    font-size: 0.9rem;
    font-weight: 500;

    transition: all 0.2s ease;
    white-space: nowrap;
}

.s4w-btn-register:hover {
    background: #25ad99;
    transform: translateY(-1px);
}

/* FULL BUTTON */
.s4w-btn-full {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;

    background: #e5e5e5;
    color: #777;

    border-radius: 8px;

    font-size: 0.9rem;
    cursor: default;
}

/* EI TUNTEJA */
.s4w-no-classes {
    padding: 14px 16px;

    background: #F1FFF4;
    border: 1px dashed rgba(129, 165, 144, 0.4);

    border-radius: 10px;

    color: #666;
    font-size: 0.9rem;
}

/* MOBILE */
@media (max-width: 600px) {
    .s4w-class-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .s4w-btn-register,
    .s4w-btn-full {
        width: 100%;
        text-align: center;
    }
}