/*********************
START:BLOGS 
*********************/
.blogs{
    padding-block: 5.5rem;
}

.blogs--content{
    margin-block-end: 2.5rem;
}

.blogs img{
    width: 100%;
    height: auto;
    border-radius: var(--border-radius10);
}

.blogs--text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block-start: 1.5rem;
}

.blogs--text h3{
    width: 68%;
}

/* blogs--type-1 */
.blogs--type-1{
    display: flex;
    justify-content: space-between;
}

.blogs--type-1 > .blogs--content{
    width: 49%;
}

.blogs--type-1 > div:last-child{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blogs--type-1 > div:last-child > div:first-child{
    margin-block-end: 2rem;
}

/* blogs--type-2 */
.blogs--type-2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

}

.blogs--type-2 > li.blogs--content:is(:first-child,:nth-child(2)){
    width: 49%;
}

.blogs--type-2 > li.blogs--content:not(:is(:first-child,:nth-child(2))){
    width: 32%;
}
/*********************
END: BLOGS
*********************/
@media screen and (min-width: 1440px) {
    
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {
    
}

@media screen and (max-width: 1319px) {
    .blogs--type-2 > li.blogs--content:not(:is(:first-child,:nth-child(2))) a.btn{
        padding-inline: 1rem;
    }
}

@media screen and (max-width: 1200px) {
    .blogs--type-2 > li.blogs--content:not(:is(:first-child,:nth-child(2))) .blogs--text h3{
        width: 60%;
    }
}

@media screen and (max-width: 992px) {
    .blogs--text h3 {
        width: 55%;
    }    

    .blogs--type-1 > div:last-child > div:first-child {
        margin-block-end: 1rem;
    }

    .blogs--type-2 > li.blogs--content:not(:is(:first-child,:nth-child(2))){
        width: 49%;
    }

    .blogs--type-2 > li.blogs--content:not(:is(:first-child,:nth-child(2))) a.btn{
        padding-inline: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .blogs--type-1{
        flex-direction: column;
    }

    .blogs--type-1 > div{
        width: 100% !important;
    }

    .blogs--text{
        flex-direction: column;
        align-items: flex-start;
    }

    .blogs--text h3 {
        width: 100% !important;
        margin-block-end: 1rem;
    }

    .blogs--type-1 > div:last-child{
        flex-direction: row;
    }

    .blogs--type-1 > div:last-child > div{
        width: 49%;
    }

    .blogs--type-1 > div:last-child > div:first-child{
        margin-block-end: 0;
    }
}

@media screen and (max-width: 576px) {
    .blogs--content a.btn{
        font-size: var(--text-sm);
        padding: 0.5rem 0.75rem !important;
    }
}

@media screen and (max-width: 425px) {
    .blogs--type-1 > div:last-child{
        flex-direction: column;
    }

    .blogs--type-1 > div:last-child > div,
    .blogs--type-2 > li.blogs--content{
        width: 100% !important;
    }

    .blogs--type-1 > div:last-child > div:first-child {
        margin-block-end: 2.5rem;
    }
}

@media screen and (max-width: 375px) {
    
}