/** Shopify CDN: Minification failed

Line 29:12 Expected identifier but found whitespace
Line 29:13 Unexpected "5%"

**/


        .section-leland-club {
            overflow: hidden;
        }

        .hero-text {
            position: relative;
            z-index: 3;
            color: #fff;
        }
        .feature-box img{
            width:30%;
            margin:0 auto;
        }
       

       

        /* --- 2. Main Content Area --- */
       

        gap: 5%;
        }

        /* Titles for the two main columns */
        .community-impact, .support-features {
            flex: 1;
            min-width: 300px;
        }

        .community-impact h3, .support-features h3 {
            text-transform: uppercase;
            font-size: 1.5em;
            color: var(--color-text-dark);
            margin-bottom: 30px;
            text-align: center;
        }

        /* Left Column: Community & Impact */
        .impact-block {
          display: grid;
         grid-template-columns: 1fr;
            align-items: center;
           margin-bottom: 50px;
        }

        .impact-image {
            width: 50%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .impact-text {
            width: 100%;
            padding-left: 30px;
        }

        .impact-text h4 {
            color: var(--color-green);
            font-size: 1.3em;
            margin: 0;
            line-height: 1.2;
        }

        

        /* Leadership Section */
        .leadership h4 {
            font-size: 1.3em;
            text-align: center;
            margin-top: 50px;
            margin-bottom: 10px;
        }
        
        .leadership p {
            text-align: center;
            font-size: 0.9em;
            color: #666;
            margin-bottom: 30px;
        }

        .leadership-profiles {
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .profile-card {
            text-align: center;
        }

        .profile-card img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--color-green);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .profile-card h5 {
            margin: 10px 0 2px 0;
            font-size: 1.1em;
            color: var(--color-text-dark);
        }

        .profile-card span {
            font-size: 0.8em;
            color: #999;
            display: block;
        }

        /* Right Column: Support Features (Grid) */
        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 20px;
        }

        .feature-box {
            border: 2px solid var(--color-green);
            padding: 20px;
            border-radius: 8px;
            min-height: 130px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: #fff;
            border: solid 4px #ff9934;
            box-shadow: -6px -7px 0px 0px #cdee9c;
            align-items: center;
        }

        .feature-box i {
            /* Placeholder for icons, use Font Awesome in a real scenario */
            font-size: 2em;
            color: var(--color-green);
            margin-bottom: 10px;
            display: block;
        }
        
       .feature-box h4{
        text-align: center;
        font-size: 18px;
       }

        .support-features h2 {
            text-align: center;
        }

        .feature-box span {
            font-size: 0.8em;
            color: #666;
            line-height: 1.4;
        }

       

        
        
        @media (max-width: 749px) {
            .hero-text h2 {
                font-size: 2em;
            }
            .features-grid {
                grid-template-columns: 1fr 1fr; /* Stacks features vertically in a single column */
            }
            .leadership-profiles {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            .feature-box img {
               width: 25%;
              margin: 0 auto;
            }
            .feature-box h4 {
              text-align: center;
             font-size: 16px;
}
        }


        @media (max-width: 549px) {
    .features-grid {
        grid-template-columns:  1fr;
    }
}
