.ind_card_wrapper {
    display: grid;
    gap: 10px;
    padding: 0 20px;
}

.ind_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-radius: 30px;
    background-color: transparent;
    background-image: linear-gradient(180deg, #37007A 0%, #013C82 100%);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.ind_card_thumbnail {
    max-width: 100% !important;
    width: 60%;
    aspect-ratio: 1;
    border-radius: 150px !important;
    margin-bottom: 35px;
}

.ind_divider {
    width: 70%;
    border-bottom: 1px dashed #e6e6e6;
}

.ind_card_title {
    font-size: 17px;
    margin-block: 20px 15px;
    color: var(--e-global-color-5242351);
    font-family: var(--e-global-typography-primary-font-family), Sans-serif;
    font-weight: var(--e-global-typography-primary-font-weight);
    text-align: center;
    
    /* color: white;
    font-family: "Roboto", sans-serif;
    font-weight: 700; */
}

.ind_card_bottom_items {
    width: 100%;
}

.ind_card_ranking {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    padding: 10px;
    background-color: #50105C;
}

.ind_card_btn {
    padding: 12px;
    text-align: center;
    background-color: #F7F6F6;
    border-radius: 0 0 30px 30px;
}

.ind_card_btn a {
    text-decoration: none;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #c36c36;
}

@media (min-width: 1025px) {
    .ind_card_wrapper {
        grid-template-columns: repeat(6, 1fr);
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    .ind_card_wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media (max-width: 767px) {
    .ind_card_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}