.news-page {
    width: 100%;
}

.news-page .news-content {
    width: 100%;
    height: fit-content;
    background-color: var(--light-gray-color);
    padding: 60px 120px;
}

.news-page .news-content .news {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.news-page .news-content .news article {
    width: 30%;
    height: fit-content;
    align-self: flex-start;
    min-height: 555px;
    position: relative;
    background: var(--main-white-color);
    padding: 15px;
    box-shadow: 0 0 5px #ddd;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.news-page .news-content .news article .image {
    width: 100%;
    height: 250px;
    margin-bottom: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.news-page .news-content .news article .image img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.news-page .news-content .news article .content {
    width: 100%;
    margin-bottom: 10px;
}

.news-page .news-content .news article .content h2 {
    font-weight: 700;
    font-size: 18px;
    color: var(--main-black-color);
    margin-bottom: 10px;
}

.news-page .news-content .news article .content p {
    font-weight: 600;
    font-size: 16px;
    color: var(--dark-gray-color);
}

.news-page .news-content .news article .content p a {
    color: var(--dark-green-color);
    text-decoration: underline;
}

.news-page .news-content .news article .date {
    width: 100%;
    padding-top: 5px;
    border-top: 1px solid var(--main-gray-color);
    position: absolute;
    bottom: 10px;
}

.news-page .news-content .news article .date small svg path {
    fill: var(--dark-gray-color);
}

.show-new-page {
    width: 100%;
}

.show-new-page .new {
    width: 100%;
    height: fit-content;
    background-color: var(--light-gray-color);
    padding: 60px 120px;
}

.show-new-page .new article {
    width: 100%;
    height: fit-content;
    background-color: var(--main-white-color);
    padding-bottom: 30px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.show-new-page .new .new-image {
    width: 100%;
    /*height: 600px;*/
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.show-new-page .new .new-image img {
    width: 100%;
    /*height: 100%;*/
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.show-new-page .new .new-details {
    width: 100%;
    padding: 0 20px;
}

.show-new-page .new .new-details small {
    color: var(--dark-gray-color);
}

@media only screen and (max-width: 820px) {
    .news-page .news-content {
        padding: 60px;
    }

    .news-page .news-content .news article {
        width: 45%;
    }

    .news-page .news-content .news article .content p {
        font-size: 15px;
    }

    .show-new-page .new {
        padding: 60px;
    }
}

@media only screen and (max-width: 600px) {
    .news-page .news-content {
        padding: 60px 30px;
    }

    .news-page .news-content .news article {
        width: 100%;
        min-height: fit-content;
    }

    .news-page .news-content .news article .content {
        margin-bottom: 20px;
    }

    .news-page .news-content .news article .date {
        position: relative;
    }

    .show-new-page .new {
        padding: 60px 30px;
    }

    .show-new-page .new .new-image {
        height: 300px;
    }
}
