* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.news h2 {
    font-weight: 600;
    margin-bottom: 0 !important;
}

.writer {
    column-gap: 10px;
    display: flex;
    align-items: center;
}

.writer span:first-child {
    font-weight: 600;
}

.writer span:nth-child(2) {
    color: #6e6e71;
    font-size: 13px;
}

.news-body p {
    margin-bottom: 0 !important;
    text-align: justify;
    font-size: 14px;
}

.news-body p:first-of-type {
    padding-bottom: 10px;
}

.news-img {
    padding-bottom: 10px;
    padding-top: 10px;
    display: flex;
    justify-content: center;
}

.news-img img {
    max-width: 100%;
    max-height: 100%;
}

@media(min-width: 600px) {
    .news-body p {
        font-size: 16px !important;
    }
}

@media(min-width: 768px) {
    .news-body p {
        font-size: 18px !important;
    }

    .news h2 {
        font-weight: 700;
    }
}

@media(min-width: 992px) {
    .news-body p {
        font-size: 20px !important;
    }
}