


/* Main Card Container */
.thumb-categories-card {
    display: flex;
    margin: 0 auto;
    align-items: center;
}



.thumb-categories-card-image{
    width: 33.33%;
    padding-bottom: 31%;
    height: 0;
     border-radius: 16px;
    overflow: hidden;
    position: relative;
}
.thumb-categories-card-image img{
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

/* Right Section - Content */
.thumb-categories-card-content {
    flex: 1;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 0;
}



.card-description {
   margin-bottom: 0;
}

.thumb-categories-card-content .button-with-arrow{
    margin-top: 20px;
    justify-content: flex-start;
}

.thumb-categories-wrap{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.thumb-category-item{
    width: calc(50% - 15px);
}


/* Responsive Design */

@media(max-width:1024px){
    .thumb-category-item{
        width: 100%;
    }
    .thumb-categories-card-content{
        padding: 0px 20px;
    }
}

@media (max-width: 767px) {
    .thumb-categories-card {
        flex-direction: column;
        max-width: 100%;
    }
       
    .thumb-categories-card-content {
        padding: 20px 0;
        text-align: center;
    }
    
    
    .thumb-categories-card-content .button-with-arrow{
        justify-content: center;
    }
}

