header {
    position: sticky;
}

.news {
    color: var(--color-primary);
}

.news__banner {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news__heading {
    font-size: clamp(20px, 1.2vw + 0.5rem, 50px);
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    text-align: left;
    color: var(--color-primary);
}

.news__text {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    color: #444;
    margin-bottom: 2rem;
}

/* Mobile */
@media (max-width: 767.9px) {
    .news__title {
        margin-top: 20px;
    }

    .news {
        margin-bottom: 20px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024.9px) {
    .news__title {
        margin-top: 30px;
    }

    .news {
        margin-bottom: 30px;
    }
}

/* PC */
@media (min-width: 1025px) {
    .news__title {
        margin-top: 40px;
    }

    .news {
        margin-bottom: 40px;
    }
}