/* ================================================================
   最新消息 — 單欄圖文列表（沿用 style.css 設計 token）
   Aesthetic pass: stronger hierarchy, --r-md radius, tighter rhythm
   ================================================================ */
.news-list {
    display: grid;
    gap: 1.25rem;
    max-width: 960px;
    margin: 0 auto;
}

.news-item {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-md, 16px);
    box-shadow: var(--s-xs);
    overflow: hidden;
    transition: var(--ease-decel);
}
.news-item:hover {
    box-shadow: var(--s-md);
    border-color: var(--border-mid);
    transform: translateY(-2px);
}
.news-item-img {
    background: var(--bg-page);
    border-right: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: 180px;
    aspect-ratio: 4 / 3;
}
.news-item-img a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-item-body {
    padding: 1.35rem 1.6rem 1.5rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-item-title {
    font-family: 'Inter', 'Noto Sans TC', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main, #102A35);
    line-height: 1.4;
    margin: 0 0 0.7rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid var(--border-light);
}
.news-item-lines {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-body, #334852);
}
.news-item-lines > div { margin-bottom: 0.3rem; }
.news-item-lines > div:last-child { margin-bottom: 0; }
.news-item-lines .is-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.02rem;
    margin-top: 0.45rem;
}
.news-item-lines strong {
    color: var(--text-main, #102A35);
    font-weight: 700;
}

@media (max-width: 720px) {
    .news-list { gap: 1rem; }
    .news-item { grid-template-columns: 1fr; }
    .news-item-img {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        aspect-ratio: 16 / 10;
        min-height: 0;
    }
    .news-item-body { padding: 1.1rem 1.2rem 1.3rem; }
    .news-item-title { font-size: 1.05rem; margin-bottom: 0.55rem; padding-bottom: 0.5rem; }
    .news-item-lines { font-size: 0.9rem; line-height: 1.65; }
}

.news-item-img[onclick] {
    cursor: zoom-in;
}
