/* ========================================
           KEY BENEFITS SECTION
           ======================================== */
.key-benefits-section {
    padding: 6rem 2rem;
    background: var(--gradient-bg);
}

.sports-common-injuries {
    background: linear-gradient(135deg, var(--warm-cream) 0%, var(--soft-peach) 100%);
}

.key-benefits-section .container {
    grid-template-columns: 1fr;
    padding: 0px 0px;
}

/* Layout Grid for Text and Benefits */
.key-benefits-section .benefits-layout-grid {
    display: flex;
    gap: 50px;
    align-items: start;
    flex-direction: column;
    text-align: center;
}

.key-benefits-section .section-title-large {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    text-align: left;
}

.key-benefits-section .highlight-yellow {
    color: var(--brand-yellow);
}

.key-benefits-section .section-subtitle-left {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 400;
    margin-top: 15px;
    text-align: center;
    max-width: 660px;
    width: 100%;
    margin: 15px auto auto;
}

/* Right Side: Benefits Grid */
.key-benefits-section .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

/* Individual Benefit Item */
.key-benefits-section .benefit-item {
    background-color: #ffffff;
    padding: 40px 24px 24px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
}

.key-benefits-section .benefit-item i {
    color: #fff;
    font-size: 1.6rem;
}

.key-benefits-section .benefit-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Icon Styling (Matches the circular, top-center design) */
.key-benefits-section .benefit-icon-wrapper {
    width: 84px;
    height: 84px;
    background-color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 146, 68, 0.18);
    transition: var(--transition);
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 0;
}

/* The Card Text Content */
.key-benefits-section .benefit-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 18px 0 10px 0;
}

.key-benefits-section .benefit-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .key-benefits-section .benefits-layout-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .key-benefits-section .section-header-left {
        text-align: center;
        padding-right: 0;
        width: 100%;
    }

    .key-benefits-section .section-title-large {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .key-benefits-section .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .key-benefits-section .benefit-item {
        padding: 28px 18px 18px;
    }

    .key-benefits-section .benefit-icon-wrapper {
        width: 64px;
        height: 64px;
        top: -32px;
        transform: translate(-50%, 0);
    }

    .key-benefits-section .benefit-text h4 {
        text-align: left;
    }

    .key-benefits-section .benefit-text p {
        text-align: left;
    }

    .key-benefits-section {
        padding: 4rem 2rem;
    }

    .key-benefits-section .container {
        padding: 0 0;
    }

    .key-benefits-section .section-subtitle-left {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .key-benefits-section {
        padding: 3rem 1.5rem;
    }

    .key-benefits-section .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .key-benefits-section .benefit-icon-wrapper {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
}

/* Desktop: layout header left, cards right */
@media (min-width: 993px) {
    .key-benefits-section .benefits-layout-grid {
        flex-direction: column;
        align-items: center;
    }

    .key-benefits-section .section-header-left {
        flex: 0 0 38%;
        text-align: center;
        margin-bottom: 2rem;
    }

    .key-benefits-section .benefits-grid {
        flex: 1 1 62%;
    }
}