* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fafbfe;
    overflow-x: hidden;
    color: #333;
    font-family: "ALK Sanet", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.logo-warwera {
    width: 250px;
    padding: 5px;
    border-radius: 4px;
}

.service-content {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 50px 111px 20px;
}

/* =========================
   NEWS TITLE
========================= */

.news-title {
    width: 100%;
    margin-bottom: 30px;
}

.news-title h1 {
    margin: 0;
    color: rgb(28, 27, 27);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    word-break: break-word;
}

/* =========================
   NEWS ARTICLE
========================= */

.news-article {
    width: 100%;
}

.news-image {
    width: 100%;
}

.news-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.news-text {
    width: 100%;
    margin-top: 35px;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.news-text p {
    margin: 0 0 22px;
}

.news-text p:last-child {
    margin-bottom: 0;
}

/* =========================
   FOOTER TEXT
========================= */

.copyright {
    text-align: center;
    font-size: 18px;
    color: #858997;
    padding-top: 30px;
    padding-bottom: 20px;
    margin-top: auto;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
    .service-content {
        padding: 40px 60px 20px;
    }

    .news-title {
        margin-bottom: 24px;
    }

    .news-title h1 {
        font-size: 26px;
        line-height: 1.35;
    }

    .news-image img {
        height: 340px;
    }

    .news-text {
        margin-top: 28px;
        font-size: 17px;
        line-height: 1.75;
    }

    .news-text p {
        margin-bottom: 20px;
    }

    .copyright {
        font-size: 17px;
        padding-top: 40px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .logo-warwera {
        width: 190px;
        padding: 3px;
    }

    .service-content {
        padding: 30px 20px 20px;
    }

    .news-title {
        margin-bottom: 20px;
        font-size: 20px;
    }

    .news-title h1 {
        font-size: 22px;
        line-height: 1.4;
    }

    .news-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .news-text {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.7;
    }

    .news-text p {
        margin-bottom: 18px;
    }

    .copyright {
        font-size: 16px;
        padding-top: 32px;
        padding-bottom: 18px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
    .service-content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .news-title h1 {
        font-size: 20px;
    }

    .news-text {
        font-size: 15px;
        line-height: 1.65;
    }

    .copyright {
        font-size: 15px;
    }
}