﻿.news-wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 28px 18px 60px;
}

.news-hero, .post-hero {
    border-radius: 18px;
    padding: 26px 18px;
    background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(245,250,255,.9));
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.news-hero-inner, .post-hero-inner {
    max-width: 760px;
}

.news-cta-row {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid rgba(0,0,0,.12);
    background: white;
    color: inherit;
    transition: transform .12s ease, box-shadow .12s ease;
}

    .btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(0,0,0,.08);
    }

.btn-ghost {
    background: transparent;
}

.news-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(260px, 1fr) );
    gap: 14px;
}

.news-item {
    display: block;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.85);
    text-decoration: none;
    color: inherit;
}

    .news-item:hover {
        box-shadow: 0 10px 26px rgba(0,0,0,.08);
    }

.news-item-date {
    opacity: .7;
    font-size: 13px;
}

.news-item-title {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 650;
}

.news-item-desc {
    margin-top: 8px;
    opacity: .85;
    line-height: 1.5;
}

.news-item-link {
    margin-top: 10px;
    opacity: .8;
    font-weight: 600;
}

.news-card {
    margin-top: 18px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.85);
}

.post-date {
    opacity: .7;
    font-size: 13px;
}

.post-lead {
    opacity: .9;
    line-height: 1.6;
    margin-top: 10px;
}

.post-body {
    margin-top: 18px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.85);
    line-height: 1.7;
}

    .post-body p {
        margin: 0 0 12px;
    }

.post-sep {
    margin: 18px 0;
    border: none;
    height: 1px;
    background: rgba(0,0,0,.1);
}

.post-bottom-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.post-box {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.9);
}

.news-footer {
    margin-top: 18px;
    opacity: .85;
}
