/* ═══════════════════════════════════════════════════
   Blog Page — 技术文档
   精确匹配 verytechnology.com/blog
   基础卡片样式已在 content-hub.css 中定义
   此文件仅包含博客页专属覆写
   断点: 1199 / 991 / 768 / 575
   ═══════════════════════════════════════════════════ */

.p-rel { position: relative; }

/* page-level overflow prevention */
.fl-page-content { overflow-x: hidden; }

/* ── Link reset ── */
.card-wrapper a,
.card-wrapper a:visited,
.card-wrapper a:link {
    text-decoration: none !important;
    color: inherit !important;
}

.cat_and_tag .cat-name,
.cat_and_tag .tag-name {
    color: #272f31 !important;
}

/* ═══ CTA Section ═══ */
.blog-cta-row > .fl-row-content-wrap {
    padding: 100px 0 !important;
    background: none !important;
    overflow: hidden;
}

.blog-cta-deco-top {
    display: block;
    width: 32px; height: 32px;
    background: #272f31;
    margin: 0 -32px 0 auto;
}

.blog-cta-bar {
    background-color: #272f31;
    padding: 48px 110px;
}
.blog-cta-body {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.blog-cta-text { width: 76%; }
.blog-cta-heading {
    font-family: "PolySans-Median", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.25;
    color: #fff;
    margin: 0 0 8px;
}
.blog-cta-desc {
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: .56px;
    color: #a3a6a7;
    margin: 8px 0 0;
}
.blog-cta-action {
    width: 24%;
    text-align: right;
}

.blog-cta-deco-bottom {
    display: block;
    width: 48px; height: 48px;
    background: #FFCD34;
    margin-left: -48px;
}

.blog-cta-btn,
.blog-cta-btn:link,
.blog-cta-btn:visited {
    display: inline-block !important;
    padding: 12px 34px !important;
    border: 1px solid #fff !important;
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    line-height: 2 !important;
    letter-spacing: 2.5px !important;
    font-weight: 400 !important;
    font-family: "PolySans-NeutralMono", sans-serif !important;
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    white-space: nowrap;
}
.blog-cta-btn:hover {
    background-color: #FF6D45 !important;
    border-color: #ff6d45 !important;
    color: #272F31 !important;
}

/* ═══ Pagination ═══ */
.blog-pager {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25%;
    margin-top: 100px;
}
.blog-pager-arrow {
    position: relative;
    display: block;
    width: 48px; height: 48px;
    background-color: #272f31;
    flex-shrink: 0;
    transition: background-color .3s;
    cursor: pointer;
}
.blog-pager-arrow::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.blog-pager-prev::before {
    transform: translate(-50%, -50%);
    border-right: 12px solid #fff;
}
.blog-pager-next::before {
    transform: translate(-50%, -50%);
    border-left: 12px solid #fff;
}
.blog-pager-arrow:hover { background-color: #ff6d45; }
.blog-pager-disabled {
    opacity: .3;
    pointer-events: none;
}
.blog-pager-nums {
    display: flex;
    align-items: center;
}
.blog-pager-num {
    font-family: 'PolySans-Slim', sans-serif;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: .72px;
    color: rgba(0,0,0,.5);
    text-decoration: none;
    margin: 0 12px;
    cursor: pointer;
    transition: color .2s;
}
.blog-pager-num:hover { color: #000; }
.blog-pager-num.is-active {
    font-family: 'PolySans-Median', sans-serif;
    color: #000;
    pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   Responsive — 精确匹配对标站断点
   1199 / 991 / 768 / 550 / 430 / 375
   ═══════════════════════════════════════════════════ */

/* ── ≤ 1199px ── */
@media (max-width: 1199px) {
    .blog-cta-bar { padding: 48px 60px; }
}

/* ── ≤ 991px (tablet) ── */
@media (max-width: 991px) {
    .blog-pager {
        margin-top: 60px;
        padding: 0 40px;
    }
    .blog-cta-row > .fl-row-content-wrap {
        padding: 72px 20px !important;
    }
    .blog-cta-bar { padding: 40px 40px; }
    .blog-cta-body {
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-cta-text { width: 100% !important; }
    .blog-cta-action {
        width: 100%;
        text-align: left;
        margin-top: 24px;
    }
}

/* ── ≤ 768px (mobile) ── */
@media (max-width: 768px) {
    .blog-cta-row > .fl-row-content-wrap {
        padding: 50px 20px !important;
    }
    .blog-cta-bar { padding: 30px 24px; }
    .blog-cta-heading { font-size: 24px; line-height: 1.3; }
    .blog-cta-desc { font-size: 13px; line-height: 1.6; }

    .blog-pager {
        margin-top: 40px;
        padding: 0 10px;
    }
    .blog-pager-num { margin: 0 8px; font-size: 15px; }
    .blog-pager-arrow { width: 32px; height: 40px; }
    .blog-pager-arrow::before {
        border-top-width: 6px;
        border-bottom-width: 6px;
    }
    .blog-pager-prev::before { border-right-width: 10px; }
    .blog-pager-next::before { border-left-width: 10px; }
}

/* ── ≤ 550px (小屏手机) ── */
@media (max-width: 550px) {
    .blog-cta-bar { padding: 24px 20px; }
    .blog-cta-heading { font-size: 20px; }
    .blog-cta-deco-top,
    .blog-cta-deco-bottom { display: none; }

    .blog-pager-num { margin: 0 5px; font-size: 14px; }
    .blog-pager-arrow { width: 28px; height: 36px; }
}

/* ── ≤ 430px ── */
@media (max-width: 430px) {
    .blog-cta-row > .fl-row-content-wrap {
        padding: 40px 16px !important;
    }
    .blog-cta-bar { padding: 20px 16px; }
    .blog-cta-heading { font-size: 18px; }
    .blog-cta-btn {
        padding: 10px 24px !important;
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }
}

/* ── ≤ 375px ── */
@media (max-width: 375px) {
    .blog-pager-num { margin: 0 4px; font-size: 13px; }
    .blog-pager-arrow { width: 24px; height: 34px; }
    .blog-cta-heading { font-size: 17px; }
}
