.page-news,
.page-news-detail {
    padding: 2.5rem 0 4rem;
}

.page-news__head {
    margin-bottom: 3rem;
    text-align: center;
}

.page-news__title {
    margin: 0 0 1rem;
    color: #111827;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-news__lead {
    margin: 0 auto;
    max-width: 42rem;
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.7;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.news-card__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #f3f4f6;
}

.news-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card__media:hover img {
    transform: scale(1.05);
}

.news-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.5rem;
}

.news-card__time {
    margin-bottom: 0.5rem;
    color: #6b7280;
    font-size: 0.75rem;
}

.news-card__title {
    margin: 0 0 0.5rem;
    color: #111827;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
}

.news-card__title a:hover {
    color: var(--bags-1);
}

.news-card__summary {
    flex: 1;
    margin: 0;
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
}

.news-card__more {
    margin-top: 1rem;
    color: var(--bags-1);
    font-weight: 500;
    font-size: 0.875rem;
}

.news-card__more:hover {
    text-decoration: underline;
}

.news-empty {
    padding: 4rem 0;
    color: var(--bags-muted);
    text-align: center;
}

.news-detail {
    max-width: 56rem;
    margin: 0 auto;
}

.news-detail__header {
    margin-bottom: 2rem;
}

.news-detail__time {
    color: #6b7280;
    font-size: 0.875rem;
}

.news-detail__title {
    margin: 0.5rem 0 1rem;
    color: #111827;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
}

.news-detail__lead {
    margin: 0;
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.75;
}

.news-detail__cover {
    overflow: hidden;
    margin-bottom: 2.5rem;
    border-radius: var(--bags-radius);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.news-detail__cover img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}

.article-content {
    color: #374151;
}

.article-content h2 {
    margin: 2rem 0 1rem;
    color: #111827;
    font-weight: 700;
    font-size: 1.5rem;
}

.article-content h3 {
    margin: 1.5rem 0 0.75rem;
    color: #374151;
    font-weight: 600;
    font-size: 1.25rem;
}

.article-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.article-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.article-content th {
    padding: 0.75rem 1rem;
    background: #8b4513;
    color: #fff;
    text-align: left;
}

.article-content td {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
}

.article-content tr:nth-child(even) td {
    background: #f9fafb;
}

.news-cta {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: var(--bags-radius);
    background: var(--bags-1);
    color: #fff;
    text-align: center;
}

.news-cta__title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.news-cta__desc {
    margin: 0 0 1.5rem;
    color: #e5e7eb;
}

.news-cta .btn-gold {
    display: inline-flex;
    padding: 0.75rem 2rem;
    border-radius: 999px;
    background: var(--bags-2);
    color: var(--bags-1);
    font-weight: 700;
}

.news-cta .btn-gold:hover {
    background: #facc15;
}

.news-related {
    margin-top: 4rem;
}

.news-related__title {
    margin: 0 0 1.5rem;
    color: #111827;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-related__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.news-related__item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
}

.news-related__item img {
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 0.5rem;
}

.news-related__item h3 {
    margin: 0;
    color: #111827;
    font-size: 1rem;
    font-weight: 600;
}

.news-related__item:hover h3 {
    color: var(--bags-1);
}

.news-related__item p {
    margin: 0.35rem 0 0;
    color: #6b7280;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .page-news__title,
    .news-detail__title {
        font-size: 2.25rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-related__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

