/* =====================================================
   新闻动态页面专用样式
   ===================================================== */

/* News Hero Section - First Screen */
.news-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    overflow: hidden;
    background: #1a1a1a;
}

/* Background Image */
.news-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Dark Overlay */
.news-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

/* Content Container */
.news-hero-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 800px;
    color: #ffffff;
}

.news-hero-title {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 32px;
    color: #ffffff;
    text-shadow: none;
    letter-spacing: 2px;
}

.news-hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: none;
    font-weight: 400;
    max-width: 750px;
}

/* Scroll Indicator */
.news-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: news-bounce 2s infinite;
    cursor: pointer;
}

.news-scroll-indicator svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

@keyframes news-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =====================================================
   第二屏 - 焦点新闻和新闻列表区域样式
   ===================================================== */

.news-featured-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
}

.news-featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* 左侧：焦点新闻 */
.news-featured-left {
    width: 100%;
}

.news-featured-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-featured-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 24px;
    background-color: #f0f0f0;
}

.news-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-featured-link:hover .news-featured-image {
    transform: scale(1.05);
}

.news-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.news-featured-content {
    padding: 0 8px;
}

.news-featured-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #F7941D;
    background-color: #fff5eb;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.news-featured-title {
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-featured-subtitle {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-featured-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 右侧：新闻列表 */
.news-featured-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-featured-item {
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.news-featured-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-featured-item:hover {
    padding-left: 8px;
}

.news-featured-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.news-featured-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-featured-item-link:hover .news-featured-item-title {
    color: #F7941D;
}

.news-featured-item-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-featured-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999999;
}

.news-featured-item-source {
    font-weight: 500;
}

.news-featured-item-date {
    color: #999999;
}

.news-featured-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999999;
}

/* =====================================================
   第三屏 - 新闻列表区域样式
   ===================================================== */

.news-list-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
}

.news-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
}

/* 分类筛选 */
.news-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.news-category-btn {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: #999999;
    background-color: transparent;
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    padding-bottom: 12px;
}

.news-category-btn:hover {
    color: #F7941D;
}

.news-category-btn.active {
    color: #F7941D;
}

.news-category-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F7941D;
}

/* 新闻列表垂直布局 */
.news-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 60px;
}

/* 新闻列表项 */
.news-list-item {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.news-list-item:last-child {
    border-bottom: none;
}

.news-list-item:hover {
    background-color: #fafafa;
}

.news-list-item-link {
    display: flex;
    gap: 24px;
    text-decoration: none;
    color: inherit;
    padding: 24px 0;
}

.news-list-item-image-wrapper {
    position: relative;
    width: 400px;
    min-width: 400px;
    height: 240px;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-list-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-list-item:hover .news-list-item-image {
    transform: scale(1.05);
}

.news-list-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px 0;
}

.news-list-item-title {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.news-list-item-link:hover .news-list-item-title {
    color: #F7941D;
}

.news-list-item-description {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-list-item-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #999999;
}

.news-list-item-source {
    font-weight: 500;
}

.news-list-item-date {
    color: #999999;
}

/* 空状态 */
.news-empty {
    text-align: center;
    padding: 80px 20px;
}

.news-empty-text {
    font-size: 18px;
    color: #999999;
}

/* 分页 */
.news-pagination {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
}

.news-pagination .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.news-pagination .pagination li {
    display: inline-block;
}

.news-pagination .pagination a,
.news-pagination .pagination span {
    display: inline-block;
    padding: 10px 16px;
    font-size: 14px;
    color: #666666;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-pagination .pagination a:hover {
    color: #F7941D;
    border-color: #F7941D;
    background-color: #fff5eb;
}

.news-pagination .pagination .active span {
    color: #ffffff;
    background-color: #F7941D;
    border-color: #F7941D;
}

/* 响应式设计 */
@media (max-width: 1440px) {
    .news-hero-title {
        font-size: 56px;
    }
    
    .news-hero-description {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .news-hero-content {
        left: 40px;
        max-width: 600px;
    }
    
    .news-hero-title {
        font-size: 48px;
        margin-bottom: 24px;
    }
    
    .news-hero-description {
        font-size: 16px;
    }
    
    .news-featured-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }
    
    .news-featured-image-wrapper {
        height: 400px;
    }
    
    .news-list-container {
        padding: 0 40px;
    }
    
    .news-list-item-image-wrapper {
        width: 300px;
        min-width: 300px;
        height: 200px;
    }
    
    .news-list-item-link {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .news-hero-section {
        height: 80vh;
        min-height: 600px;
    }
    
    .news-hero-content {
        left: 20px;
        right: 20px;
        max-width: 100%;
        padding-right: 20px;
        color: #000000;
    }
    
    .news-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
        color: #000000;
    }
    
    .news-hero-description {
        font-size: 14px;
        line-height: 1.6;
        color: #000000;
    }
    
    .news-featured-section {
        padding: 60px 0;
    }
    
    .news-featured-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .news-featured-image-wrapper {
        height: 300px;
    }
    
    .news-featured-title {
        font-size: 24px;
    }
    
    .news-featured-subtitle {
        font-size: 16px;
    }
    
    .news-featured-description {
        font-size: 14px;
    }
    
    .news-featured-item-title {
        font-size: 16px;
    }
    
    .news-list-section {
        padding: 60px 0;
    }
    
    .news-list-container {
        padding: 0 20px;
    }
    
    .news-category-filter {
        margin-bottom: 30px;
        padding-bottom: 16px;
        gap: 24px;
    }
    
    .news-category-btn {
        padding-bottom: 10px;
        font-size: 15px;
    }
    
    .news-list-item-link {
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
    }
    
    .news-list-item-image-wrapper {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
    
    .news-list-item-content {
        padding: 0;
    }
    
    .news-list-item-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .news-list-item-description {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .news-list-item-meta {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .news-hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .news-hero-content {
        left: 16px;
        right: 16px;
    }
    
    .news-hero-title {
        font-size: 28px;
        margin-bottom: 16px;
        letter-spacing: 1px;
    }
    
    .news-hero-description {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .news-scroll-indicator {
        bottom: 20px;
    }
    
    .news-scroll-indicator svg {
        width: 24px;
        height: 24px;
    }
    
    .news-featured-section {
        padding: 40px 0;
    }
    
    .news-featured-container {
        padding: 0 16px;
        gap: 24px;
    }
    
    .news-featured-image-wrapper {
        height: 250px;
        border-radius: 8px;
    }
    
    .news-featured-title {
        font-size: 20px;
    }
    
    .news-featured-subtitle {
        font-size: 14px;
    }
    
    .news-featured-description {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .news-featured-item {
        padding-bottom: 20px;
    }
    
    .news-featured-item-title {
        font-size: 15px;
    }
    
    .news-featured-item-description {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
    
    .news-featured-item-meta {
        font-size: 12px;
    }
    
    .news-list-section {
        padding: 40px 0;
    }
    
    .news-category-filter {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px;
        gap: 20px;
    }
    
    .news-category-btn {
        padding-bottom: 8px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .news-list-item-link {
        padding: 16px 0;
    }
    
    .news-list-item-image-wrapper {
        height: 180px;
    }
    
    .news-list-item-title {
        font-size: 16px;
    }
    
    .news-list-item-description {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
    
    .news-list-item-meta {
        font-size: 12px;
    }
}

/* =====================================================
   新闻详情页样式
   ===================================================== */

.news-detail-section {
    width: 100%;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 200px);
    padding: 80px 0 100px;
    min-height: 60vh;
}

.news-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 80px;
}

/* 返回按钮 */
.news-detail-back {
    margin-bottom: 32px;
}

.news-detail-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #666666;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.news-detail-back-link:hover {
    color: #F7941D;
    border-color: #F7941D;
    background-color: #fff5eb;
    transform: translateX(-4px);
}

.news-detail-back-link::before {
    content: '←';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.news-detail-back-link:hover::before {
    transform: translateX(-4px);
}

/* 文章卡片 */
.news-detail-article {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 48px 56px;
    transition: box-shadow 0.3s ease;
}

.news-detail-article:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* 标题 */
.news-detail-title {
    font-size: 36px;
    font-weight: bold;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 20px;
}

.news-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #F7941D, #ffb366);
    border-radius: 2px;
}

/* 元信息 */
.news-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 14px;
    color: #999999;
    margin-bottom: 32px;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.news-detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-detail-meta-separator {
    color: #e0e0e0;
    margin: 0 4px;
}

.news-detail-meta-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: #fff5eb;
    color: #F7941D;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
}

.news-detail-meta-views {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-detail-meta-views::before {
    content: '👁';
    font-size: 14px;
}

/* 主图 */
.news-detail-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-detail-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* 内容区域 */
.news-detail-content {
    font-size: 16px;
    line-height: 1.9;
    color: #333333;
    margin-bottom: 40px;
}

.news-detail-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.news-detail-content h2,
.news-detail-content h3,
.news-detail-content h4 {
    color: #333333;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.news-detail-content h2 {
    font-size: 24px;
    border-left: 4px solid #F7941D;
    padding-left: 16px;
}

.news-detail-content h3 {
    font-size: 20px;
}

.news-detail-content h4 {
    font-size: 18px;
}

.news-detail-content ul,
.news-detail-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.news-detail-content li {
    margin-bottom: 12px;
}

.news-detail-content a {
    color: #F7941D;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.news-detail-content a:hover {
    border-bottom-color: #F7941D;
}

.news-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.news-detail-content blockquote {
    border-left: 4px solid #F7941D;
    padding-left: 20px;
    margin: 24px 0;
    color: #666666;
    font-style: italic;
    background-color: #fafafa;
    padding: 16px 20px;
    border-radius: 4px;
}

/* 图片网格 */
.news-detail-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.news-detail-image-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-detail-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-detail-image-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-detail-image-item:hover img {
    transform: scale(1.1);
}

/* 上一篇/下一篇导航 */
.news-detail-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #f0f0f0;
}

.news-detail-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.news-detail-nav-item:hover {
    background-color: #fff5eb;
    border-color: #F7941D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 148, 29, 0.15);
}

.news-detail-nav-item.disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

.news-detail-nav-item.disabled:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
}

.news-detail-nav-label {
    font-size: 13px;
    color: #999999;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-detail-nav-title {
    font-size: 15px;
    color: #333333;
    font-weight: 500;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-detail-nav-item:hover .news-detail-nav-title {
    color: #F7941D;
}

.news-detail-nav-item.prev {
    text-align: left;
}

.news-detail-nav-item.next {
    text-align: right;
}

/* 空状态 */
.news-detail-empty {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.news-detail-empty-text {
    font-size: 18px;
    color: #999999;
    margin-bottom: 24px;
}

.news-detail-empty-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #F7941D;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-detail-empty-link:hover {
    background-color: #e6851a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 148, 29, 0.3);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .news-detail-container {
        padding: 0 40px;
    }
    
    .news-detail-article {
        padding: 40px 48px;
    }
    
    .news-detail-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .news-detail-section {
        padding: 60px 0 80px;
    }
    
    .news-detail-container {
        padding: 0 20px;
    }
    
    .news-detail-article {
        padding: 32px 24px;
        border-radius: 12px;
    }
    
    .news-detail-title {
        font-size: 28px;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    
    .news-detail-title::after {
        width: 50px;
        height: 2px;
    }
    
    .news-detail-meta {
        font-size: 13px;
        margin-bottom: 24px;
        padding: 12px 0;
    }
    
    .news-detail-content {
        font-size: 15px;
        line-height: 1.8;
    }
    
    .news-detail-content h2 {
        font-size: 22px;
    }
    
    .news-detail-content h3 {
        font-size: 18px;
    }
    
    .news-detail-content h4 {
        font-size: 16px;
    }
    
    .news-detail-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .news-detail-navigation {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        padding-top: 24px;
    }
    
    .news-detail-nav-item {
        width: 100%;
    }
    
    .news-detail-nav-item.prev,
    .news-detail-nav-item.next {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .news-detail-section {
        padding: 40px 0 60px;
    }
    
    .news-detail-container {
        padding: 0 16px;
    }
    
    .news-detail-article {
        padding: 24px 20px;
    }
    
    .news-detail-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .news-detail-meta {
        font-size: 12px;
        gap: 8px;
    }
    
    .news-detail-content {
        font-size: 14px;
    }
    
    .news-detail-images {
        grid-template-columns: 1fr;
    }
    
    .news-detail-back-link {
        font-size: 14px;
        padding: 6px 12px;
    }
}

