/* Responsive Design */
@media (max-width: 968px) {
    body .ws-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }

    body .ws-card:nth-child(even) body .ws-card-image {
        order: 0;
    }

    body .ws-card-image {
        text-align: center;
    }

    body .ws-card-image img {
        max-width: 400px;
    }

    body .ws-facilitators-grid {
        gap: 32px;
    }

    body .ws-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body .ws-hero {
        padding: 80px 0 60px;
    }

    body .ws-hero-title {
        font-size: 36px;
    }

    body .ws-hero-subtitle {
        font-size: 18px;
    }

    body .ws-section-title,
    body .ws-facilitators h2,
    body .ws-cta h2 {
        font-size: 28px;
    }

    body .ws-workshops,
    body .ws-facilitators,
    body .ws-cta {
        padding: 80px 0;
    }

    body .ws-card {
        padding: 24px;
        margin-bottom: 60px;
    }

    body .ws-card-title {
        font-size: 26px;
    }

    body .ws-card-desc {
        font-size: 16px;
    }

    body .ws-card-meta {
        gap: 16px;
    }

    body .ws-facilitator-card img {
        width: 140px;
        height: 140px;
    }

    body .ws-intro-text {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    body .ws-hero-title {
        font-size: 28px;
    }

    body .ws-card-image img {
        max-width: 100%;
    }

    body .ws-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    body .ws-facilitators-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    body .ws-card-cta,
    body .ws-cta-button {
        padding: 14px 32px;
        font-size: 16px;
    }

    body .ws-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}