.post-big-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 4%;
}

.post-content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin: 15px 0;
    background-color: white;
}

.gradient-background {
    position: relative;
    width: 100%;
    height: 450px;
    padding: 0;
    margin: 0;
    background: linear-gradient(rgba(7, 21, 52, 1) 0%, rgba(7, 21, 52, 0.5) 100%);
}

.gradient-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(rgba(7, 21, 52, 1) 0%, rgba(7, 21, 52, 0.5) 100%);
    z-index: -1;
}

.post-title-container {
    position: absolute;
    padding: 0 4%;
    width: 100%;
}

.post-title-container p, .post-title-container h4 {
    color: white;
}

.post-title-container h4 {
    font-size: 32px;
    margin: 24px 0 0 0;
    padding-bottom: 20px;
}

.post-news {
    display: flex;
    width: 100%;
    margin-bottom: 40px;
    margin-top: -260px;
    padding: 0 4%;
    z-index: 20;
}

.post-news-first-column, .post-news-second-column {
    display: flex;
    flex-direction: column;
}

.post-news-first-column {
    padding: 20px 20px 20px 0;
    width: 60%;
    border-top: solid 1px rgba(255, 255, 255, .2);
    border-right: 1px solid transparent;
    border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.2)) 1;    
}

.post-news-second-column {
    padding: 20px 0 20px 20px;
    width: 40%;
    border-top: solid 1px rgba(255, 255, 255, .2);
    display: flex;
    flex-direction: column;
}

.post-news-preview {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: solid 1px rgba(0, 0, 0, .2);
}

.post-news-img p {
    color: white;
    font-size: 20px;
}

.post-news-img img {
    width: 100%;
}

.post-news-text img {
    width: 100%;
    margin: 20px 0;
}

.post-news-text iframe {
    width: 100%;
    min-height: 400px;
}

.post-news-description h4 {
    margin: 20px 0;
    font-size: 18px;
    line-height: 150%;
    text-align: justify;
}

.post-news-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

.post-news-text {
    width: 80%;
    text-align: justify;
}

.post-news-text p a,
.post-news-text a {
    background: linear-gradient(to right, rgba(166, 131, 235, 0.2), rgba(100, 181, 246, 0.2));
    color: rgba(7, 21, 52, .9);
    text-decoration: none;
    border-radius: 5px;
    padding: 0 3px;
}

.post-news-text p a:hover,
.post-news-text a:hover {
    background: linear-gradient(to right, rgba(166, 131, 235, 0.4), rgba(100, 181, 246, 0.4));
}

.post-news-text a:not([href]) {
    display: none;
}

.post-news-text img, .post-news-text video {
    width: 100%;
}

.post-title-socials {
    display: none;
}

.post-news-socials {
    display: flex;
    align-items: flex-start;
}

.post-news-socials div img {
    width: 36px;
    height: 36px;
    margin-right: 10px;
}

.post-title-socials div img {
    width: 36px;
    height: 36px;
}

.post-title-socials div {
    margin-right: 10px;
}

.post-title-socials div:last-child {
    margin-right: 0;
}

.more-news {
    display: flex;
    flex-direction: column;
    margin-top: 250px;
    width: 100%;
}

.more-news h4 {
    margin: 30px 0;
}

.more-news-item-container {
    display: flex;
    flex-direction: column;
}

.more-news-item {
    display: flex;
    margin-bottom: 30px;
    text-decoration: none;
    color: black;
}

.item-img {
    display: flex;
    justify-content: center;
    width: 35%;
    height: 150px;
    overflow: hidden;
} 

.item-img img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-top: 5px;
}

.item-description {
    display: flex;
    flex-direction: column;
    width: 65%;
    margin-left: 10px;
}

.item-description p:first-child {
    margin: 0;
}

.item-description p:last-child {
    margin-bottom: 0;
}

.item-description p {
    font-size: 16px;
}

.additional-news-btn button {
    cursor: pointer;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(7, 21, 52, .9);
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.25) inset, 0px -6px 15px 0px rgba(140, 99, 207, 0.4) inset;
    margin: 20px 0 0 0;
    height: 60px;
    font-size: 20px;
    color: white;
    text-transform: uppercase;
}

.additional-news-btn button:hover {
    color: 0px -6px 15px 0px rgba(140, 99, 207, 0.4) inset;
}

@media all and (max-width: 1840px) {
    .item-img {
        height: 140px;
    }
}

@media all and (max-width: 1700px) {
    .item-img {
        height: 125px;
    }
}

@media all and (max-width: 1540px) {
    .item-img {
        height: 110px;
    }
}

@media all and (max-width: 1350px) {
    .post-title-container h4 {
        font-size: 30px;
    }

    .item-img {
        height: 95px;
    }
}

@media all and (max-width: 1200px) {
    .item-description p {
        font-size: 15px;
    }

    .post-title-container h4 {
        font-size: 29px;
    }

    .item-img {
        height: 87px;
    }
}

@media all and (max-width: 1100px) {
    .post-news {
        flex-direction: column;
        align-items: center;
        margin-top: -240px;
    }

    .post-news-first-column {
        padding: 30px 10%;
        width: 100%;
        border-right: none;
    }

    .post-news-socials {
        display: none;
    }

    .post-title-date-cont {
        display: flex;
        justify-content: space-between;
    }

    .post-title-socials {
        display: flex;  
    }

    .post-news-text {
        width: 100%;
    }

    .post-news-second-column {
        padding: 20px 0;
        width: 80%;
        border-top: solid 1px rgba(0, 0, 0, .2);
    }

    .more-news {
        margin-top: 0;
    }

    .item-img {
        width: 45%;
        height: 220px;
    }
    .item-description {
        width: 55%;
    }

    .item-description p {
        font-size: 20px;
    }
}

@media all and (max-width: 1000px) {
    .post-big-container {
        padding-top: 20px;
    }

    .post-title-container h4 {
        padding-bottom: 30px;
    }

    .post-title-container h4 {
        font-size: 28px;
    }

    .post-news {
        margin-top: -220px;
    }

    .item-img {
        height: 185px;
    }
}

@media all and (max-width: 850px) {
    .post-news-first-column {
        padding: 30px 5%;
    }

    .post-news-second-column {
        width: 90%;
    }

    .post-title-container h4 {
        font-size: 26px;
    }

    .item-img {
        height: 180px;
    }
}

@media all and (max-width: 750px) {
    .item-img {
        height: 160px;
    }
}

@media all and (max-width: 650px) {
    .post-news {
        margin-top: -210px;
    }

    .post-news-first-column {
        padding: 30px 0;
    }

    .post-news-second-column {
        width: 100%;
    }

    .post-title-container h4 {
        font-size: 24px;
    }

    .item-img {
        width: 40%;
    }
    .item-description {
        width: 60%;
    }

    .item-description p {
        font-size: 18px;
    }

    .post-title-socials div img {
        width: 32px;
        height: 32px;
    }

    .additional-news-btn button {
        margin: 0;
    }

    .item-img {
        height: 132px;
    }
}

@media all and (max-width: 550px) {
    .post-news {
        margin-top: -200px;
    }

    .post-title-container h4 {
        font-size: 22px;
    }

    .item-description p {
        font-size: 17px;
    }

    .additional-news-btn button {
        margin: 0;
    }

    .item-img {
        height: 115px;
    }
}

@media all and (max-width: 480px) {
    .item-img {
        height: 97px;
    }
}

@media all and (max-width: 410px) {
    .item-description p {
        font-size: 15px;
    }

    .post-title-container h4 {
        font-size: 20px;
    }

    .post-title-socials div img {
        width: 28px;
        height: 28px;
    }

    .post-title-socials div {
        margin-right: 8px;
    }

    .item-img {
        height: 87px;
    }
}

@media all and (max-width: 365px) {
    .post-title-container h4 {
        font-size: 19px;
    }

    .item-img {
        height: 70px;
    }
}

