/**
 * Blog Page Styles
 * Furious Fight Gear Theme
 */

/* =============================================
   HERO — dark image, same overlay as shop/FAQs
   ============================================= */
.blog-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.blog-hero-bg {
    position: absolute;
    inset: 0;
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
    will-change: transform;
}

.blog-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10,10,20,.97) 0%, rgba(10,10,20,.82) 55%, rgba(10,10,20,.35) 100%);
}

.blog-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px var(--gutter-desktop);
    width: 100%;
}

.blog-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 20px;
}

.blog-hero .breadcrumb a { color: rgba(255,255,255,.4); text-decoration: none; transition: color .2s; }
.blog-hero .breadcrumb a:hover { color: var(--red); }
.blog-hero .breadcrumb-sep { color: rgba(255,255,255,.2); }
.blog-hero .breadcrumb-cur { color: rgba(255,255,255,.65); }

.blog-hero-h1 {
    font-family: var(--font-h);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: .92;
    margin-bottom: 18px;
    max-width: 760px;
}

.blog-hero-h1 em { font-style: normal; color: var(--red); }

.blog-hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,.68);
    max-width: 480px;
    line-height: 1.72;
}


/* =============================================
   HERO SEARCH BAR
   ============================================= */
.blog-hero-search {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin-top: 28px;
}

.blog-hero-search-input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255,255,255,.2);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: var(--font-b);
    font-size: 15px;
    color: var(--white);
    outline: none;
    transition: border-color .25s, background .25s;
}

.blog-hero-search-input:focus {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.5);
}

.blog-hero-search-input::placeholder { color: rgba(255,255,255,.4); }

.blog-hero-search-btn {
    padding: 14px 20px;
    background: var(--red);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--white);
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-hero-search-btn:hover { background: var(--red-bright); }

/* =============================================
   CATEGORY FILTER BAR — sticky below header
   ============================================= */
.blog-cat-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 70px;
    z-index: 89;
}

.blog-cat-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter-desktop);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.blog-cat-inner::-webkit-scrollbar { display: none; }

.blog-cat-tabs { display: flex; gap: 0; }

.blog-cat-tab {
    padding: 0 22px;
    height: 50px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-soft);
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
    text-decoration: none;
}

.blog-cat-tab:hover { color: var(--navy); }

.blog-cat-tab.active {
    color: var(--navy);
    border-bottom-color: var(--red);
}

.blog-cat-count {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gray-light);
    font-size: 10px;
    font-weight: 700;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, color .2s;
}

.blog-cat-tab.active .blog-cat-count {
    background: var(--red);
    color: var(--white);
}

/* =============================================
   MAIN BLOG LAYOUT
   ============================================= */
.blog-main {
    padding: var(--gutter-desktop) 0;
    background: var(--off-white);
}

.blog-layout {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter-desktop);
    display: grid;
    grid-template-columns: 1fr 310px;
    gap: 44px;
    align-items: start;
}

/* =============================================
   FEATURED POST
   ============================================= */
.blog-featured-wrap { margin-bottom: 44px; }

.blog-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 8px;
    overflow: hidden;
    background: var(--navy);
    box-shadow: 0 16px 44px rgba(0,0,0,.14);
    cursor: pointer;
    transition: transform .35s, box-shadow .35s;
    text-decoration: none;
}

.blog-featured-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,.2);
}

.bfc-img {
    overflow: hidden;
}

.bfc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}

.blog-featured-card:hover .bfc-img img { transform: scale(1.05); }

.bfc-body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.bfc-body::before {
    content: '';
    position: absolute;
    top: -100px; right: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,57,43,.1) 0%, transparent 65%);
    pointer-events: none;
}

.bfc-featured-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 2px;
    font-family: var(--font-h);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 14px;
}

.bfc-cat {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

.bfc-title {
    font-family: var(--font-h);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 14px;
}

.bfc-title em { font-style: normal; color: var(--red); }

.bfc-excerpt {
    font-size: 15px;
    color: rgba(255,255,255,.6);
    line-height: 1.75;
    margin-bottom: 24px;
}

.bfc-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.bfc-date { font-size: 12px; color: rgba(255,255,255,.4); }
.bfc-read { font-size: 12px; color: rgba(255,255,255,.4); }
.bfc-dot { width: 3px; height: 3px; background: rgba(255,255,255,.3); border-radius: 50%; }

.bfc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--red);
    padding: 13px 22px;
    border-radius: var(--radius);
    transition: background .25s, gap .2s;
    text-decoration: none;
    width: fit-content;
}

.bfc-cta:hover { background: var(--red-bright); gap: 11px; }

/* =============================================
   LATEST ARTICLES LABEL
   ============================================= */
.blog-grid-label {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 22px;
}

/* Grid columns are set dynamically via customizer (furious_dynamic_css) */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* default — overridden by customizer */
    gap: 22px;
}

/* =============================================
   LOAD MORE BUTTON
   ============================================= */
.blog-load-more-wrap {
    margin-top: 44px;
    display: flex;
    justify-content: center;
}

.blog-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    padding: 15px 36px;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s, background .25s;
}

.blog-load-more-btn:hover {
    transform: translateY(-2px);
    background: var(--navy-deep);
    box-shadow: 0 8px 24px rgba(26,26,46,.3);
}

.blog-load-more-btn:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.blog-load-more-btn svg {
    animation: none;
}

.blog-load-more-btn.loading svg {
    animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }
.blog-pagination {
    margin-top: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    color: var(--navy);
    background: var(--white);
    border: 1.5px solid var(--gray-mid);
    transition: background .2s, color .2s, border-color .2s;
}

.blog-pagination .page-numbers:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.blog-pagination .page-numbers.current {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.blog-pagination .page-numbers.dots {
    background: none;
    border: none;
    width: auto;
    padding: 0 4px;
}

.blog-pagination .prev.page-numbers,
.blog-pagination .next.page-numbers {
    width: auto;
    padding: 0 16px;
    gap: 6px;
}

/* =============================================
   SIDEBAR
   ============================================= */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 132px;
}

.blog-sw-panel {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--gray-light);
    overflow: hidden;
}

.blog-sw-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-light);
}

.blog-sw-title {
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    letter-spacing: .06em;
}

.blog-sw-body { padding: 16px 20px; }

/* Recent posts */
.blog-rp-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    text-decoration: none;
}

.blog-rp-item:last-child { margin-bottom: 0; }

.blog-rp-thumb {
    width: 56px;
    height: 56px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-rp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
    display: block;
}

.blog-rp-item:hover .blog-rp-thumb img { transform: scale(1.06); }

.blog-rp-title {
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 4px;
    transition: color .2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-rp-item:hover .blog-rp-title { color: var(--red); }

.blog-rp-date { font-size: 11px; color: var(--text-soft); }

/* Categories */
.blog-cat-list { display: flex; flex-direction: column; gap: 2px; }

.blog-cl-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid var(--gray-light);
    text-decoration: none;
    transition: color .2s;
}

.blog-cl-item:last-child { border-bottom: none; }

.blog-cl-name {
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-soft);
    transition: color .2s;
}

.blog-cl-item:hover .blog-cl-name { color: var(--red); }

.blog-cl-count {
    font-size: 12px;
    color: var(--gray-dark);
    font-family: var(--font-h);
    font-weight: 700;
}

/* Tags */
.blog-tag-cloud { display: flex; flex-wrap: wrap; gap: 7px; }

.blog-tag {
    padding: 5px 11px;
    border-radius: 20px;
    border: 1px solid var(--gray-mid);
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--text-soft);
    text-decoration: none;
    transition: all .2s;
    display: inline-block;
}

.blog-tag:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(192,57,43,.05);
}

/* =============================================
   SEO SECTION
   ============================================= */
.blog-seo-section {
    padding: var(--gutter-desktop) 0;
    background: var(--white);
}

.blog-seo-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--gutter-desktop);
    text-align: center;
}

.blog-seo-heading {
    font-family: var(--font-h);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 18px;
}

.blog-seo-divider {
    width: 44px;
    height: 3px;
    background: var(--red);
    margin: 0 auto 28px;
    border-radius: 2px;
}

.blog-seo-content {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.9;
    text-align: center;
}
.blog-seo-content p { margin-bottom: 14px; }
.blog-seo-content p:last-child { margin-bottom: 0; }
.blog-seo-content h3 {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    margin: 32px 0 12px;
}
.blog-seo-content a { color: var(--red); font-weight: 600; }

.blog-seo-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
}

.blog-seo-pill {
    background: var(--off-white);
    border: 1px solid var(--gray-mid);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-soft);
    text-decoration: none;
    display: inline-block;
    transition: background .2s, color .2s, border-color .2s;
    cursor: default;
}

a.blog-seo-pill { cursor: pointer; }

a.blog-seo-pill:hover, .blog-seo-pill:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
    .blog-layout { grid-template-columns: 1fr; gap: 40px; }
    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .blog-featured-card { grid-template-columns: 1fr; }
    .bfc-img { height: 280px; }
    .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-layout { padding: 0 var(--gutter-tablet); }

}

@media (max-width: 768px) {
    .blog-hero { min-height: 360px; }
    .blog-hero-inner { padding: 40px var(--gutter-mobile); }
    .blog-hero-h1 { font-size: clamp(34px, 9vw, 48px); }
    .blog-hero-sub { font-size: 15px; }
    .blog-main { padding: var(--gutter-tablet) 0; }
    .blog-cat-inner { padding: 0 var(--gutter-mobile); }
    .blog-posts-grid { grid-template-columns: 1fr; }
    .blog-sidebar { grid-template-columns: 1fr; }
    .bfc-body { padding: 28px 24px; }
    .bfc-title { font-size: clamp(22px, 6vw, 30px); }
    .blog-layout { padding: 0 var(--gutter-mobile); }
    .blog-seo-inner { padding: 0 var(--gutter-mobile); }
}

@media (max-width: 480px) {
    .blog-hero-h1 { font-size: clamp(30px, 9vw, 40px); }
    .blog-hero-sub { font-size: 14px; }
    .bfc-body { padding: 22px 18px; }
    .blog-cat-tab { padding: 0 14px; font-size: 12px; }
    .blog-hero-search { flex-direction: column; max-width: 100%; }
    .blog-hero-search-input {
        border-right: 1.5px solid rgba(255,255,255,.2);
        border-radius: var(--radius);
    }
    .blog-hero-search-btn { border-radius: var(--radius); }
    .blog-seo-inner { padding: 0 var(--gutter-mobile); }
    .blog-seo-heading { font-size: clamp(26px, 8vw, 36px); }
}


/* ══════════════════════════════════════════════════════════════
   SINGLE POST PAGE
══════════════════════════════════════════════════════════════ */

/* ── Body layout ── */
/* sp-body-wrap and sp-layout defined below */

/* ── Article content ── */
.sp-content { max-width: 800px; }
.sp-section { margin-bottom: 48px; }
.sp-section:last-child { margin-bottom: 0; }

.sp-section-title {
    font-family: var(--font-h);
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 18px;
    padding-top: 8px;
}
.sp-section-title em { font-style: normal; color: var(--red); }

/* Section content typography */
.sp-section-content p {
    font-size: 17px;
    line-height: 1.88;
    color: var(--text-soft);
    margin-bottom: 22px;
}
.sp-section-content p:last-child { margin-bottom: 0; }
.sp-section-content p strong { color: var(--text); font-weight: 600; }
.sp-section-content p a { color: var(--red); font-weight: 600; border-bottom: 1px solid rgba(192,57,43,.3); transition: border-color .2s; }
.sp-section-content p a:hover { border-bottom-color: var(--red); }

.sp-section-content h3 {
    font-family: var(--font-h);
    font-size: 21px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    letter-spacing: .04em;
    margin: 32px 0 12px;
}
.sp-section-content h4 {
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    margin: 24px 0 8px;
}

.sp-section-content ul { margin: 14px 0 22px; padding-left: 0; list-style: none; }
.sp-section-content ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.72;
    margin-bottom: 10px;
}
.sp-section-content ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 9px;
}
.sp-section-content ul li strong { color: var(--text); font-weight: 600; }

.sp-section-content ol {
    margin: 14px 0 22px;
    padding-left: 0;
    list-style: none;
    counter-reset: sp-ol;
}
.sp-section-content ol li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.72;
    margin-bottom: 12px;
    counter-increment: sp-ol;
}
.sp-section-content ol li::before {
    content: counter(sp-ol);
    min-width: 24px;
    height: 24px;
    background: var(--navy);
    color: var(--white);
    border-radius: 50%;
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.sp-section-content blockquote {
    border-left: 3px solid var(--red);
    padding: 14px 22px;
    background: var(--off-white);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
}
.sp-section-content blockquote p { font-size: 16px; font-style: italic; }

.sp-section-content img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 20px 0;
}

.sp-section-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    font-size: 14px;
}
.sp-section-content table thead tr { background: var(--navy); }
.sp-section-content table thead th {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--white);
    padding: 13px 16px;
    text-align: left;
}
.sp-section-content table tbody tr { border-bottom: 1px solid var(--gray-light); }
.sp-section-content table tbody tr:last-child { border-bottom: none; }
.sp-section-content table tbody tr:nth-child(even) { background: var(--off-white); }
.sp-section-content table tbody td {
    color: var(--text-soft);
    padding: 12px 16px;
    vertical-align: middle;
}
.sp-section-content table tbody td:first-child {
    font-family: var(--font-h);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
    font-size: 13px;
}

/* Highlight box — self-contained (same style as privacy policy) */
.sp-section .pp-highlight-box {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-left: 3px solid var(--red);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin-top: 24px;
}
.sp-section .pp-highlight-label {
    font-family: var(--font-h);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}
.sp-section .pp-highlight-box p {
    font-size: 14px !important;
    line-height: 1.72 !important;
    color: var(--text-soft) !important;
    margin: 0 !important;
}
.sp-section .pp-highlight-box p strong { color: var(--navy) !important; }
.sp-section .pp-highlight-box p a { color: var(--red) !important; }

/* ── Sidebar ── */

/* TOC panel */
.sp-toc-panel {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0;
}
.sp-toc-header {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--navy);
    padding: 14px 18px;
    border-bottom: 1px solid var(--gray-light);
}
.sp-toc-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}
.sp-toc-item {
    display: block;
    padding: 7px 18px 7px 20px;
    font-size: 13px;
    color: var(--text-soft);
    border-left: 2px solid transparent;
    transition: border-color .2s, color .2s, background .2s;
    text-decoration: none;
    line-height: 1.4;
    margin: 1px 0;
}
.sp-toc-item:hover { color: var(--navy); background: rgba(0,0,0,.02); border-left-color: var(--gray-mid); }
.sp-toc-item.active { color: var(--red); border-left-color: var(--red); background: rgba(192,57,43,.04); }

/* Contact CTA spacing */
.sp-sidebar-cta { margin-top: 20px; }

/* Sidebar gym CTA */
.sp-gym-cta {
    margin-top: 20px;
    padding: 22px;
    background: var(--gray-light);
    border-radius: 8px;
    text-align: center;
}
.sp-gym-cta .gym-title { font-size: clamp(18px, 2vw, 24px); margin-bottom: 10px; }
.sp-gym-cta .gym-desc  { font-size: 13px; margin-bottom: 16px; }

/* Full-width gym CTA — only on mobile (hidden on desktop) */
.sp-gym-cta-full { display: none; }

/* ── Related posts section ── */
/* sp-related defined below */
.sp-related .section-sub { max-width: 560px; }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .sp-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .sp-sidebar { display: none; }
    .sp-content { max-width: 100%; }
    .sp-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sp-hero { min-height: 360px; }
    .sp-hero-inner { padding-bottom: 40px; padding-top: 32px; }
    .sp-hero-h1 { font-size: clamp(30px, 7vw, 48px); }
    .sp-body-wrap { padding: 56px 0; }
    .sp-layout { gap: 0; }
    .sp-section { margin-bottom: 40px; }
    .sp-section h2 { font-size: clamp(22px, 5vw, 32px); }
    .sp-related { padding: 56px 0; }
    .sp-related-grid { grid-template-columns: 1fr; }
    .sp-share-btns { justify-content: flex-start; }
}

@media (max-width: 480px) {
    .sp-hero { min-height: 300px; }
    .sp-hero-h1 { font-size: clamp(26px, 8vw, 36px); }
    .sp-body-wrap { padding: 40px 0; }
    .sp-section h2 { font-size: clamp(20px, 6vw, 28px); }
    .sp-section p { font-size: 15px; }
    .sp-related { padding: 40px 0; }
    .section-header { padding: 0 var(--gutter-mobile); }
}


/* ═══════════════════════════════════════════════════════════
   SINGLE POST PAGE
   ═══════════════════════════════════════════════════════════ */

.single-post article.sp-content {
    padding: 0;
}

/* ── Category tag (over hero) ── */
.sp-cat-tag {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 2px;
    font-family: var(--font-h);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* ── Post hero (sp-hero = renamed from shop-hero for single posts) ── */
.sp-hero {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
}
.sp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 35%;
    transform: scale(1.05);
    transition: transform 12s ease;
}
.sp-hero:hover .sp-hero-bg { transform: scale(1.1); }
.sp-hero-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10,10,20,.96) 0%, rgba(10,10,20,.82) 55%, rgba(10,10,20,.35) 100%);
}
.sp-hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}
.sp-hero-h1 {
    font-family: var(--font-h);
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}
.sp-hero-h1 em { font-style: normal; color: var(--red); }
.sp-hero-sub {
    font-size: clamp(15px, 1.8vw, 18px);
    color: rgba(255,255,255,.85);
    max-width: 740px;
    line-height: 1.7;
    margin: 0;
}

/* ── No-image hero fallback ── */
.sp-hero-plain {
    background: var(--navy);
    padding: 56px 0 48px;
}
.sp-hero-plain-inner {
    max-width: var(--container);
    margin: 0 auto;
}
.sp-bc-dark a { color: rgba(255,255,255,.6); }
.sp-bc-dark .breadcrumb-sep { color: rgba(255,255,255,.3); }
.sp-bc-dark .cur { color: var(--red); }
.sp-plain-title {
    color: var(--white) !important;
    margin-bottom: 12px;
}
.sp-plain-meta {
    font-size: 14px;
    color: rgba(255,255,255,.5);
    margin: 0;
}

/* ── Body layout ── */
.sp-body-wrap {
    background: var(--white);
    padding: 80px 0;
}

.sp-layout {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 64px;
    align-items: start;
}

/* ── Article content ── */
.sp-content {
    min-width: 0;
}

.sp-section {
    margin-bottom: 56px;
    padding-bottom: 0;
    border-bottom: 1px solid var(--gray-light);
}

.sp-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Headings inside sections */
.sp-section h2 {
    font-family: var(--font-h);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 18px;
    scroll-margin-top: 100px;
}
.sp-section h2 em { font-style: normal; color: var(--red); }

.sp-section h3 {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    letter-spacing: .04em;
    margin: 32px 0 12px;
}

/* Paragraphs */
.sp-section p {
    font-size: 16px;
    line-height: 1.88;
    color: var(--text-soft);
    margin-bottom: 18px;
}
.sp-section p:last-child { margin-bottom: 0; }
.sp-section p strong { color: var(--text); font-weight: 600; }
.sp-section p a {
    color: var(--red);
    font-weight: 500;
    border-bottom: 1px solid rgba(192,57,43,.25);
    transition: border-color .2s;
}
.sp-section p a:hover { border-bottom-color: var(--red); }

/* Bullet lists */
.sp-section ul {
    margin: 12px 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
}
.sp-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.72;
}
.sp-section ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}
.sp-section ul li strong { color: var(--text); font-weight: 600; }

/* Ordered lists */
.sp-section ol {
    margin: 12px 0 18px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sp-section ol li {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.72;
}

/* Images inside WYSIWYG */
.sp-section img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
    margin: 28px 0;
}

/* Tables */
.sp-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    font-size: 14px;
}
.sp-section thead tr { background: var(--navy); }
.sp-section thead th {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--white);
    padding: 13px 16px;
    text-align: left;
}
.sp-section tbody tr { border-bottom: 1px solid var(--gray-light); }
.sp-section tbody tr:last-child { border-bottom: none; }
.sp-section tbody tr:nth-child(even) { background: var(--off-white); }
.sp-section tbody td {
    color: var(--text-soft);
    padding: 12px 16px;
    vertical-align: middle;
}
.sp-section tbody td:first-child {
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--navy);
}

/* Blockquotes */
.sp-section blockquote {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-left: 3px solid var(--navy);
    border-radius: var(--radius);
    padding: 20px 22px;
    margin: 24px 0;
}
.sp-section blockquote p {
    font-size: 15px;
    line-height: 1.72;
    color: var(--text-soft);
    margin: 0;
}
.sp-section blockquote p strong { color: var(--navy); }

/* ── Sidebar ── */

/* TOC panel */
.sp-toc {
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 18px 20px;
    margin-bottom: 0;
}

/* First section aligns visually with TOC panel top */

/* ── TOC classes (pp-toc-* from privacy-policy.css — not loaded on single posts) ── */
.pp-toc-label {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-light);
}
.pp-toc-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pp-toc-link {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-left: 2px solid transparent;
    font-size: 13px;
    color: var(--text-soft);
    cursor: pointer;
    transition: color .2s, border-color .2s, background .2s;
    border-radius: 0 var(--radius) var(--radius) 0;
    line-height: 1.4;
    text-decoration: none;
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 2px solid transparent;
    width: 100%;
    text-align: left;
}
.pp-toc-link:hover {
    color: var(--navy);
    background: var(--off-white);
    border-left-color: var(--gray-mid);
}
.pp-toc-link.active {
    color: var(--red);
    border-left-color: var(--red);
    background: rgba(192,57,43,.04);
    font-weight: 600;
}

/* TOC sub-items (H3 level) */
.sp-toc-sub {
    padding-left: 22px !important;
    font-size: 12px !important;
    color: var(--gray-dark) !important;
}
.sp-toc-sub.active {
    color: var(--red) !important;
}

/* ── Sidebar contact CTA (faq-sidebar-cta classes — faqs.css not loaded on single posts) ── */
.faq-sidebar-cta {
    margin-top: 20px;
    padding: 22px;
    background: var(--navy);
    border-radius: 6px;
}
.fsc-title {
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
}
.fsc-text {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    line-height: 1.55;
    margin-bottom: 16px;
}
.fsc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    transition: gap .2s;
}
.fsc-btn:hover { gap: 10px; }
.fsc-btn svg { flex-shrink: 0; }

/* ── Social share ── */
.sp-share {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
}

.sp-share-label {
    font-family: var(--font-h);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.sp-share-btns {
    display: flex;
    gap: 8px;
}

.sp-share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    color: var(--text-soft);
    background: var(--white);
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
    text-decoration: none;
}
.sp-share-btn:hover {
    border-color: var(--navy);
    color: var(--navy);
    background: var(--off-white);
}

/* ── Toast notification ── */
.sp-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--navy);
    color: var(--white);
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity .25s, transform .25s;
    z-index: 9999;
    pointer-events: none;
}
.sp-toast--show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Related posts section ── */
.sp-related {
    padding: 80px 0;
    background: var(--off-white);
    border-top: 1px solid var(--gray-light);
}

.sp-related-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .sp-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .sp-sidebar {
        display: none;
    }
    .sp-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sp-layout {
        padding-top: 36px;
    }
    .sp-related {
        padding: 56px 0;
    }
    .sp-related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

}
