/* 新闻详情页面 - 首届萌新会 */

/* 基础布局 */
.news-section--newcomer-gathering {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-container--newcomer-gathering {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* 网格区域映射 */
.news-content--row1 { grid-area: 1 / 1 / 2 / 2; }
.news-image--row1 { grid-area: 1 / 2 / 2 / 3; }

.news-image--row2 { grid-area: 2 / 1 / 3 / 2; }
.news-content--row2 { grid-area: 2 / 2 / 3 / 3; }

.news-content--row3 { grid-area: 3 / 1 / 4 / 2; }
.news-image--row3 { grid-area: 3 / 2 / 4 / 3; }

.news-gallery { grid-area: 4 / 1 / 5 / 3; }
.news-blessing { grid-area: 5 / 1 / 6 / 3; }

/* 文字内容样式 */
.news-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.news-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.news-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.news-lead {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.news-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin: 0;
    text-align: justify;
}

/* 图片容器样式 */
.news-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.image-frame {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

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

.image-frame img:hover {
    transform: scale(1.05);
}

/* 图片画廊样式 */
.news-gallery {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-gallery .news-image {
    height: 250px;
}

.news-gallery .image-frame {
    height: 100%;
}

/* N3-6.png 矢量图特殊样式 - 完全透明背景 */
.news-gallery .news-image:nth-child(2) {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0;
}

.news-gallery .news-image:nth-child(2) .image-frame {
    background: transparent !important;
    border-radius: 0;
}

.news-gallery .news-image:nth-child(2) .image-frame img[src*="N3-6.png"] {
    background: transparent !important;
    mix-blend-mode: normal;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
    object-fit: contain;
}

.news-gallery .news-image:nth-child(2):hover {
    transform: translateY(-3px);
    box-shadow: none !important;
}

/* 祝福语样式 */
.news-blessing {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.news-blessing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.4"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.5"/></svg>');
    pointer-events: none;
}

.news-blessing p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    margin: 0;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

/* 响应式 */
@media (max-width: 768px) {
    .news-container--newcomer-gathering {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* 移动端重新排列 */
    .news-content--row1 { grid-area: 1 / 1 / 2 / 2; }
    .news-image--row1 { grid-area: 2 / 1 / 3 / 2; }
    
    .news-content--row2 { grid-area: 3 / 1 / 4 / 2; }
    .news-image--row2 { grid-area: 4 / 1 / 5 / 2; }
    
    .news-content--row3 { grid-area: 5 / 1 / 6 / 2; }
    .news-image--row3 { grid-area: 6 / 1 / 7 / 2; }
    
    .news-gallery { grid-area: 7 / 1 / 8 / 2; }
    .news-blessing { grid-area: 8 / 1 / 9 / 2; }
    
    .news-title {
        font-size: 24px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .image-frame {
        height: 250px;
    }
    
    .news-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 40px;
    }
    
    .news-gallery .news-image {
        height: 200px;
    }
    
    .news-blessing {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .news-blessing p {
        font-size: 16px;
    }
    
    .news-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .news-section--newcomer-gathering {
        padding: 20px 15px;
    }
    
    .news-title {
        font-size: 20px;
    }
    
    .image-frame {
        height: 200px;
    }
    
    .news-gallery .news-image {
        height: 180px;
    }
    
    .news-blessing p {
        font-size: 14px;
    }
    
    .news-content p {
        font-size: 14px;
    }
}