/* Start custom CSS for html, class: .elementor-element-2dd710e *//* Apply Figtree */
.clubs-section,
.clubs-section *{
    font-family: "Figtree", sans-serif;
}
/* Prevent horizontal scrolling */
html,
body{
    overflow-x:hidden;
}

.clubs-section{
    padding:60px 20px;
}

.clubs-container{
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.club-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.club-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.club-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.club-content{
    padding:30px;
}

.club-icon{
    width:65px;
    height:65px;
    background:#B72928;
    color:#fff;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.club-content h3{
    color:#22325C;
    margin-bottom:15px;
    font-size:28px;
}
.club-content h3{
    font-family:"Figtree",sans-serif;
    font-size:30px;
    font-weight:700;
    color:#22325C;
    margin-bottom:15px;
}

.club-content p{
    font-family:"Figtree",sans-serif;
    font-size:16px;
    font-weight:400;
    line-height:1.8;
    color:#666;
}

.club-content span{
    font-family:"Figtree",sans-serif;
    font-size:16px;
    font-weight:600;
    color:#B72928;
}

.club-content p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

.club-content span{
    color:#B72928;
    font-weight:700;
}

/* Tablet */
@media (max-width:992px){
    .clubs-container{
        gap:20px;
    }

    .club-card img{
        height:220px;
    }

    .club-content{
        padding:22px;
    }

    .club-content h3{
        font-size:24px;
    }
}

/* Mobile */
@media (max-width:768px){
    .clubs-container{
        grid-template-columns:1fr;
    }

    .club-card img{
        height:220px;
    }
}/* End custom CSS */