/**
 * about.html 页面专用样式
 * 包含编辑风格文章排版、媒体报道列表等样式
 */

/* ============================================
   1. 编辑风格文章排版
   ============================================ */
.editorial-article {
    max-width: 720px;
    margin: 0 auto;
}

.editorial-article h3 {
    font-family: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #0A0A0A;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.editorial-article h3:first-child {
    margin-top: 0;
}

.editorial-article p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 1.5rem;
}

.editorial-article strong {
    color: #0A0A0A;
    font-weight: 600;
}

.editorial-article .highlight-quote {
    font-family: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563EB;
    line-height: 1.5;
    padding: 1.5rem 0;
    margin: 2rem 0;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

/* ============================================
   2. 首字下沉效果
   ============================================ */
.drop-cap::first-letter {
    font-family: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
    float: left;
    font-size: 4.5rem;
    line-height: 0.8;
    padding-right: 0.75rem;
    padding-top: 0.25rem;
    color: #2563EB;
    font-weight: 700;
}

/* ============================================
   3. 媒体报道列表 (非卡片样式)
   ============================================ */
.media-list {
    max-width: 800px;
    margin: 0 auto;
}

.media-item {
    display: flex;
    align-items: center;
    padding: 1.25rem 0;
    border-bottom: 1px solid #F3F4F6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.media-item:first-child {
    border-top: 1px solid #F3F4F6;
}

.media-item:hover {
    padding-left: 1rem;
    background: linear-gradient(90deg, #F9FAFB 0%, transparent 100%);
}

.media-item:hover .media-title {
    color: #2563EB;
}

.media-item:hover .media-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.media-source {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9CA3AF;
    min-width: 100px;
    flex-shrink: 0;
}

.media-title {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
    flex: 1;
    transition: color 0.3s ease;
}

.media-arrow {
    color: #2563EB;
    opacity: 0;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

/* ============================================
   4. 装饰性引号
   ============================================ */
.quote-mark {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 8rem;
    line-height: 1;
    color: #E5E7EB;
    position: absolute;
    top: -2rem;
    left: -2rem;
    z-index: 0;
    pointer-events: none;
}

/* ============================================
   5. 动画效果
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* ============================================
   6. 响应式样式
   ============================================ */
@media (max-width: 1024px) {
    .editorial-article h3 {
        font-size: 1.5rem;
    }

    .editorial-article p {
        font-size: 1rem;
    }

    .editorial-article .highlight-quote {
        font-size: 1.25rem;
    }

    .media-source {
        min-width: 80px;
    }
}

@media (max-width: 768px) {
    .media-item {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .media-source {
        min-width: auto;
    }

    .media-arrow {
        display: none;
    }
}
