﻿.new-post {
    padding: 2% 15% 0 14%;
    display: flex;
    gap: 24px;
    flex-direction: column;
}
.title-post {
    font-size: 25px;
    line-height: 40px;
    font-weight: 700;
    border-radius: unset;
    color: #0F8EB5;
}
.homepage-post-title {
    display: flex;
    justify-content: space-between;
}
.title-slide {
    color: #294258;
    font-size: 40px;
    font-weight: 600;
}
.image-post {
    width: 100%;
    height: 230px;
}
    .image-post img {
        object-fit: cover;
        width: 100%;
        height: 230px;
    }
.homepage-post {
    display: flex;
    flex-direction: column;
    /*gap: 16px;*/
    margin-bottom: 48px;
}
.post-title, .post-title:hover {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 21px;
    font-size: 16px;
    font-weight: 700;
    color: #265178;
    height: 63px;
}
.button-post, .button-post:hover {
    background: linear-gradient(271.67deg, #E4750E 3.49%, rgba(228, 117, 14, 0) 134.77%), linear-gradient(0deg, #FFB526, #FFB526);
    padding: 5px 15px 5px 15px;
    color: #fff;
    text-align: center;
    display: flex;
    gap: 8px;
    align-items: center;
}
.button-post i {
    font-size: 10px;
}
.post-category, .post-category:hover {
    width: auto;
    height: 23px;
    padding: 0 5px 0 5px;
    font-size: 15px;
    line-height: 15px;
    font-weight: 400;
    border-radius: 0;
    background-color: #0F8EB5;
    color: white;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.post-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

@media (max-width: 600px) {
    .new-post {
        padding: 2% 5% 0 5%;
    }
}
@media (min-width: 601px) and (max-width: 991px) {
    .new-post {
        padding: 2% 5% 0 5% !important;
    }
}