.news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9%;
    padding: 5% 0;
    justify-items: center;
}

.news img {
    border-radius: 50%;
    width: 23vw;
    height: 23vw;
    min-width: 450px;
    /* or any other appropriate size */
    min-height: 450px;
}

.news-img {
    width: 100%;
    display: grid;
    justify-items: end;
}

.news-container {
    display: grid;
    justify-items: center;
    padding: 5% 5% 10% 5%;
}

.news-container h2 {
    font-size: 2em;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 15px;
}

.news-article {
    display: grid;
    gap: 24px;
    width: min(100%, 960px);
}

.news-article article {
    padding: 24px;
    border: 1px solid #3a3a3a;
    border-radius: 15px;
    background-color: #252525;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.news-article article + article {
    margin-top: 0;
}

.news-article article img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 16px auto;
    border-radius: 8px;
}

.news-article article ul,
.news-article article ol {
    margin: 12px 0;
    padding-left: 1.35rem;
}

.news-article article li {
    padding-left: 4px;
}

.news-description {
    overflow: hidden;
}

.news-article-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 20px;
}

.btn-news {
    background-color: #1551f5;
    color: #fff;
}
.btn-news:hover{
    box-shadow:  2px 2px 7px #252525;
}
.news-article h2 {
    font-size: 1.5em;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 15px;
}

.news-container a {
    text-decoration: none;
    color: #fff;
}

.news-article-bottom a {
    padding: 5px;
    border-radius: 5px;
}

.news-content {
    justify-items: start;
    margin: 0 auto;
    width: 100%;
}

.news-content h3,
.news-content p {
    text-align: start;
    width: 80%;
    padding-right: 20%;
}

.news-content h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.news-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    justify-items: start;
}

.news-content a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1551f5;
    color: rgb(255, 255, 255);
    border: none;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    font-size: 1.1em;
    text-decoration: none;
    margin-left: 47%;

}

@media (max-width: 1800px) {

    .news-content h3,
    .news-content p {
        padding-right: 10%;
    }

    .news-content {
        justify-items: center;
    }

    .news-img {
        justify-items: center;
    }
}

@media (max-width: 1400px) {

    .news-content h3,
    .news-content p {
        padding-right: 5%;
    }

    .news {
        gap: 0;
    }
}

@media (max-width: 1300px) {
    .news {
        grid-template-columns: 1fr;
    }

    .news-img {
        padding-top: 5%;
    }
}


@media (max-width: 768px) {
    .news-container {
        padding: 24px 16px 48px;
    }

    .news-container > h2 {
        margin: 0 0 20px;
        font-size: 1.75rem;
    }

    .news-article {
        gap: 16px;
        width: 100%;
    }

    .news-article article {
        min-width: 0;
        padding: 16px;
        border-radius: 12px;
    }

    .news-article article:not(:last-child) {
        margin-bottom: 8px;
    }

    .news-article h2 {
        margin: 0 0 12px;
        font-size: 1.25rem;
        line-height: 1.3;
        overflow-wrap: anywhere;
    }

    .news-article article p,
    .news-article article li {
        overflow-wrap: anywhere;
    }

    .news-description {
        position: relative;
        max-height: 16rem;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        overflow: hidden;
    }

    .news-description p {
        width: auto !important;
        max-width: 100% !important;
        margin: 0 0 10px !important;
        padding: 0 !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        text-indent: 0 !important;
    }

    .news-description p span {
        font-size: inherit !important;
        line-height: inherit !important;
    }

    .news-description p[style*="mso-list"] {
        padding-left: 0 !important;
        text-indent: 0 !important;
    }

    .news-article article ul,
    .news-article article ol {
        margin: 10px 0;
        padding-left: 1.25rem;
    }

    .news-article article span[style*="mso-list"] {
        display: inline-block;
        width: 0.9rem !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
        vertical-align: baseline;
        white-space: nowrap;
    }

    .news-article article span[style*="mso-list"] > span {
        font-size: 0 !important;
    }

    .news-article-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 16px;
    }

    .news-article-bottom .published-date {
        margin: 0;
        font-size: 0.9rem;
    }

    .news-article-bottom .btn-news {
        display: block;
        width: 100%;
        padding: 10px 12px;
        text-align: center;
    }

    .news {
        grid-template-columns: 1fr;
        justify-items: center;
        padding: 5% 5% 15% 5%;
        grid-template-rows: auto;
        height: 100%;
    }

    .news-content {
        padding: 0;
        height: 100%;
    }

    .news-content h3,
    .news-content p {
        width: 100%;
        padding: 0;
    }

    .news-content h3 {
        font-size: 1.1em;
    }

    .news-content p {
        font-size: 0.8em;
        justify-items: start;
    }

    .news-img img {
        width: 75vw;
        height: 75vw;
        min-width: 300px;
        /* or any other appropriate size */
        min-height: 300px;
    }



}
