/* ===========================
   News Page
   =========================== */

.news-page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 160px var(--content-padding) 100px;
}

.news-page__title {
    font-size: clamp(45px, 7.3vw, 105px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #000;
    margin-bottom: 30px;
}

/* ── News List ── */
.news-list {
    border-top: 1px solid #000;
}

/* ── News Item ── */
.news-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 40px 0;
    border-bottom: 1px solid #000;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

.news-item:hover {
    opacity: 0.7;
}

/* Text (left) */
.news-item__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item__title {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #000;
    margin-bottom: 20px;
}

.news-item__desc {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: #000;
}

.news-item__link {
    display: inline-block;
    margin-top: 20px;
    font-size: 28px;
    font-weight: 500;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Image (right) */
.news-item__image {
    width: 100%;
    aspect-ratio: 650 / 350;
    overflow: hidden;
}

.news-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-item:hover .news-item__image img {
    transform: scale(1.03);
}

/* ===========================
   Tablet (<=1024px)
   =========================== */
@media (max-width: 1024px) {
    .news-page {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    .news-item__title {
        font-size: 32px;
    }

    .news-item__desc {
        font-size: 20px;
    }
}

/* ===========================
   Mobile (<=768px)
   =========================== */
@media (max-width: 768px) {
    .news-page {
        padding-top: 110px;
        padding-bottom: 60px;
    }

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

    .news-item {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 0;
    }

    .news-item__image {
        aspect-ratio: 362 / 223;
    }

    .news-item__title {
        font-size: 23px;
        margin-bottom: 10px;
    }

    .news-item__desc {
        font-size: 18px;
    }
}
