/* =========================
   NEWS DETAIL
========================= */
.news-detail {
    background: #fff;
    padding: 34px 0 64px;
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}

@media (max-width: 768px) {
    .news-layout {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .news-hero img {
        height: 300px!important;
    }
}

.news-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 14px;
}

.news-breadcrumb a {
    color: var(--blue);
    text-decoration: none;
}

.news-breadcrumb .sep {
    opacity: .7;
}

.news-breadcrumb .current {
    opacity: .9;
}

.news-head {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15, 46, 87, .10);
    margin-bottom: 18px;
}

.news-kicker {
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    font-size: 12px;
    margin-bottom: 10px;
}

.news-h1 {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.12;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
    font-size: 13px;
}

.news-meta .dot {
    opacity: .6;
}

.news-hero {
    margin: 0 0 18px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(2, 8, 23, .16);
    border: 1px solid rgba(15, 46, 87, .12);
    background: #e5e7eb;
}

.news-hero img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.news-hero figcaption {
    padding: 10px 12px;
    font-size: 12px;
    color: var(--muted);
    background: #fff;
}

.news-content .lead {
    font-size: 17px;
    line-height: 1.9;
    color: #374151;
    margin: 0 0 18px;
}

.news-content p {
    margin: 0 0 14px;
    line-height: 1.9;
    color: #374151;
    font-size: 15px;
}

.news-content h2 {
    margin: 26px 0 10px;
    color: var(--blue);
    font-size: 20px;
    font-weight: 700;
}

.news-content h3 {
    margin: 18px 0 10px;
    color: var(--blue);
    font-size: 16px;
    font-weight: 700;
}

blockquote {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid var(--blue);
    background: rgba(15, 46, 87, .05);
    border-radius: 10px;
    color: #1f2937;
    font-weight: 800;
    line-height: 1.7;
}

.news-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0 10px;
}

.news-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(15, 46, 87, .12);
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.tag {
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
    font-size: 12px;
    background: rgba(15, 46, 87, .08);
    border: 1px solid rgba(15, 46, 87, .12);
    padding: 8px 12px;
    border-radius: 999px;
}

.news-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 46, 87, .10);
}

.back-link {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.contact-link {
    text-decoration: none;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 12px;
}

.news-side {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-title {
    color: var(--blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .4px;
}

.side-line {
    width: 54px;
    height: 2px;
    background: var(--blue);
    margin: 10px 0 12px;
}

.share {
    display: flex;
    gap: 10px;
}

.sbtn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(15, 46, 87, .18);
    display: grid;
    place-items: center;
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
}

.sbtn:hover {
    background: rgba(15, 46, 87, .06);
}

.mini {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 8px;
    border-radius: 12px;
}

.mini:hover {
    background: rgba(15, 46, 87, .05);
}

.mini img {
    width: 64px;
    height: 52px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid rgba(15, 46, 87, .12);
}

.mini-title {
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.25;
}

.mini-meta {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 800;
    font-size: 12px;
}
