/* 文章主体 */
.main-wrapper {
    position: relative;
    z-index: 10;
}

.article-card {
    background: #ffffff;
    border-radius: 12px;
    padding: clamp(18px, 2.6vw, 40px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.publish-meta h2 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 700;
    margin-bottom: 25px;
}

.article-tags {
    margin-bottom: 15px;
}

.article-content {
    font-size: clamp(0.96rem, 1.1vw, 1.3rem);
    color: #334155;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.2rem;
}

.article-content img {
    max-width: 100%;
    height: auto !important;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* 正文内的标题 */
.article-content h2,
.article-content h3 {
    color: #0f172a;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-left: 4px solid #0d6efd;
    padding-left: 15px;
}

/* 侧边栏吸顶 */
.sticky-sidebar {
    position: sticky;
    top: 20px;
}

/* 画廊样式 */
.article-gallery-swiper {
    margin-top: 40px;
    padding-bottom: 40px !important;
    position: relative;
}

.article-gallery-swiper .swiper-pagination {
    bottom: 5px !important;
}

.gallery-img-wrap {
    border-radius: 10px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-img-wrap img {
    object-fit: contain;
    width: 100%;
    height: clamp(140px, 14vw, 200px);
    padding: 10px;
}