.content-body {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(425px, 1fr)); /* Controla el número de columnas dinámicamente */
    gap: 14px;
    padding: 22px;

    &>a {
        &>.club-container {
            width: 100%;
            height: 221px;
            flex-shrink: 0;
            border-radius: 16px;
            background: #FFF;
            padding: 19px;
            display: flex;
            flex-wrap: nowrap;
            flex-direction: column;
            justify-content: space-between;

            &>.club-image {
                display: flex;
                width: 92px;
                height: 92px;
                justify-content: center;
                align-items: center;
                flex-shrink: 0;

                &>img {
                    display: flex;
                    width: 92px;
                    height: 92px;
                    justify-content: center;
                    align-items: center;
                    flex-shrink: 0;
                }
            }

            &>.club-nombre {
                display: flex;
                justify-content: space-between;

                &>div:nth-child(1) {
                    color: #050505;
                    font-family: Syne;
                    font-size: 14px;
                    font-style: normal;
                    font-weight: 600;
                    line-height: 21px;
                    /* 150% */
                    letter-spacing: -0.084px;
                    text-transform: uppercase;
                }

                &>div:nth-child(2) {
                    display: flex;
                    min-width: 36px;
                    min-height: 36px;
                    max-width: 36px;
                    max-height: 36px;
                    padding: 9px;
                    align-items: center;
                    gap: 10px;
                    border-radius: 50px;
                    background: var(--componet-primary-color);
                    justify-content: center;
                    &>svg{
                        filter: var(--house-color);
                    }
                }
            }
        }
    }
}