video {
    max-width: 100%;
    max-height: 100vh;
}

p img {
    width: 100%;
}

/* ==================== Hero 头图 ==================== */
.article-hero {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.6s ease, transform 10s ease;
}

.article-hero:hover .hero-image {
    opacity: 0.9;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 80px 0 60px;
}

.hero-category {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-title {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: 3.5rem;
    font-weight: 400;
    color: white;
    line-height: 1.3;
    margin-bottom: 25px;
}

.hero-meta {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 30px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-meta svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

/* ==================== 进度条 ==================== */
.progress-bar {
    position: fixed;
    top: 80px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
    z-index: 999;
    transition: width 0.1s ease;
}

/* ==================== 文章内容区 ==================== */
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
}

/* 装饰性引用线 */
.article-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 80px;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

/* 文章引言 */
.article-lead {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 60px;
    padding-left: 30px;
    border-left: 3px solid var(--gold);
    font-style: italic;
}

/* 正文 */
.article-content {
    font-size: 1.05rem;
    line-height: 2;
    color: var(--text-dark);
}

.article-content h2 {
    font-family: 'Cormorant Garamond', 'STZhongYuan', 'Heiti SC', serif;
    font-size: 2rem;
    font-weight: 500;
    margin: 60px 0 30px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 15px;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin: 40px 0 20px;
    color: var(--primary-dark);
}

.article-content p {
    margin-bottom: 25px;
    text-align: justify;
}

.article-content strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.article-content img {
    max-width: 100%;
}

/* 图片样式 */
.article-image {
    width: 100%;
    margin: 60px 0;
    position: relative;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.article-image figcaption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
    font-style: italic;
}

/* 双图布局 */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 60px 0;
}

.image-grid img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* 引用块 */
.article-quote {
    background: var(--bg-cream);
    padding: 50px 40px;
    margin: 60px 0;
    position: relative;
    border-left: 4px solid var(--gold);
}

.article-quote::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 40px;
    font-size: 5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.article-quote p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.article-quote cite {
    display: block;
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: normal;
}

/* 高亮信息框 */
.info-box {
    background: linear-gradient(135deg, rgba(74, 143, 122, 0.05) 0%, rgba(184, 149, 107, 0.05) 100%);
    border: 1px solid var(--border-light);
    padding: 40px;
    margin: 60px 0;
    position: relative;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--gold));
}

.info-box h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.info-box p {
    margin-bottom: 0;
    color: var(--text-gray);
}

/* 工艺流程时间线 */
.timeline {
    margin: 60px 0;
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(74, 143, 122, 0.1);
}

.timeline-item h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-item p {
    color: var(--text-gray);
    margin-bottom: 0;
}

/* 分享栏 */
.share-bar {
    position: fixed;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.share-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.share-btn:hover svg {
    stroke: white;
}

.share-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-gray);
    transition: stroke 0.3s ease;
}

/* 相关文章 */
.related-section {
    background: var(--bg-cream);
    padding: 100px 40px;
}

.related-container {
    max-width: 100%;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-family: 'Cormorant Garamond', 'STZhongYuan', 'Heiti SC', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.related-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
    background: white;
    overflow: hidden;
}

.related-card:hover {
    transform: translateY(-10px);
}

.related-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

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

.related-card:hover .related-image img {
    transform: scale(1.1);
}

.related-content {
    padding: 30px;
}

.related-category {
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.related-title {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.related-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}
