/* Why Online Coaching Section */
.why-online-coaching {
    padding: min(10vh, 120px) 0;
    background-color: var(--wp--preset--color--white);
    width: 100%;
}

.why-online-coaching .container {
    width: min(90%, var(--container-width));
    max-width: var(--container-width);
    margin: 0 auto;
}

/* Section Title - Matching other sections */
.why-online-coaching .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    text-align: center;
    color: var(--wp--preset--color--dark);
    max-width: min(90%, 800px);
    margin-left: auto;
    margin-right: auto;
}

/* Section Description - Matching introduction content style */
.why-online-coaching .section-description {
    font-size: clamp(1rem, 1vw + 0.75rem, 1.125rem);
    line-height: 1.7;
    color: var(--wp--preset--color--gray-700);
    max-width: min(90%, 800px);
    margin: 0 auto clamp(2.5rem, 6vw, 4rem);
    text-align: center;
}

.why-online-coaching .section-description p {
    margin-bottom: 1.5rem;
}

.why-online-coaching .section-description p:last-child {
    margin-bottom: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: var(--wp--preset--color--gray-100);
    border-radius: 0.5rem;
    transition: var(--transition-base);
    height: 100%;
}

/* Adjust card background when parent has gray background */
.gray-bg .benefit-card {
    background-color: var(--wp--preset--color--white);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: clamp(3rem, 4vw, 4rem);
    height: clamp(3rem, 4vw, 4rem);
    background-color: var(--wp--preset--color--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    color: var(--wp--preset--color--primary);
    flex-shrink: 0;
}

/* Adjust icon background when parent has gray background */
.gray-bg .benefit-icon {
    background-color: var(--wp--preset--color--gray-100);
}

.benefit-icon i {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

/* Title matching other card titles */
.benefit-title {
    font-size: clamp(1.125rem, 1.5vw + 0.75rem, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
    color: var(--wp--preset--color--dark);
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Description matching other card descriptions */
.benefit-description {
    font-size: clamp(0.875rem, 0.5vw + 0.8rem, 1rem);
    line-height: 1.6;
    color: var(--wp--preset--color--gray-700);
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

/* Larger screens */
@media screen and (min-width: 1440px) {
    .why-online-coaching .container {
        width: min(85%, var(--container-width));
    }
    
    .benefits-grid {
        gap: 3rem;
    }
}

/* Medium screens */
@media screen and (max-width: 1024px) {
    .why-online-coaching {
        padding: min(8vh, 100px) 0;
    }
}

/* Mobile screens */
@media screen and (max-width: 768px) {
    .why-online-coaching {
        padding: min(6vh, 80px) 0;
    }
    
    .why-online-coaching .container {
        width: 90%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 1.25rem;
        margin: 0 auto;
    }
}

/* Small mobile screens */
@media screen and (max-width: 480px) {
    .why-online-coaching {
        padding: min(5vh, 60px) 0;
    }
    
    .why-online-coaching .container {
        width: 95%;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .why-online-coaching .section-title {
        font-size: 2rem;
    }
}