html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Anuphan', 'Noto Sans Thai', sans-serif;
    color: #111827;
    background:
        radial-gradient(circle at top left, rgba(251, 146, 60, 0.12), transparent 26%),
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.09), transparent 28%),
        linear-gradient(180deg, #f8fafc 0%, #f3f4f6 45%, #eef2f7 100%);
}

.hero-copy {
    font-family: 'Anuphan', sans-serif;
    letter-spacing: -0.03em;
}

.news-list {
    border-top: 2px solid rgba(17, 24, 39, 0.82);
    border-bottom: 2px solid rgba(17, 24, 39, 0.82);
}

.news-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 0.8rem;
    align-items: start;
    padding: 0.72rem 0;
    text-decoration: none;
    color: inherit;
    border-top: 1px solid rgba(17, 24, 39, 0.82);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.news-item:first-child {
    border-top: none;
}

.news-item:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.news-date {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    min-width: 0;
}

.news-weekday {
    font-size: 0.8rem;
    line-height: 1;
    font-weight: 600;
    color: #374151;
    margin-top: 0.36rem;
    text-transform: uppercase;
}

.news-day {
    font-family: 'Anuphan', sans-serif;
    font-size: clamp(1.95rem, 2.7vw, 2.45rem);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.06em;
    color: #111827;
    min-width: 2.75rem;
}

.news-meta {
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
    min-width: 0;
}

.news-time {
    font-size: 0.74rem;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
    letter-spacing: 0.01em;
}

.news-title {
    font-size: 0.9rem;
    line-height: 1.22;
    font-weight: 600;
    color: #111827;
}

.news-detail {
    margin-top: 0.18rem;
    font-size: 0.78rem;
    line-height: 1.38;
    color: #4b5563;
    max-width: 42rem;
}

.news-empty {
    padding: 2.25rem 1rem;
    text-align: center;
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 767px) {
    .news-item {
        grid-template-columns: 1fr;
        gap: 0.35rem;
        padding: 0.68rem 0;
    }

    .news-date {
        gap: 0.48rem;
    }

    .news-weekday {
        margin-top: 0.32rem;
        font-size: 0.74rem;
    }

    .news-day {
        min-width: 2.45rem;
        font-size: 1.95rem;
    }

    .news-title {
        font-size: 0.84rem;
    }

    .news-detail {
        font-size: 0.74rem;
        line-height: 1.34;
    }
}
