.latest-posts__row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
    align-items: top;
    justify-content: space-between;
}

.latest-posts__post{
    border: 1px solid transparent;
    transition: all 0.3s;
    border-radius: 30px;
}
.latest-posts__post:hover{
    border: 1px solid #005CEF30;
    box-shadow: 0px 0px 3px 0px rgba(129, 129, 129, 0.35);
    border-radius: 30px;
}
.latest-posts__info{
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.latest-posts__text {
    width: 100%;
	display: flex;
    flex-direction: column;
    gap: 15px;
}
.latest-posts__post img{
    border-radius: 30px;
    width: 100%;
    transition: all .3s;
}
.latest-posts__post:hover .post__media img{
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}
.latest-posts__post__title{
    color: #010711;
    font-family: "Exo 2";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.portfolio_post_category {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.portfolio_post_category a {
    padding: 2px 10px;
    color: rgba(45, 45, 45, 0.80);
    font-family: "Exo 2";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px; /* 186.667% */
    border-radius: 40px;
    border: 1px solid rgba(45, 45, 45, 0.20);
    background: rgba(45, 45, 45, 0.10);
}
.latest-posts__post__btn {
   background: #010711;
   border-radius: 100px;
   padding: 15px;
   display: grid;
   place-items:center;
   transition: all 0.3s;
}
.latest-posts__post__btn:hover{
    background-image: linear-gradient(195deg, #F7003EE0 0%, #FFD83E 100%);
}

@media only screen and (min-width: 333px) {
    .portfolio_post_category{
        gap: 10px;
    }
    
}

@media only screen and (min-width: 768px) {
    .latest-posts__row{
        grid-template-columns: repeat(2, 1fr);
   
    }
    .latest-posts__post:first-child {
        grid-row: 1 /2 span;
    }
    .latest-posts__post__title{
        font-size: 30px;
    }
}