/* ========================================
   News page
   ======================================== */

.news-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 24px 64px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.news-content {
    max-width: 880px;
    margin: 0 auto;
}

.news-hero {
    text-align: center;
    margin-bottom: 48px;
}

.news-kicker {
    display: inline-block;
    padding: 4px 12px;
    background: #c89b3c;
    color: #1a2744;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 16px;
}

.news-hero h1 {
    font-family: Georgia, serif;
    font-size: 40px;
    margin: 0 0 16px;
    color: #1a2744;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.news-hero h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #c89b3c;
    margin: 12px auto 0;
}

.news-lead {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

.news-empty {
    display: flex;
    justify-content: center;
}

.news-empty-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 48px 40px;
    max-width: 520px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(26, 39, 68, 0.04);
}

.news-empty-card h2 {
    font-family: Georgia, serif;
    font-size: 24px;
    margin: 0 0 12px;
    color: #1a2744;
}

.news-empty-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px;
}

.news-cta {
    display: inline-block;
    padding: 12px 24px;
    background: #c89b3c;
    color: #1a2744;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.news-cta:hover {
    background: #d4a648;
    transform: translateY(-1px);
}
/* ========================================
   Skeleton placeholders (empty state UI)
   ======================================== */

.skeleton {
    background: linear-gradient(90deg, #ececec 0%, #f5f5f5 50%, #ececec 100%);
    background-size: 200% 100%;
    animation: yq-shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-line {
    background: linear-gradient(90deg, #ececec 0%, #f5f5f5 50%, #ececec 100%);
    background-size: 200% 100%;
    animation: yq-shimmer 1.5s ease-in-out infinite;
    border-radius: 3px;
}

.skeleton-tile-sm {
    background: linear-gradient(90deg, #ececec 0%, #f5f5f5 50%, #ececec 100%);
    background-size: 200% 100%;
    animation: yq-shimmer 1.5s ease-in-out infinite;
    border-radius: 6px;
    height: 60px;
}

@keyframes yq-shimmer {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .skeleton,
    .skeleton-line,
    .skeleton-tile-sm {
        animation: none;
        background: #ececec;
    }
}
