.custom-recent-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
}

.latest-post {
    grid-column: 1;
}

.other-posts {
    grid-column: 2;
    background-color: #f7f3f4;
    border-radius: 10px;
    padding: 45px;
    display: flex;
    flex-direction: column;
    row-gap: 45px;
}

.latest-post {
    grid-column: 1;
    background-color: #f7f3f4;
    border-radius: 10px;
}



.latest-post-content {
    padding: 25px;
}


a.kategoria {
    padding: 6px 40px;
    border-radius: 18px;
    border: 0.5px solid #A57884;
    color: #A57884;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 11px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.post-category {
    margin-bottom: 10px;
}


a.nevblog {
    color: #374041;
    font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
}


.latest-post-content p {
    line-height: 23px;
    color: #374041;
    font-family: "Montserrat", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    width: 500px;
}

.latest-post h3 {
    margin-bottom: 10px;
}

a.read-more {
    color: #A57884;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.post {
    display: flex;
    gap: 25px;
}

.post-image {
    display: flex;
    flex: 1;
}

.post-content {
    display: flex;
    flex: 2;
    flex-direction: column;
}

.post-image img {
    border-radius: 10px !important;
    object-fit: cover !important;
    height: 150px !important;
}

.latest-post-image img {
    border-radius: 10px 10px 0px 0px !important;
    height: 350px !important;
    object-fit: cover !important;
}

a.kategoriadobozok {
    padding: 6px 18px;
    border-radius: 18px;
    border: 0.5px solid #A57884;
    color: #A57884;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 9px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

a.dobozcim {
    color: #374041;
    font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
}

.other-posts h4 {
    margin-bottom: 20px;
    line-height: 25px;
    font-size: 20px;
}



@media (max-width: 767px) {
    
    .latest-post-content p {
        line-height: 27px;

        width: 100%;
    }  

    .custom-recent-posts {
        display: flex;
        flex-direction: column;
    }

    .post {
        display: flex;
        gap: 8px;
        flex-direction: column;
    }
    .other-posts {
        padding: 25px;
    }

}