/* styles-updates-page.css
   업데이트 목록 페이지 — 항목 카드 · 상세 본문 · 빈 상태
   (분할 전 styles.css 의 545~646 줄 — 선언 순서 그대로 옮김) */
/* Updates page - 상세 내용 표시 */
.updates-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.update-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.update-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.update-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.update-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.update-date {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: 0.02em;
}

.update-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.update-title-link {
    color: var(--text);
    text-decoration: none;
}
.update-title-link:hover {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.update-cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(90, 162, 255, 0.45);
    background: rgba(90, 162, 255, 0.12);
    color: var(--brand);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 900;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}
.update-cta:hover {
    background: rgba(90, 162, 255, 0.18);
    border-color: rgba(90, 162, 255, 0.65);
    color: var(--brand-600);
}
.update-detail {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.update-detail p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    word-break: keep-all;
}

.updates-page .updates-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
    font-size: 16px;
}

