/* ============================================
   博客详情页样式
   ============================================ */

/* ============================================
   阅读进度条
   ============================================ */
.blog-reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--thm-f3);
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-reading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--thm-base) 0%, var(--thm-color) 100%);
    width: 0%;
    transition: width 0.1s ease-out;
    position: relative;
    border-radius: 0 2px 2px 0;
}

/* 进度条光效动画 */
.blog-reading-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 100%);
    animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.atf-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--thm-f3);
    margin-bottom: 25px;
}

.atf-post-meta span {
    display: inline-flex;
    align-items: center;
    color: var(--thm-gray);
    font-size: 14px;
}

.atf-post-meta span i {
    margin-right: 5px;
    color: var(--thm-base);
}

/* ============================================
   标签区域
   ============================================ */
.atf-post-tags {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.atf-post-tags::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.atf-post-tags h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--thm-p);
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    position: relative;
}

.atf-post-tags h5::before {
    content: "\f02c"; /* Font Awesome tag icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--thm-base);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud-link {
    display: inline-block;
    padding: 8px 16px;
    background: var(--color-white);
    color: var(--thm-gray);
    border-radius: var(--v2-radius-sm);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.tag-cloud-link::before {
    content: "#";
    margin-right: 3px;
    color: var(--thm-base);
    font-weight: 600;
}

.tag-cloud-link:hover {
    background: var(--thm-base);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 118, 192, 0.4);
}

.tag-cloud-link:hover::before {
    color: var(--color-white);
}

/* ============================================
   分享区域
   ============================================ */
.atf-post-share {
    margin-top: 40px;
    padding: 30px;
    background: var(--color-white);
    border: 2px solid var(--thm-f3);
    border-radius: 10px;
    text-align: center;
}

.atf-post-share h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--thm-p);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.atf-post-share h5::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--thm-base);
    border-radius: 2px;
}

.atf-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.atf-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--thm-f3);
    color: var(--thm-gray);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.atf-social-icons a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: currentColor;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.atf-social-icons a:hover::before {
    width: 100%;
    height: 100%;
}

.atf-social-icons a i {
    font-size: 20px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

/* 微博分享 */
.atf-social-icons a[onclick*="shareToWeibo"] {
    color: #E6162D;
}

.atf-social-icons a[onclick*="shareToWeibo"]:hover {
    background: #E6162D;
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(230, 22, 45, 0.3);
}

.atf-social-icons a[onclick*="shareToWeibo"]:hover i {
    color: var(--color-white);
}

/* 微信分享 */
.atf-social-icons a[onclick*="shareToWechat"] {
    color: #07C160;
}

.atf-social-icons a[onclick*="shareToWechat"]:hover {
    background: #07C160;
    transform: translateY(-3px) rotate(-5deg);
    box-shadow: 0 10px 20px rgba(7, 193, 96, 0.3);
}

.atf-social-icons a[onclick*="shareToWechat"]:hover i {
    color: var(--color-white);
}

/* QQ分享 */
.atf-social-icons a[onclick*="shareToQQ"] {
    color: #12B7F5;
}

.atf-social-icons a[onclick*="shareToQQ"]:hover {
    background: #12B7F5;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(18, 183, 245, 0.3);
}

.atf-social-icons a[onclick*="shareToQQ"]:hover i {
    color: var(--color-white);
}

/* 复制链接 */
.atf-social-icons a[onclick*="copyLink"] {
    color: var(--thm-gray);
}

.atf-social-icons a[onclick*="copyLink"]:hover {
    background: linear-gradient(135deg, var(--thm-base) 0%, var(--thm-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(45, 118, 192, 0.3);
}

.atf-social-icons a[onclick*="copyLink"]:hover i {
    color: var(--color-white);
    animation: linkPulse 0.6s ease;
}

@keyframes linkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* 工具提示 */
.atf-social-icons a[data-tooltip] {
    position: relative;
}

.atf-social-icons a[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: var(--thm-p);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.atf-social-icons a[data-tooltip]:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* ============================================
   相关文章
   ============================================ */
.atf-related-posts {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--thm-f3);
}

.atf-related-posts h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--thm-p);
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.atf-related-posts h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: var(--thm-base);
    border-radius: 2px;
}

.atf-post-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.atf-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* 图片样式 - 兼容 picture 标签和 img 标签 */
.atf-post-card img,
.atf-post-card picture {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

/* picture 标签内的 img 继承样式 */
.atf-post-card picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.atf-post-card:hover img,
.atf-post-card:hover picture {
    transform: scale(1.05);
}

.atf-post-card-body {
    padding: 20px;
}

.atf-post-card-body h5 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

.atf-post-card-body h5 a {
    color: var(--thm-p);
    text-decoration: none;
    transition: color 0.3s ease;
}

.atf-post-card-body h5 a:hover {
    color: var(--thm-base);
}

/* ============================================
   设备列表
   ============================================ */
.atf-equipment-list {
    background: var(--thm-f6);
    border-radius: 8px;
    padding: 25px;
}

.atf-equipment-list h4 {
    font-size: 20px;
    color: var(--thm-p);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-base);
}

.atf-equipment-list .list-group-item {
    background: var(--color-white);
    border: 1px solid var(--thm-f3);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.atf-equipment-list .list-group-item:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.atf-equipment-list .list-group-item a {
    color: var(--thm-base);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.atf-equipment-list .list-group-item a:hover {
    color: var(--thm-black);
}

/* ============================================
   活动信息
   ============================================ */
.atf-event-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--color-white);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.atf-event-info::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
}

.atf-event-info h4 {
    color: var(--color-white);
    font-size: 22px;
    margin-bottom: 20px;
    position: relative;
}

.atf-event-info p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
    position: relative;
}

.atf-event-info strong {
    color: var(--color-white);
    margin-right: 10px;
}

/* ============================================
   画廊区域
   ============================================ */
.atf-gallery {
    margin-top: 40px;
}

.atf-gallery h4 {
    font-size: 20px;
    color: var(--thm-p);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--thm-f3);
}

.atf-gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* 图片样式 - 兼容 picture 标签和 img 标签 */
.atf-gallery-item img,
.atf-gallery-item picture {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
}

/* picture 标签内的 img 继承样式 */
.atf-gallery-item picture img {
    width: 100%;
    height: auto;
    display: block;
}

.atf-gallery-item:hover img,
.atf-gallery-item:hover picture {
    transform: scale(1.1);
}

.atf-gallery-item::after {
    content: "\f00e"; /* Font Awesome magnifying glass */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: var(--color-white);
    font-size: 30px;
    opacity: 0;
    transition: all 0.3s ease;
}

.atf-gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.atf-gallery-item:hover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 768px) {
    .atf-post-meta {
        font-size: 12px;
    }

    .atf-post-tags,
    .atf-post-share {
        padding: 20px;
    }

    .atf-social-icons a {
        width: 45px;
        height: 45px;
    }

    .atf-social-icons a i {
        font-size: 18px;
    }

    .tag-cloud-link {
        font-size: 12px;
        padding: 6px 12px;
    }

    .atf-related-posts h3 {
        font-size: 20px;
    }

    .atf-post-card img,
    .atf-post-card picture {
        height: 150px;
    }
}

/* ============================================================
   V2 Blog Detail Overrides
   说明：
   - 阅读进度条、标签区与分享区切到 V2，避免旧渐变块过重。
   ============================================================ */

.blog-reading-progress {
    background: var(--v2-bg-divider);
    box-shadow: none;
}

.blog-reading-progress-bar {
    background: linear-gradient(90deg, var(--v2-primary-600) 0%, var(--v2-primary-500) 100%);
}

.atf-post-meta {
    border-bottom-color: var(--v2-bg-divider);
}

.atf-post-meta span,
.tag-cloud-link,
.atf-post-tags h5,
.atf-post-share h5 {
    color: var(--v2-text-secondary);
}

.atf-post-meta span i,
.tag-cloud-link::before {
    color: var(--v2-primary-500);
}

.atf-post-tags,
.atf-post-share {
    background: var(--v2-bg-primary);
    border: 1px solid var(--v2-bg-divider);
    border-radius: var(--v2-radius-sm);
    box-shadow: var(--v2-shadow-card);
}

/* ============================================================
   V2 Blog Detail Final Alignment
   说明：
   - 博客详情仍有旧 banner 白字、文章卡渐变、引用块和表格旧边框。
   - 这里用阅读进度条相邻关系锁定博客详情页，统一回到 V2 黑字、
     内容背景和白卡语义，不误伤其他使用 atf-page-heading 的页面。
   ============================================================ */

.blog-reading-progress + .atf-page-heading .atf-page-heading-title {
    color: var(--v2-text-heading);
}

.blog-reading-progress + .atf-page-heading .atf-post-label > span,
.blog-reading-progress + .atf-page-heading .atf-post-label > span a,
.blog-reading-progress + .atf-page-heading .atf-post-label > span:last-child,
.blog-reading-progress + .atf-page-heading .atf-post-label > span:not(:last-child)::after {
    color: var(--v2-text-secondary);
}

.atf-blog-area {
    background: var(--v2-bg-content);
}

.atf-single-post,
.sidebar-widget,
.atf-related-posts .atf-post-card {
    background: var(--v2-bg-primary);
    border: 1px solid var(--v2-bg-divider);
    border-radius: var(--v2-radius-sm);
    box-shadow: var(--v2-shadow-card);
}

.atf-single-post,
.sidebar-widget {
    padding: 32px;
}

.atf-post-content,
.sidebar-widget ul li a,
.sidebar-widget p,
.atf-post-card-body p {
    color: var(--v2-text-body);
}

.atf-post-content img,
.atf-post-content picture {
    max-width: 100%;
    height: auto;
    border-radius: var(--v2-radius-sm) !important;
}

.atf-post-content h2,
.atf-post-content h3,
.atf-post-content h4,
.atf-widget-title,
.sidebar-widget-title,
.atf-related-posts h3,
.atf-post-card-body h5 a {
    color: var(--v2-text-heading);
}

.atf-widget .atf-widget-title,
.atf-widget-title,
.sidebar-widget-title {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
}

.atf-post-content pre,
.atf-post-content table {
    background: var(--v2-bg-content);
    border: 1px solid var(--v2-bg-divider);
    border-radius: var(--v2-radius-md);
}

.atf-post-content blockquote {
    background: transparent;
    border: 0 !important;
    border-left: 0 !important;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.atf-post-content blockquote::before,
.atf-post-content blockquote::after {
    content: none !important;
    display: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

.atf-post-content blockquote > p,
.atf-post-content blockquote cite {
    border: 0 !important;
    border-left: 0 !important;
    padding-left: 0;
    background: transparent;
    box-shadow: none;
}

.atf-post-content table th {
    background: var(--v2-bg-functional);
    color: var(--v2-text-heading);
}

.atf-post-content table td {
    color: var(--v2-text-body);
    border-color: var(--v2-bg-divider);
}

.tag-cloud-link,
.atf-post-tags a,
.atf-post-share a {
    background: var(--v2-bg-content);
    border: 1px solid var(--v2-bg-divider);
    border-radius: var(--v2-radius-sm);
    color: var(--v2-text-body);
}

.tag-cloud-link:hover,
.atf-post-tags a:hover,
.atf-post-share a:hover {
    background: var(--v2-primary-500);
    border-color: var(--v2-primary-500);
    color: var(--v2-text-inverse);
}

.blog-reading-progress ~ .atf-Subscribe-area .atf-subscribe-panel,
.blog-reading-progress ~ .atf-Subscribe-area .atf-subscribe-form,
.blog-reading-progress ~ .atf-Subscribe-area .atf-subscribe-input,
.blog-reading-progress ~ .atf-Subscribe-area .atf-subscribe-btn {
    border-radius: var(--v2-radius-sm);
}

/* ============================================================
   V2 Blog Detail Banner Alignment
   说明：
   - Blog 详情页的背景为深色星空图，标题和面包屑必须使用反白方案；
   - 这里仅命中 `public/blog/detail.php` 输出的 `.blog-detail-banner`，
     避免影响 `/blog/` 列表页、Gallery 或产品详情页 Banner；
   - 面包屑胶囊高度直接使用新版视觉规范的 44px token。
   ============================================================ */

.blog-reading-progress + .blog-detail-banner {
    height: 640px;
    min-height: 640px;
    padding: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    isolation: isolate;
}

.blog-reading-progress + .blog-detail-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(var(--v2-bg-dark-rgb), 0.18) 0%,
        rgba(var(--v2-bg-dark-rgb), 0.34) 48%,
        rgba(var(--v2-bg-dark-rgb), 0.68) 100%
    );
}

.blog-reading-progress + .blog-detail-banner > .container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.blog-reading-progress + .blog-detail-banner .atf-page-heading-in {
    width: min(100%, 1120px);
    max-width: min(100%, 1120px);
    padding: 0 0 clamp(var(--v2-spacing-lg), 5vw, 72px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--v2-spacing-md);
    text-align: left;
}

.blog-reading-progress + .blog-detail-banner .atf-page-heading-title {
    max-width: min(100%, 1080px);
    margin: 0;
    color: var(--v2-text-inverse);
    font-size: var(--v2-h0-font-size);
    line-height: var(--v2-h0-line-height);
    font-weight: 500;
    letter-spacing: 0;
    text-shadow: 0 16px 38px rgba(var(--v2-bg-dark-rgb), 0.56);
    overflow-wrap: anywhere;
    word-break: normal;
}

.blog-reading-progress + .blog-detail-banner .atf-post-label {
    position: static;
    min-height: var(--v2-button-height);
    max-width: min(100%, 760px);
    margin: 0;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 var(--v2-spacing-sm);
    flex-wrap: wrap;
    overflow: visible;
    white-space: normal;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--v2-radius-button-pill);
    background: rgba(var(--v2-bg-dark-rgb), 0.22);
    box-shadow: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.blog-reading-progress + .blog-detail-banner .atf-post-label > span {
    min-width: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--v2-font-size-base);
    line-height: 1.4;
}

.blog-reading-progress + .blog-detail-banner .atf-post-label > span:not(:last-child) {
    flex: 0 0 auto;
}

.blog-reading-progress + .blog-detail-banner .atf-post-label > span:last-child {
    flex: 1 1 auto;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
}

.blog-reading-progress + .blog-detail-banner .atf-post-label > span a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.blog-reading-progress + .blog-detail-banner .atf-post-label > span a:hover {
    color: var(--v2-text-inverse);
}

.blog-reading-progress + .blog-detail-banner .atf-post-label > span:not(:last-child)::after {
    content: '/';
    margin-left: var(--v2-spacing-sm);
    color: rgba(255, 255, 255, 0.72);
}

.atf-post-content h2 {
    font-size: var(--v2-h1-font-size);
    line-height: var(--v2-h1-line-height);
    font-weight: 500;
    letter-spacing: 0;
}

.atf-post-content h3 {
    font-size: var(--v2-h2-font-size);
    line-height: var(--v2-h2-line-height);
    font-weight: 500;
    letter-spacing: 0;
}

.atf-post-content h4 {
    font-size: var(--v2-h3-font-size);
    line-height: var(--v2-h3-line-height);
    font-weight: 500;
    letter-spacing: 0;
}

.atf-post-content h5 {
    font-size: var(--v2-font-size-lg);
    line-height: 26px;
    font-weight: 500;
    letter-spacing: 0;
}

.atf-post-content h6 {
    font-size: var(--v2-font-size-sm);
    line-height: var(--v2-h5-line-height);
    font-weight: 500;
    letter-spacing: 0;
}

@media (max-width: 991px) {
    .blog-reading-progress + .blog-detail-banner {
        height: 640px;
        min-height: 640px;
    }

    .blog-reading-progress + .blog-detail-banner .atf-page-heading-in {
        width: min(100%, 820px);
        max-width: min(100%, 820px);
        padding-bottom: clamp(var(--v2-spacing-lg), 7vw, 56px);
    }

    .blog-reading-progress + .blog-detail-banner .atf-page-heading-title {
        max-width: 100%;
        font-size: var(--v2-h1-font-size);
        line-height: var(--v2-h1-line-height);
    }
}

@media (max-width: 767px) {
    .blog-reading-progress + .blog-detail-banner {
        height: 480px;
        min-height: 480px;
    }

    .blog-reading-progress + .blog-detail-banner > .container {
        padding-left: var(--v2-mobile-container-padding);
        padding-right: var(--v2-mobile-container-padding);
    }

    .blog-reading-progress + .blog-detail-banner .atf-page-heading-in {
        width: 100%;
        max-width: 100%;
        gap: var(--v2-mobile-stack-gap);
        padding-bottom: 54px;
    }

    .blog-reading-progress + .blog-detail-banner .atf-page-heading-title {
        font-size: 28px;
        line-height: 36px;
        font-weight: 500;
        letter-spacing: 0;
        text-shadow: none;
    }

    .blog-reading-progress + .blog-detail-banner .atf-post-label {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        padding: 0;
        gap: 0 6px;
        flex-wrap: wrap;
        align-items: flex-start;
        overflow: visible;
        white-space: normal;
        border: 0;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        font-size: 16px;
        line-height: 24px;
    }

    .blog-reading-progress + .blog-detail-banner .atf-post-label > span,
    .blog-reading-progress + .blog-detail-banner .atf-post-label > span a {
        color: #FFFFFF;
        font-size: 16px;
        line-height: 24px;
    }

    .blog-reading-progress + .blog-detail-banner .atf-post-label > span:last-child,
    .blog-reading-progress + .blog-detail-banner .atf-post-label > span:last-child a {
        color: rgba(255, 255, 255, 0.6);
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }

    .blog-reading-progress + .blog-detail-banner .atf-post-label > span:last-child {
        flex: 1 1 288px;
        max-width: 100%;
    }

    .blog-reading-progress + .blog-detail-banner .atf-post-label > span:not(:last-child)::after {
        margin-left: 6px;
        color: #FFFFFF;
    }

    .atf-post-content h2 {
        font-size: var(--v2-h1-font-size);
        line-height: var(--v2-h1-line-height);
    }

    .atf-post-content h3 {
        font-size: var(--v2-h2-font-size);
        line-height: var(--v2-h2-line-height);
    }

    .atf-post-content h4 {
        font-size: var(--v2-h3-font-size);
        line-height: var(--v2-h3-line-height);
    }

    .atf-post-content h5 {
        font-size: var(--v2-font-size-lg);
        line-height: var(--v2-h3-line-height);
    }

    .atf-post-content h6 {
        font-size: var(--v2-font-size-sm);
        line-height: var(--v2-h5-line-height);
    }
}
