/* B9 Golf Features Component Styles */

.b9-features {
    padding: 60px 0;
    color: var(--b9-white);
}

@media (min-width:1200px) {.b9-features{/*padding-bottom:0*/}}

/* Left Column Styles */
.b9-features-left {
    border-radius: 12px;
    background-color: #ffffff1a;
    padding: 16px 0 26px;
    border: 1px solid #ffffff26;
}

.b9-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 12px;
}

.b9-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.b9-features.franchise .b9-features-list .b9-feature-item:nth-child(4n + 3),
.b9-features.franchise .b9-features-list .b9-feature-item:nth-child(4n + 4) {
    background: #ffffff08;
    border-radius: 0;
}

.b9-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.b9-feature-text {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
    color: var(--b9-white);
    text-decoration: none;
}

@media (min-width:1200px) {
    .b9-feature-item{padding:10px;}
    .b9-feature-icon{width: 30px;height: 30px;}
    .b9-feature-text{font-size: 18px;}
}

.b9-feature-item:hover {
    border-radius: 10px !important;
    background: var(--b9-ebony) !important;
}

.b9-feature-item:hover .b9-feature-text {
    color: var(--b9-primary-color);
}

a.b9-feature-text {
    cursor: pointer;
}

.b9-features-logo {
    margin-bottom: 16px;
    max-width: 236px;
}

.b9-features-logo img {
    width: 100%;
    height: auto;
}

.b9-features-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--b9-primary-color);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.b9-features-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--b9-white);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.b9-features-icon {
    width: 24px;
    height: 24px;
}

.b9-features-icon.location {
    width: 30px;
    height: auto;
}

/* Tablet Styles */
@media (max-width: 991.98px) {
    .b9-features {
        padding: 40px 0;
    }

    .b9-features-left {
        padding-right: 0;
        padding-left: 0;
        margin-bottom: 40px;
    }

    .b9-features-logo {
        height: 48px;
        margin-bottom: 16px;
    }

    .b9-features-title {
        text-align: center;
        font-size: 32px;
        margin-bottom: 16px;
    }

    .b9-features-description {
        font-size: 15px;
        margin-bottom: 24px;
        text-align: center;
    }

    .b9-features-list {
        grid-template-columns: 1fr;
    }

    .b9-features.franchise .b9-features-list .b9-feature-item:nth-child(4n + 3),
    .b9-features.franchise
        .b9-features-list
        .b9-feature-item:nth-child(4n + 4) {
        background: unset;
    }

    .b9-features-list .b9-feature-item:nth-child(even) {
        background: #ffffff08 !important;
        border-radius: 0;
    }

    .b9-features-right {
        padding-left: 32px;
        padding-right: 32px;
        padding-bottom: 30px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .b9-features.franchise .b9-features-right {
        align-items: flex-start;
    }

    .b9-features-icon {
        width: 16px;
        height: 16px;
    }

    .b9-features-icon.location {
        width: 18px;
    }
}

/* Mobile Styles */
@media (max-width: 767.98px) {

    .b9-features-left {
        margin-bottom: 0;
    }

    .b9-features-description {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .b9-features-right {
        padding-left: 0;
        padding-right: 0;
    }

    .b9-features-list .row {
        row-gap: 4px;
    }

    .b9-feature-item {
        min-height: 48px;
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .b9-feature-text {
        font-size: 16px;
        line-height: 1.6;
    }
}
