.clp-club-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
    margin-top: 70px;
}

.clp-club-card {
    width: calc(20% - 16px);
    flex: 0 0 auto;
    background-color: #D2D2D2AD;
    border-bottom: 5px solid red;
    border-radius: 15px;
    background-image: url('https://futeboleua.com.br/application/wp-content/uploads/2025/03/club-promo-bg.svg');
    background-size: cover;
    background-position: center;
    box-sizing: border-box;
    transition: transform 0.2s ease;
    position: relative;
    background-size: cover;
    background-position: center;
}

.clp-club-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
    border-radius: 15px;
}


.clp-club-card:hover::before {
    background-color: rgba(255, 0, 0, 0.6);
}


.clp-club-card>* {
    position: relative;
    z-index: 2;
}
















.custom-card-inner {
    position: relative;
}

.clp-club-name {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 20px;
}

.clp-club-name .custom-arrow {
    font-weight: bold;
    font-size: 25px;
}

.clp-club-image {
    padding: 10px;
}

.clp-club-image img {
    height: 60px;
    width: 60px;
}

/* 4 per row */
@media (max-width: 1200px) {
    .clp-club-list {
        margin-top: 10px;
    }

    .clp-club-card {
        width: calc(25% - 16px);
    }
}

/* 3 per row */
@media (max-width: 992px) {
    .clp-club-card {
        width: calc(33.33% - 16px);
    }
}

/* 2 per row */
@media (max-width: 768px) {
    .clp-club-card {
        width: calc(50% - 16px);
    }
}

/* 1 per row */
@media (max-width: 576px) {
    .clp-club-card {
        width: 100%;
    }
}