.news-view {
    width: min(100% - 20px, 920px);
    margin: 0 auto;
    padding: 16px 0 40px;
}
.news-view-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2A5298;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.news-view-back:hover {
    color: #1E3C72;
    transform: translateX(-4px);
}

.news-view-hero {
    background: #fff;
    border: 1px solid #e4ebf5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(30,60,114,0.08);
    margin-bottom: 18px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.news-view-hero:hover {
    box-shadow: 0 10px 28px rgba(30, 60, 114, 0.12);
}
.news-view-hero.has-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.news-view-hero:not(.has-image) .news-view-image.no-image {
    border-radius: 14px 14px 0 0;
    min-height: 100px;
    aspect-ratio: auto;
}
.news-view-image {
    background: #1E3C72;
    min-height: 260px;
    aspect-ratio: 1 / 1;
}
.news-view-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.news-view-image.no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 20px;
    text-align: center;
}
.news-view-head {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.news-view-head h1 {
    margin: 0 0 10px;
    color: #1E3C72;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.3;
}
.news-view-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    font-size: 0.82rem;
    color: #5b6b86;
}
.news-view-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.news-view-meta i { color: #FFD700; }

.news-view-body {
    background: #fff;
    border: 1px solid #e4ebf5;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 2px 10px rgba(30,60,114,0.05);
}
.news-view-body p {
    margin: 0 0 1em;
    line-height: 1.7;
    color: #334155;
    font-size: 0.98rem;
}
.news-view-body p:last-child { margin-bottom: 0; }

.news-view-gallery {
    margin-top: 18px;
}
.news-view-gallery h2 {
    font-size: 1rem;
    color: #1E3C72;
    margin: 0 0 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid #FFD700;
}
.news-view-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.news-view-gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e4ebf5;
    display: block;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.news-view-gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(30, 60, 114, 0.15);
}

.news-view-actions a {
    display: inline-block;
    background: #1E3C72;
    color: #fff;
    text-decoration: none;
    padding: 9px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.news-view-actions a:hover {
    background: #2A5298;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 60, 114, 0.2);
}

.news-view-actions {
    margin-top: 18px;
    text-align: center;
}

@media (max-width: 768px) {
    .news-view { padding: 12px 10px 32px; width: 100%; }
    .news-view-hero.has-image { grid-template-columns: 1fr; }
    .news-view-image { min-height: 0; max-height: 320px; aspect-ratio: 16 / 10; }
    .news-view-head { padding: 16px; }
    .news-view-body { padding: 16px; }
    .news-view-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
