.news-wrap {
    background: #fafafa;
    padding: 48px 0 96px;
}

.news-container {
    width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.news-hero {
}

.news-eyebrow {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #999;
    margin-bottom: 6px;
}

.news-title-main {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px;
    color: #111;
    text-align: center;
}

.news-subtitle {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.news-list-wrap {
}

.news-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.news-eyebrow--muted {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.08em;
    margin: 0 0 4px;
}

.news-list-title {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    color: #111;
}

.news-list-hint {
    margin: 2px 0 0;
    color: #777;
    font-size: 13px;
}

.news-list {
    display: grid;
    gap: 12px;
}

.news-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-decoration: none;
    color: #111;
    transition: border-color .12s ease, box-shadow .12s ease, transform .12s ease;
}

.news-card:hover {
    border-color: #cfcfcf;
    box-shadow: 0 10px 18px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.news-card__meta {
    display: inline-flex;
    font-size: 12px;
    color: #666;
}

.news-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.02em;
    font-size: 10px;
}

.news-card__title {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}

.news-card__excerpt {
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

/* detail */
.news-detail-hero {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 18px 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.news-detail-title {
    font-size: 22px;
    font-weight: 900;
    margin: 4px 0 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e7eb;
}

.news-detail-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 22px 20px 18px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.news-date {
    font-size: 12px;
    font-weight: 700;
    color: #555;
}

.news-body {
    line-height: 1.7;
    color: #222;
    font-size: 15px;
    margin-top: 4px;
}

.news-body p { margin: 0 0 12px; }
.news-body ul { margin: 0 0 12px 18px; }
.news-body a { color: #111; text-decoration: underline; }

.news-back {
    margin-top: 16px;
}

@media (max-width: 960px) {
    .news-container { width: 100%; padding: 0 18px; }
}

@media (max-width: 640px) {
    .news-card {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
    .news-card__more { justify-self: end; }
}
