/* ════════════════════════════════════════════════════════════════════
   BLOG LISTING · Avesta Travel · Full-Width Editorial
   ════════════════════════════════════════════════════════════════════ */

@keyframes bhpan {
    from { transform: scale(1.0); }
    to   { transform: scale(1.08) translate(-1%, -0.5%); }
}

/* ════════════════════════════════════════════════════════════════════
   HERO HEADER — Dark cinematic with search
   ════════════════════════════════════════════════════════════════════ */
.blp-hero {
    position: relative;
    background: #060c18;
    overflow: hidden;
    padding: 0;
}

/* Background texture */
.blp-hero-bg {
    position: absolute;
    inset: 0;
    background-color: rgba(15,15,15);
}

/* Dot-grid texture overlay */
.blp-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 28px 28px;
}

/* Accent line top */
.blp-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary,#e85d04) 0%, rgba(232,93,4,.3) 60%, transparent 100%);
    z-index: 10;
}

.blp-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 60px; /* 84px fixed header + 36px breathing room */
}

/* Breadcrumb */
.blp-bc {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.28);
    margin-bottom: 24px;
}
.blp-bc a { color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s; }
.blp-bc a:hover { color: rgba(255,255,255,.65); }
.blp-bc-sep { color: rgba(255,255,255,.14); }

/* Title */
.blp-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin: 0 0 14px;
    max-width: 680px;
}

/* Orange accent line under title */
.blp-hero-title::after {
    content: '';
    display: block;
    width: 44px;
    height: 3px;
    background: var(--primary, #e85d04);
    border-radius: 3px;
    margin-top: 18px;
}

.blp-hero-desc {
    font-size: .94rem;
    color: rgba(255,255,255,.45);
    line-height: 1.72;
    max-width: 560px;
    margin: 0 0 36px;
}

/* ── Search inside hero ── */
.blp-search-form {
    max-width: 680px;
    margin-bottom: 32px;
}

.blp-search-wrap {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    padding: 8px 8px 8px 24px;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all .3s ease;
}
.blp-search-wrap:focus-within {
    border-color: var(--primary, #e85d04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(232,93,4,.15);
}
.blp-search-ico {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--primary, #e85d04);
}
.blp-search-wrap input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy, #0b1426);
    padding: 10px 0;
}
.blp-search-wrap input::placeholder { color: var(--gray-400, #94a3b8); }
.blp-search-wrap button {
    flex-shrink: 0;
    height: 48px;
    padding: 0 32px;
    border: none;
    border-radius: 100px;
    background: var(--primary, #e85d04);
    color: #fff;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}
.blp-search-wrap button:hover {
    background: var(--primary-dark, #c2410c);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(232,93,4,.3);
}
.blp-search-clear {
    display: inline-block;
    margin-top: 10px;
    font-size: .73rem;
    font-weight: 600;
    color: rgba(255,255,255,.35);
    text-decoration: none;
    transition: color .15s;
}
.blp-search-clear:hover { color: rgba(255,255,255,.7); }

/* ── Stats strip ── */
.blp-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.07);
    margin-top: 4px;
}
.blp-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-right: 28px;
}
.blp-hero-stat strong {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -.025em;
}
.blp-hero-stat span {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.28);
}
.blp-hero-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.1);
    flex-shrink: 0;
    margin-right: 28px;
}

/* ════════════════════════════════════════════════════════════════════
   CATEGORY TABS
   ════════════════════════════════════════════════════════════════════ */
.blp-cats-bar {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid #e5eaf2;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 6px 24px rgba(15,23,42,.06);
}
.blp-cats-nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}
.blp-cats-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #d6deea;
    background: #fff;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(15,23,42,.08);
    transition: all .2s ease;
    flex-shrink: 0;
}
.blp-cats-btn svg { width: 16px; height: 16px; }
.blp-cats-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    border-color: rgba(232,93,4,.45);
    color: var(--primary, #e85d04);
    box-shadow: 0 10px 22px rgba(15,23,42,.14);
}
.blp-cats-btn:disabled {
    opacity: .38;
    cursor: default;
    box-shadow: none;
}
.blp-cats-scroll-wrap {
    position: relative;
    min-width: 0;
}
.blp-cats-scroll-wrap::before,
.blp-cats-scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 24px;
    pointer-events: none;
    z-index: 2;
    transition: opacity .2s ease;
}
.blp-cats-scroll-wrap::before {
    left: 0;
    background: linear-gradient(90deg, rgba(248,250,252,.96) 0%, rgba(248,250,252,0) 100%);
}
.blp-cats-scroll-wrap::after {
    right: 0;
    background: linear-gradient(270deg, rgba(248,250,252,.96) 0%, rgba(248,250,252,0) 100%);
}
.blp-cats-nav.is-start .blp-cats-scroll-wrap::before { opacity: 0; }
.blp-cats-nav.is-end .blp-cats-scroll-wrap::after { opacity: 0; }
.blp-cats-scroll {
    display: flex;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    padding: 14px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.blp-cats-scroll::-webkit-scrollbar { display: none; }
.blp-cat-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid #e6ebf3;
    background: #fff;
    box-shadow: 0 3px 14px rgba(15,23,42,.05);
    text-decoration: none;
    color: var(--navy, #0b1426);
    transition: transform .2s, border-color .2s, box-shadow .2s;
    flex-shrink: 0;
}
.blp-cat-card:hover {
    transform: translateY(-2px);
    border-color: rgba(232,93,4,.4);
    box-shadow: 0 10px 24px rgba(15,23,42,.11);
}
.blp-cat-card.is-active {
    border-color: rgba(232,93,4,.55);
    box-shadow: 0 10px 24px rgba(232,93,4,.2);
}
.blp-cat-thumb {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(140deg, #162240, #0b1426);
    border: 1px solid rgba(255,255,255,.35);
}
.blp-cat-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.blp-cat-thumb svg {
    width: 18px;
    height: 18px;
    color: rgba(255,255,255,.72);
}
.blp-cat-thumb--all {
    background: linear-gradient(135deg, var(--primary, #e85d04), var(--primary-dark, #c2410c));
    border: none;
}
.blp-cat-thumb--all svg {
    width: 19px;
    height: 19px;
    color: #fff;
}
.blp-cat-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.blp-cat-title {
    font-size: .84rem;
    font-weight: 700;
    color: var(--navy, #0b1426);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blp-cat-meta {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: var(--gray-500, #64748b);
}
.blp-cat-card.is-active .blp-cat-title {
    color: var(--primary, #e85d04);
}
.blp-cat-card.is-active .blp-cat-meta {
    color: rgba(194,65,12,.86);
}
.blp-cat-card--all .blp-cat-meta {
    color: #8b4a1f;
}
.blp-cat-thumb.is-empty {
    background: linear-gradient(140deg, #162240, #0b1426);
}

/* ════════════════════════════════════════════════════════════════════
   BODY — Full width, no sidebar
   ════════════════════════════════════════════════════════════════════ */
.blp-body {
    background: #f1f3f7;
    padding: 56px 0 120px;
    min-height: 60vh;
}

/* Search notice */
.blp-search-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 20px;
    background: #fff;
    border: 1.5px solid rgba(232,93,4,.22);
    border-radius: 12px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-700, #334155);
    margin-bottom: 40px;
}
.blp-search-notice svg { width:16px; height:16px; color: var(--primary,#e85d04); flex-shrink:0; }
.blp-clear-link {
    margin-left: auto;
    font-size: .75rem;
    font-weight: 700;
    color: var(--primary, #e85d04);
    text-decoration: none;
    border-bottom: 1px solid rgba(232,93,4,.3);
    padding-bottom: 1px;
}

/* ════════════════════════════════════════════════════════════════════
   FEATURED CARD — Cinematic full-width hero post
   ════════════════════════════════════════════════════════════════════ */
.blp-featured {
    position: relative;
    display: block;
    text-decoration: none;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 21/9;
    min-height: 360px;
    background: var(--navy, #0b1426);
    margin-bottom: 64px;
    box-shadow: 0 8px 40px rgba(15,23,42,.16), 0 2px 8px rgba(15,23,42,.1);
    transition: box-shadow .3s ease, transform .3s ease;
}
.blp-featured:hover {
    box-shadow: 0 20px 64px rgba(15,23,42,.22), 0 4px 16px rgba(15,23,42,.12);
    transform: translateY(-3px);
}
.blp-featured-img {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    animation: bhpan 26s ease-in-out infinite alternate;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.blp-featured:hover .blp-featured-img { transform: scale(1.03); }
.blp-featured-fallback {
    background:
        radial-gradient(ellipse 60% 70% at 28% 38%, rgba(232,93,4,.55), transparent 60%),
        linear-gradient(145deg, #0d1f3c, #0b1426);
}
.blp-featured-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        260deg,
        rgba(6,12,24,.08) 0%,
        rgba(6,12,24,.28) 28%,
        rgba(6,12,24,.82) 65%,
        rgba(6,12,24,.97) 100%
    );
}
.blp-featured-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 52px 44px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 760px;
}

.blp-featured-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    height: 26px;
    border-radius: 7px;
    padding: 0 12px;
    background: var(--primary, #e85d04);
    color: #fff;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.blp-featured-title {
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.8vw, 2.1rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.18;
    letter-spacing: -.028em;
    margin: 0;
    text-shadow: 0 2px 20px rgba(6,12,24,.35);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blp-featured-sum {
    font-size: .88rem;
    color: rgba(255,255,255,.58);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blp-featured-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.blp-featured-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.blp-featured-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .73rem;
    color: rgba(255,255,255,.48);
    font-weight: 500;
}
.blp-featured-meta svg { width: 12px; height: 12px; opacity: .6; }

.blp-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,.18);
    border-radius: 99px;
    padding: 10px 22px;
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .22s, border-color .22s, transform .22s;
}
.blp-featured:hover .blp-featured-cta {
    background: var(--primary, #e85d04);
    border-color: var(--primary, #e85d04);
    transform: translateX(3px);
}

/* ════════════════════════════════════════════════════════════════════
   SECTION LABELS
   ════════════════════════════════════════════════════════════════════ */
.blp-section { margin-bottom: 64px; }
.blp-section:last-child { margin-bottom: 0; }

.blp-section-label { margin-bottom: 28px; }

.blp-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--primary, #e85d04);
    margin-bottom: 8px;
}
.blp-section-eyebrow::before {
    content: '';
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    flex-shrink: 0;
}

.blp-section-h {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy, #0b1426);
    letter-spacing: -.03em;
    line-height: 1.14;
    margin: 0;
}
.blp-section-h--sub {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-700, #334155);
    letter-spacing: 0;
}

/* Feed head row */
.blp-feed-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(15,23,42,.07);
    flex-wrap: wrap;
}
.blp-feed-cnt {
    font-size: .7rem;
    font-weight: 700;
    color: var(--gray-400, #94a3b8);
    letter-spacing: .08em;
    text-transform: uppercase;
    background: #fff;
    border: 1.5px solid #dde4ed;
    border-radius: 99px;
    padding: 5px 16px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════
   POPULAR POSTS — 1 büyük + 4 küçük editorial grid
   ════════════════════════════════════════════════════════════════════ */
.blp-popular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

/* ── Sol: Büyük kart ── */
.blp-pop-main {
    position: relative;
    display: block;
    text-decoration: none;
    color: #fff;
    border-radius: 18px;
    overflow: hidden;
    min-height: 480px;
    background: var(--navy, #0b1426);
    box-shadow: 0 4px 20px rgba(15,23,42,.12), 0 12px 40px rgba(15,23,42,.1);
    transition: transform .3s ease, box-shadow .3s ease;
}
.blp-pop-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(15,23,42,.18), 0 24px 60px rgba(15,23,42,.12);
}
.blp-pop-main-img {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center;
    animation: bhpan 28s ease-in-out infinite alternate;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.blp-pop-main:hover .blp-pop-main-img { transform: scale(1.04); }
.blp-pop-main-fb {
    background:
        radial-gradient(ellipse 65% 70% at 30% 35%, rgba(232,93,4,.52), transparent 62%),
        linear-gradient(145deg, #0d1f3c, #0b1426);
}
.blp-pop-main-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(6,12,24,.06) 0%,
        rgba(6,12,24,.32) 35%,
        rgba(6,12,24,.86) 70%,
        rgba(6,12,24,.97) 100%
    );
}
.blp-pop-main-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 32px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.blp-pop-main-title {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.28;
    letter-spacing: -.025em;
    margin: 0;
    text-shadow: 0 2px 16px rgba(6,12,24,.4);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blp-pop-main-sum {
    font-size: .84rem;
    color: rgba(255,255,255,.55);
    line-height: 1.62;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blp-pop-main-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.blp-pop-main-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .7rem;
    color: rgba(255,255,255,.42);
    font-weight: 500;
}
.blp-pop-main-meta svg { width: 11px; height: 11px; opacity: .6; }

/* Badge — shared */
.blp-pop-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    height: 24px;
    border-radius: 6px;
    padding: 0 11px;
    background: var(--primary, #e85d04);
    color: #fff;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.blp-pop-badge--sm {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 2;
    height: 20px;
    font-size: .55rem;
    padding: 0 8px;
    border-radius: 5px;
    background: rgba(6,12,24,.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    transition: background .2s;
}
.blp-pop-sub:hover .blp-pop-badge--sm {
    background: rgba(232,93,4,.88);
    border-color: transparent;
}

/* ── Sağ: 2×2 küçük kartlar ── */
.blp-pop-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.blp-pop-sub {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.055);
    box-shadow: 0 1px 4px rgba(15,23,42,.04), 0 4px 16px rgba(15,23,42,.05);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.blp-pop-sub:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 28px rgba(15,23,42,.1), 0 20px 48px rgba(15,23,42,.1);
    border-color: rgba(15,23,42,.1);
}

.blp-pop-sub-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--navy, #0b1426);
    flex-shrink: 0;
}
.blp-pop-sub-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.16,1,.3,1);
}
.blp-pop-sub:hover .blp-pop-sub-img img { transform: scale(1.07); }
.blp-pop-sub-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(6,12,24,.24) 100%);
    pointer-events: none;
}
.blp-pop-sub-fb {
    width:100%; height:100%;
    background:
        radial-gradient(circle at 28% 32%, rgba(232,93,4,.4), transparent 58%),
        linear-gradient(140deg, #162240, #0b1426);
}

.blp-pop-sub-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.blp-pop-sub-title {
    font-family: var(--font-display);
    font-size: .92rem;
    font-weight: 700;
    color: var(--navy, #0b1426);
    line-height: 1.38;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .18s;
}
.blp-pop-sub:hover .blp-pop-sub-title { color: var(--primary, #e85d04); }

.blp-pop-sub-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 12px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid #f0f3f8;
}
.blp-pop-sub-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .67rem;
    font-weight: 500;
    color: var(--gray-400, #94a3b8);
    white-space: nowrap;
}
.blp-pop-sub-meta svg { width: 10px; height: 10px; opacity: .6; flex-shrink: 0; }

/* Dark mode */
[data-theme="dark"] .blp-pop-sub, .dark .blp-pop-sub {
    background: #0e1521;
    border-color: rgba(100,116,139,.13);
}
[data-theme="dark"] .blp-pop-sub-title, .dark .blp-pop-sub-title { color: #e2e8f0; }
[data-theme="dark"] .blp-pop-sub-meta, .dark .blp-pop-sub-meta { border-top-color: rgba(100,116,139,.1); }

/* Responsive */
@media (max-width: 1100px) {
    .blp-popular-grid { grid-template-columns: 1fr; }
    .blp-pop-main { min-height: 340px; }
    .blp-pop-sub-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (max-width: 760px) {
    .blp-pop-sub-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 480px) {
    .blp-pop-sub-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   CARDS GRID — 3 columns, full width
   ════════════════════════════════════════════════════════════════════ */
.blp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 24px;
}

/* Reveal animation */
.blp-card, .blp-featured {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity .62s cubic-bezier(.16,1,.3,1) var(--blp-delay,0ms),
        transform .62s cubic-bezier(.16,1,.3,1) var(--blp-delay,0ms);
}
.blp-card.blp-visible, .blp-featured.blp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card */
.blp-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15,23,42,.055);
    box-shadow: 0 1px 4px rgba(15,23,42,.04), 0 6px 22px rgba(15,23,42,.05);
    transition:
        opacity .62s cubic-bezier(.16,1,.3,1) var(--blp-delay,0ms),
        transform .62s cubic-bezier(.16,1,.3,1) var(--blp-delay,0ms),
        box-shadow .28s ease,
        border-color .28s ease;
}
.blp-card:hover {
    box-shadow: 0 4px 16px rgba(15,23,42,.08), 0 20px 52px rgba(15,23,42,.12);
    border-color: rgba(15,23,42,.1);
    transform: translateY(-6px) !important;
}
.blp-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Card image */
.blp-card-media {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: var(--navy, #0b1426);
    flex-shrink: 0;
}
.blp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s cubic-bezier(.16,1,.3,1);
}
.blp-card:hover .blp-card-media img { transform: scale(1.07); }
.blp-card-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(6,12,24,.28) 100%);
    pointer-events: none;
}
.blp-card-fallback {
    width:100%; height:100%;
    background:
        radial-gradient(circle at 28% 32%, rgba(232,93,4,.4), transparent 58%),
        linear-gradient(140deg, #162240, #0b1426);
}

/* Badge */
.blp-card-badge {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    height: 22px;
    border-radius: 6px;
    padding: 0 9px;
    background: rgba(6,12,24,.72);
    backdrop-filter: blur(12px) saturate(1.8);
    -webkit-backdrop-filter: blur(12px) saturate(1.8);
    color: #fff;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.1);
    white-space: nowrap;
    max-width: calc(100% - 24px);
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background .2s, border-color .2s;
}
.blp-card:hover .blp-card-badge {
    background: rgba(232,93,4,.88);
    border-color: transparent;
}

/* Card body */
.blp-card-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.blp-card-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy, #0b1426);
    line-height: 1.42;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .18s;
}
.blp-card:hover .blp-card-title { color: var(--primary, #e85d04); }
.blp-card-sum {
    font-size: .8rem;
    color: var(--gray-500, #64748b);
    line-height: 1.62;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blp-card-meta {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 14px;
    padding-top: 13px;
    border-top: 1px solid #f0f3f8;
}
.blp-card-date, .blp-card-reads {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .69rem;
    font-weight: 500;
    color: var(--gray-400, #94a3b8);
    white-space: nowrap;
}
.blp-card-date svg, .blp-card-reads svg {
    width: 11px; height: 11px;
    flex-shrink: 0; opacity: .6;
}

/* ════════════════════════════════════════════════════════════════════
   PAGINATION
   ════════════════════════════════════════════════════════════════════ */
.blp-pag {
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.blp-pag-nums { display: flex; gap: 4px; }
.blp-pag-btn, .blp-pag-n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1.5px solid #dce4ed;
    background: #fff;
    color: var(--gray-600, #475569);
    font-size: .8rem;
    font-weight: 700;
    padding: 0 14px;
    text-decoration: none;
    transition: all .2s ease;
}
.blp-pag-btn:not(.blp-pag-off):hover,
.blp-pag-n:not(.is-on):hover {
    border-color: var(--navy, #0b1426);
    color: var(--navy, #0b1426);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(15,23,42,.1);
}
.blp-pag-n.is-on {
    background: var(--navy, #0b1426);
    border-color: var(--navy, #0b1426);
    color: #fff;
    box-shadow: 0 4px 16px rgba(11,20,38,.28);
}
.blp-pag-off { opacity:.3; cursor:default; pointer-events:none; }

/* ════════════════════════════════════════════════════════════════════
   EMPTY STATE
   ════════════════════════════════════════════════════════════════════ */
.blp-empty {
    text-align: center;
    padding: 80px 32px;
    background: #fff;
    border: 1.5px dashed #dce4ed;
    border-radius: 20px;
}
.blp-empty svg { width:48px; height:48px; color:#cbd5e1; margin:0 auto 20px; display:block; }
.blp-empty h3 { font-family:var(--font-display); font-size:1.25rem; color:var(--gray-800,#1e293b); margin:0 0 10px; }
.blp-empty p  { font-size:.875rem; color:var(--gray-500,#64748b); margin:0; }

/* ════════════════════════════════════════════════════════════════════
   DARK MODE
   ════════════════════════════════════════════════════════════════════ */
[data-theme="dark"] .blp-cats-bar, .dark .blp-cats-bar {
    background: linear-gradient(180deg, #0c1322 0%, #0a1020 100%);
    border-color: rgba(100,116,139,.14);
}
[data-theme="dark"] .blp-cats-btn, .dark .blp-cats-btn {
    background: #111827;
    border-color: rgba(100,116,139,.28);
    color: #94a3b8;
    box-shadow: none;
}
[data-theme="dark"] .blp-cats-btn:hover:not(:disabled), .dark .blp-cats-btn:hover:not(:disabled) {
    border-color: rgba(148,163,184,.55);
    color: #f8fafc;
    box-shadow: 0 10px 24px rgba(15,23,42,.32);
}
[data-theme="dark"] .blp-cats-scroll-wrap::before, .dark .blp-cats-scroll-wrap::before {
    background: linear-gradient(90deg, rgba(10,16,32,.95) 0%, rgba(10,16,32,0) 100%);
}
[data-theme="dark"] .blp-cats-scroll-wrap::after, .dark .blp-cats-scroll-wrap::after {
    background: linear-gradient(270deg, rgba(10,16,32,.95) 0%, rgba(10,16,32,0) 100%);
}
[data-theme="dark"] .blp-cat-card, .dark .blp-cat-card {
    background: #111827;
    border-color: rgba(100,116,139,.22);
    box-shadow: none;
}
[data-theme="dark"] .blp-cat-card:hover, .dark .blp-cat-card:hover {
    border-color: rgba(148,163,184,.55);
}
[data-theme="dark"] .blp-cat-title, .dark .blp-cat-title { color:#e2e8f0; }
[data-theme="dark"] .blp-cat-meta, .dark .blp-cat-meta { color:#94a3b8; }
[data-theme="dark"] .blp-cat-card.is-active, .dark .blp-cat-card.is-active {
    border-color: rgba(251,146,60,.55);
    box-shadow: 0 10px 24px rgba(234,88,12,.2);
}
[data-theme="dark"] .blp-cat-card.is-active .blp-cat-title, .dark .blp-cat-card.is-active .blp-cat-title { color:#fdba74; }
[data-theme="dark"] .blp-cat-card.is-active .blp-cat-meta, .dark .blp-cat-card.is-active .blp-cat-meta { color:#fed7aa; }
[data-theme="dark"] .blp-cat-card--all .blp-cat-meta, .dark .blp-cat-card--all .blp-cat-meta { color:#fcd34d; }
[data-theme="dark"] .blp-cat-thumb.is-empty, .dark .blp-cat-thumb.is-empty {
    background: linear-gradient(140deg, #111b32, #0f172a);
}
[data-theme="dark"] .blp-body, .dark .blp-body { background:#060b14; }
[data-theme="dark"] .blp-card, .dark .blp-card { background:#0e1521; border-color:rgba(100,116,139,.13); box-shadow:none; }
[data-theme="dark"] .blp-card-title, .dark .blp-card-title { color:#e2e8f0; }
[data-theme="dark"] .blp-card-sum, .dark .blp-card-sum { color:#64748b; }
[data-theme="dark"] .blp-card-meta, .dark .blp-card-meta { border-top-color:rgba(100,116,139,.1); }
[data-theme="dark"] .blp-section-h, .dark .blp-section-h { color:#f1f5f9; }
[data-theme="dark"] .blp-feed-head, .dark .blp-feed-head { border-bottom-color:rgba(100,116,139,.12); }
[data-theme="dark"] .blp-feed-cnt, .dark .blp-feed-cnt { background:#0a1020; border-color:rgba(100,116,139,.18); }
[data-theme="dark"] .blp-search-notice, .dark .blp-search-notice { background:#0e1521; }
[data-theme="dark"] .blp-pag-btn, [data-theme="dark"] .blp-pag-n,
.dark .blp-pag-btn, .dark .blp-pag-n { background:#0e1521; border-color:rgba(100,116,139,.18); color:#94a3b8; }
[data-theme="dark"] .blp-pag-n.is-on, .dark .blp-pag-n.is-on { background:#f1f5f9; color:#0b1426; border-color:#f1f5f9; }
[data-theme="dark"] .blp-empty, .dark .blp-empty { background:#0e1521; border-color:rgba(100,116,139,.18); }
[data-theme="dark"] .blp-empty h3, .dark .blp-empty h3 { color:#f1f5f9; }

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */
@media (max-width:1100px) {
    .blp-cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap:20px; }
}
@media (max-width:760px) {
    .blp-hero-content { padding: 104px 0 40px; } /* 84px header + 20px */
    .blp-hero-title { font-size: 1.9rem; }
    .blp-search-wrap { padding: 6px 6px 6px 18px; }
    .blp-search-wrap button { padding: 0 24px; font-size: .85rem; }
    .blp-cats-nav { gap: 8px; }
    .blp-cats-btn { width: 34px; height: 34px; border-radius: 10px; }
    .blp-cats-scroll-wrap::before, .blp-cats-scroll-wrap::after { width: 16px; }
    .blp-cats-scroll { gap: 10px; padding: 10px 0; }
    .blp-cat-card { min-width: 190px; padding: 9px 10px; border-radius: 12px; }
    .blp-cat-thumb { width: 46px; height: 46px; border-radius: 10px; }
    .blp-cat-title { font-size: .78rem; }
    .blp-cat-meta { font-size: .62rem; }
    .blp-featured { aspect-ratio: 4/3; min-height: 280px; }
    .blp-featured-body { padding: 24px 28px 28px; }
    .blp-featured-title { font-size: 1.25rem; }
    .blp-featured-sum { display: none; }
    .blp-section-h { font-size: 1.45rem; }
    .blp-hero-stats { gap: 12px; }
    .blp-hero-stat { padding-right: 18px; }
    .blp-hero-stat-sep { margin-right: 18px; }
}
@media (max-width:560px) {
    .blp-cards-grid { grid-template-columns: 1fr; }
    .blp-cats-nav { grid-template-columns: 32px minmax(0,1fr) 32px; }
    .blp-cat-card { min-width: 168px; }
    .blp-featured { aspect-ratio: 16/11; }
    .blp-hero-title { font-size: 1.6rem; }
    .blp-hero-stats { flex-direction: column; gap: 12px; }
    .blp-hero-stat-sep { display: none; }
    .blp-hero-stat { padding: 0; }
}
@media (prefers-reduced-motion:reduce) {
    .blp-card, .blp-featured { opacity:1 !important; transform:none !important; transition: box-shadow .22s, border-color .22s !important; }
    .blp-card-media img, .blp-featured-img { transition:none !important; animation:none !important; }
}


/* ════════════════════════════════════════════════════════════════════
   BLOG DETAIL — Preserved unchanged
   ════════════════════════════════════════════════════════════════════ */
.page-blog-detail { background:#f1f3f7; }
.bd-404{padding:160px 24px 80px;text-align:center}.bd-404 p{color:#64748b;font-size:1rem;margin-bottom:18px}.bd-404 a{color:var(--primary,#e85d04);font-weight:700;font-size:.9rem}
.bd-hero{position:relative;width:100%;height:90vh;min-height:600px;display:flex;align-items:flex-end;overflow:hidden;color:#fff}
.bd-hero-bg{position:absolute;inset:-6%;background-size:cover;background-position:center;animation:bhpan 28s ease-in-out infinite alternate}
.bd-hero-bg--fb{background:radial-gradient(ellipse 70% 60% at 25% 40%,rgba(232,93,4,.52),transparent 65%),linear-gradient(145deg,#060d1c,#111d35 55%,#162844)}
.bd-hero-veil{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(6,13,28,.05) 0%,rgba(6,13,28,.28) 35%,rgba(6,13,28,.82) 68%,rgba(6,13,28,.97) 100%)}
.bd-hero-inner{position:relative;z-index:2;padding-bottom:76px;display:flex;flex-direction:column;gap:16px;width:100%}
.bd-back{display:inline-flex;align-items:center;gap:6px;font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.42);text-decoration:none;transition:color .2s;align-self:flex-start;margin-bottom:6px}
.bd-back svg{width:13px;height:13px}.bd-back:hover{color:rgba(255,255,255,.78)}
.bd-cats{display:flex;flex-wrap:wrap;gap:7px}
.bd-cat{display:inline-flex;align-items:center;height:24px;border-radius:999px;padding:0 11px;background:rgba(232,93,4,.9);color:#fff;font-size:.58rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.bd-title{font-family:var(--font-display);font-size:clamp(1.65rem,3.4vw,2.7rem);font-weight:700;line-height:1.1;letter-spacing:-.03em;color:#fff;text-shadow:0 2px 28px rgba(6,13,28,.4);margin:0;max-width:1120px}
.bd-meta{display:flex;flex-wrap:wrap;align-items:center;gap:10px 16px;font-size:.8rem;color:rgba(255,255,255,.52);font-weight:500}
.bd-meta-author{display:flex;align-items:center;gap:9px;color:rgba(255,255,255,.84);font-weight:600}
.bd-av-sm{width:30px;height:30px;border-radius:999px;overflow:hidden;flex-shrink:0;background:linear-gradient(135deg,var(--primary,#e85d04),#9a3412);display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:.76rem;font-weight:700;color:#fff;border:2px solid rgba(255,255,255,.22)}
.bd-av-sm img{width:100%;height:100%;object-fit:cover}
.bd-dot{display:inline-block;width:3px;height:3px;border-radius:999px;background:rgba(255,255,255,.25)}
.bd-content{background:transparent;padding:36px 0 90px}
.bd-grid{display:grid;grid-template-columns:minmax(0,1fr) 320px;gap:56px;align-items:start}
.bd-main{min-width:0;display:flex;flex-direction:column;gap:0}
.bd-toc{position:sticky;top:76px;z-index:90;background:rgba(255,255,255,.97);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--gray-100,#f1f5f9);box-shadow:0 2px 12px rgba(0,0,0,.04);margin-bottom:0}
.bd-toc-scroll{display:flex;overflow-x:auto;overflow-y:hidden;scrollbar-width:none;-ms-overflow-style:none}
.bd-toc-scroll::-webkit-scrollbar{display:none}
.bd-toc-nav{display:flex;align-items:center;gap:0;min-width:max-content}
.bd-toc-btn{display:flex;align-items:center;gap:7px;padding:14px 22px;font-size:.85rem;font-weight:600;color:var(--gray-500,#64748b);background:none;border:none;border-bottom:2.5px solid transparent;cursor:pointer;white-space:nowrap;transition:all .18s;font-family:var(--font-body);position:relative;flex-shrink:0}
.bd-toc-btn:hover{color:var(--gray-900,#0f172a)}.bd-toc-btn.active{color:var(--primary,#e85d04);border-bottom-color:var(--primary,#e85d04)}
.bd-toc-btn.is-sub{font-size:.78rem;font-weight:600;opacity:.9;padding-left:34px}
.bd-toc-btn.is-sub::before{content:'';position:absolute;left:20px;top:50%;width:7px;height:1px;transform:translateY(-50%);background:currentColor;opacity:.45}
.bd-article{background:transparent;color:#374151;font-size:1.06rem;line-height:1.75;font-weight:400}
.bd-rich-content{color:inherit;font:inherit;line-height:inherit;word-break:break-word;overflow-wrap:anywhere}
.bd-rich-content>*{margin-top:0;margin-bottom:0}.bd-rich-content>*+*{margin-top:1rem}
.bd-rich-content :where(a){color:revert;text-decoration:revert}
.bd-rich-content :where(ul,ol){list-style:revert;padding-inline-start:1.35em}
.bd-rich-content :where(li+li){margin-top:.35em}
.bd-rich-content :where(img,video,iframe){max-width:100%;height:auto}
.bd-rich-content :where(iframe){width:100%;border:0}
.bd-rich-content :where(table){display:block;width:100%;overflow-x:auto;border-collapse:collapse}
.bd-rich-content :where(pre){overflow-x:auto}
.bd-rich-content h2,.bd-rich-content h3{scroll-margin-top:180px}
.bd-tags{display:flex;flex-wrap:wrap;align-items:center;gap:7px;margin-top:2.5em;padding-top:1.6em;border-top:1px solid #f1f2f4}
.bd-tags-lbl{font-size:.65rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;color:#9ca3af}
.bd-tag{display:inline-flex;align-items:center;height:28px;border-radius:999px;padding:0 13px;border:1.5px solid #e5e7eb;background:#f9fafb;color:#6b7280;font-size:.68rem;font-weight:600;text-decoration:none;transition:border-color .15s,color .15s,background .15s}
.bd-tag:hover{border-color:rgba(232,93,4,.38);background:#fff7ed;color:#c2410c}
.bd-author{display:flex;align-items:center;gap:22px;padding:40px 0;border-top:1px solid #e9eaec;margin-top:40px}
.bd-av{width:72px;height:72px;border-radius:999px;overflow:hidden;flex-shrink:0;background:linear-gradient(135deg,var(--primary,#e85d04),#9a3412);display:flex;align-items:center;justify-content:center;font-family:var(--font-display);font-size:1.7rem;font-weight:700;color:#fff;box-shadow:0 4px 16px rgba(232,93,4,.22)}
.bd-av img{width:100%;height:100%;object-fit:cover}
.bd-author-lbl{font-size:.6rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:var(--primary,#e85d04);margin-bottom:4px}
.bd-author-name{font-family:var(--font-display);font-size:1.18rem;font-weight:700;color:#111827;letter-spacing:-.01em;margin-bottom:7px}
.bd-author-bio{font-size:.86rem;color:#6b7280;line-height:1.62;margin:0}
.bd-comments{padding-top:44px;border-top:1px solid #e9eaec;margin-top:0}
.bd-comments-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:18px;flex-wrap:wrap}
.bd-comments-h{font-family:var(--font-display);font-size:1.42rem;font-weight:700;color:#111827;letter-spacing:-.02em;margin:0}
.bd-btn-open-review-modal{display:inline-flex;align-items:center;gap:8px;padding:11px 24px;background:linear-gradient(135deg,var(--primary,#e85d04),var(--primary-dark,#c2410c));color:#fff;border:none;border-radius:12px;font-size:.86rem;font-weight:700;cursor:pointer;box-shadow:0 4px 16px rgba(232,93,4,.3);transition:transform .18s,box-shadow .18s}
.bd-btn-open-review-modal:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(232,93,4,.4)}
.bd-rating-summary-mini{display:flex;align-items:center;gap:14px;padding:16px 18px;background:#f8fafc;border:1px solid #e5e7eb;border-radius:12px;margin-bottom:18px}
.bd-rating-big-num{font-size:2.4rem;font-weight:800;color:#111827;line-height:1;letter-spacing:-.04em}
.bd-rating-big-stars{color:#f59e0b;font-size:1.05rem;letter-spacing:2px}
.bd-rating-big-count{font-size:.74rem;color:#94a3b8;margin-top:2px}
.bd-review-item{background:#fff;border-radius:12px;padding:18px 20px;border:1px solid #f1f5f9;box-shadow:0 2px 12px rgba(15,23,42,.05);margin-bottom:12px;transition:transform .15s,box-shadow .15s}
.bd-review-item:last-child{margin-bottom:0}
.bd-review-item:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,.07)}
.bd-review-item-header{display:flex;align-items:flex-start;gap:12px;margin-bottom:10px}
.bd-review-avatar-circle{width:40px;height:40px;border-radius:10px;background:linear-gradient(135deg,var(--primary,#e85d04),var(--primary-dark,#c2410c));color:white;font-size:1rem;font-weight:700;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.bd-review-item-name{font-size:.9rem;font-weight:700;color:#111827}
.bd-review-item-stars{color:#f59e0b;font-size:.78rem;letter-spacing:1px}
.bd-review-item-date{font-size:.72rem;color:#94a3b8;margin-left:auto;white-space:nowrap}
.bd-review-item-text{font-size:.875rem;color:#475569;line-height:1.65;margin:0}
.bd-reviews-empty{text-align:center;padding:40px 20px;color:#94a3b8;font-size:.875rem;border:1px dashed #e2e8f0;border-radius:12px}
.bd-reviews-empty svg{margin:0 auto 12px;display:block;opacity:.25}
.bd-review-modal-overlay{position:fixed;inset:0;z-index:10000;background:rgba(11,20,38,.6);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);display:flex;align-items:center;justify-content:center;padding:20px;opacity:0;pointer-events:none;transition:opacity .22s ease}
.bd-review-modal-overlay.open{opacity:1;pointer-events:all}
.bd-review-modal-panel{background:white;border-radius:20px;width:100%;max-width:560px;max-height:90vh;overflow-y:auto;box-shadow:0 32px 80px rgba(0,0,0,.22);transform:translateY(20px) scale(.97);transition:transform .25s ease}
.bd-review-modal-overlay.open .bd-review-modal-panel{transform:translateY(0) scale(1)}
.bd-review-modal-header{display:flex;align-items:center;justify-content:space-between;padding:20px 24px 18px;border-bottom:1px solid #f1f5f9;background:linear-gradient(135deg,#0f172a,#1e3a5f);border-radius:20px 20px 0 0;position:sticky;top:0;z-index:2}
.bd-review-modal-header-left{display:flex;align-items:center;gap:14px}
.bd-review-modal-header-icon{width:40px;height:40px;background:rgba(255,255,255,.12);border-radius:10px;display:flex;align-items:center;justify-content:center;color:white}
.bd-review-modal-title{font-family:var(--font-display);font-size:1rem;font-weight:700;color:white;line-height:1.3}
.bd-review-modal-sub{font-size:.75rem;color:rgba(255,255,255,.65);margin-top:2px}
.bd-review-modal-close{width:36px;height:36px;background:rgba(255,255,255,.1);border:none;border-radius:9px;color:white;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .15s}
.bd-review-modal-close:hover{background:rgba(255,255,255,.2)}
.bd-review-modal-body{padding:24px}
.bd-rm-star-section{text-align:center;margin-bottom:22px;padding:18px;background:#f8fafc;border-radius:12px;border:1px solid #f1f5f9}
.bd-rm-star-label{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:#64748b;margin-bottom:12px}
.bd-rm-star-row{display:flex;gap:8px;justify-content:center;margin-bottom:8px}
.bd-rm-star-btn{font-size:2rem;background:none;border:none;color:#cbd5e1;cursor:pointer;transition:color .12s,transform .12s;line-height:1;padding:0}
.bd-rm-star-btn.active{color:#f59e0b}.bd-rm-star-btn:hover{color:#f59e0b;transform:scale(1.2)}
.bd-rm-star-hint{font-size:.8rem;font-weight:600;color:#64748b;min-height:1.2em}
.bd-rm-star-hint.rating-1{color:#ef4444}.bd-rm-star-hint.rating-2{color:#f97316}.bd-rm-star-hint.rating-3{color:#f59e0b}.bd-rm-star-hint.rating-4{color:#84cc16}.bd-rm-star-hint.rating-5{color:#22c55e}
.bd-rm-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:14px}
.bd-rm-group{margin-bottom:14px}
.bd-rf-label{font-size:.72rem;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.08em;display:block;margin-bottom:5px}
.bd-rf-input,.bd-rf-textarea{width:100%;padding:10px 13px;border:1.5px solid #e2e8f0;border-radius:9px;font-size:.875rem;color:#1f2937;font-family:var(--font-body);background:#f8fafc;outline:none;transition:all .15s;box-sizing:border-box}
.bd-rf-input:focus,.bd-rf-textarea:focus{border-color:var(--primary,#e85d04);background:white;box-shadow:0 0 0 3px rgba(232,93,4,.12)}
.bd-rf-textarea{resize:vertical;min-height:96px;line-height:1.6}
.bd-review-modal-footer{display:flex;align-items:center;justify-content:space-between;gap:12px;padding-top:16px;border-top:1px solid #f1f5f9;margin-top:6px}
.bd-rm-privacy{display:flex;align-items:center;gap:5px;font-size:.72rem;color:#94a3b8;margin:0}
.bd-btn-submit-review{display:inline-flex;align-items:center;justify-content:center;gap:7px;min-width:170px;padding:12px;border-radius:10px;border:none;cursor:pointer;background:linear-gradient(135deg,var(--primary,#e85d04),var(--primary-dark,#c2410c));color:white;font-size:.9rem;font-weight:700;font-family:var(--font-body);box-shadow:0 4px 16px rgba(232,93,4,.3);transition:all .2s}
.bd-btn-submit-review:hover{transform:translateY(-1px);box-shadow:0 8px 24px rgba(232,93,4,.4)}
.bd-sidebar{position:sticky;top:92px;display:flex;flex-direction:column;gap:28px}
.bd-share-box{background:#fff;border-radius:16px;padding:22px 22px 20px;border:1px solid #f0f0ef;box-shadow:0 2px 12px rgba(0,0,0,.05)}
.bd-share-label{font-size:.65rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;color:#9ca3af;display:block;margin-bottom:14px}
.bd-share-btns{display:flex;flex-direction:column;gap:8px}
.bd-shr{display:flex;align-items:center;gap:10px;height:40px;border-radius:10px;padding:0 14px;border:1.5px solid #e9eaec;background:#f9fafb;color:#374151;font-family:var(--font-body);font-size:.8rem;font-weight:600;text-decoration:none;cursor:pointer;transition:border-color .15s,background .15s,color .15s,transform .15s}
.bd-shr svg{width:15px;height:15px;flex-shrink:0}.bd-shr:hover{transform:translateX(2px)}
.bd-shr-tw:hover{border-color:rgba(29,155,240,.4);background:rgba(29,155,240,.06);color:#1d9bf0}
.bd-shr-fb:hover{border-color:rgba(24,119,242,.4);background:rgba(24,119,242,.06);color:#1877f2}
.bd-shr-li:hover{border-color:rgba(10,102,194,.4);background:rgba(10,102,194,.06);color:#0a66c2}
.bd-shr-copy:hover{border-color:rgba(100,116,139,.4);background:#f1f5f9;color:#475569}
.bd-sb-related{display:flex;flex-direction:column;gap:16px}
.bd-sb-title{font-family:var(--font-display);font-size:1.02rem;font-weight:700;color:#111827;letter-spacing:-.01em;margin:0}
.bd-rel-row{display:flex;align-items:flex-start;gap:12px;text-decoration:none;color:inherit;padding:12px;border-radius:12px;border:1px solid #f0f0ef;background:#fff;transition:border-color .16s,transform .16s,box-shadow .16s}
.bd-rel-row:hover{border-color:rgba(232,93,4,.25);transform:translateX(3px);box-shadow:0 4px 16px rgba(0,0,0,.06)}
.bd-rel-row-img{width:70px;height:54px;border-radius:8px;overflow:hidden;flex-shrink:0;background:#0b1426}
.bd-rel-row-img img{width:100%;height:100%;object-fit:cover}
.bd-rel-row-fb{width:100%;height:100%;background:radial-gradient(circle at 30% 35%,rgba(232,93,4,.38),transparent 60%),linear-gradient(140deg,#162240,#0b1426)}
.bd-rel-row-body{flex:1;min-width:0;display:flex;flex-direction:column;gap:3px}
.bd-rel-row-cat{font-size:.56rem;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--primary,#e85d04)}
.bd-rel-row-title{font-size:.84rem;font-weight:700;color:#1f2937;line-height:1.32;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.bd-rel-row-meta{font-size:.65rem;font-weight:600;color:#9ca3af}
.bd-more{background:#fff;border-top:1px solid #f0f0ef;padding:72px 0 80px}
.bd-more-hd{display:flex;align-items:center;gap:18px;margin-bottom:36px}
.bd-more-hd h2{font-family:var(--font-display);font-size:1.5rem;font-weight:700;color:#111827;white-space:nowrap;letter-spacing:-.025em;margin:0}
.bd-more-line{flex:1;height:1px;background:#e9eaec}
.bd-more-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.bd-more-card{display:flex;flex-direction:column;border-radius:16px;overflow:hidden;background:#f9fafb;text-decoration:none;color:inherit;border:1px solid #f0f0ef;transition:transform .22s,box-shadow .22s}
.bd-more-card:hover{transform:translateY(-5px);box-shadow:0 16px 40px rgba(0,0,0,.1),0 4px 12px rgba(0,0,0,.06)}
.bd-more-card-img{position:relative;aspect-ratio:16/10;overflow:hidden;background:#0b1426}
.bd-more-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.bd-more-card:hover .bd-more-card-img img{transform:scale(1.06)}
.bd-more-card-fb{width:100%;height:100%;background:radial-gradient(circle at 30% 35%,rgba(232,93,4,.36),transparent 60%),linear-gradient(140deg,#162240,#0b1426)}
.bd-more-badge{position:absolute;top:10px;left:10px;display:inline-flex;align-items:center;height:22px;border-radius:999px;padding:0 9px;font-size:.56rem;font-weight:800;letter-spacing:.07em;text-transform:uppercase;background:rgba(6,13,28,.72);backdrop-filter:blur(6px);color:#fff;border:1px solid rgba(255,255,255,.12)}
.bd-more-card-body{padding:20px 22px 22px;display:flex;flex-direction:column;gap:8px;flex:1}
.bd-more-card-body h3{font-family:var(--font-display);font-size:1rem;font-weight:700;color:#111827;line-height:1.35;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.bd-more-card-body p{font-size:.8rem;color:#6b7280;line-height:1.56;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.bd-more-card-meta{display:flex;flex-wrap:wrap;gap:3px 8px;font-size:.66rem;font-weight:600;color:#9ca3af;margin-top:auto}
.bd-more-card-cta{font-size:.72rem;font-weight:700;color:var(--primary-dark,#c2410c)}
[data-theme="dark"] .page-blog-detail,.dark .page-blog-detail{background:#060b14}
[data-theme="dark"] .bd-content,.dark .bd-content{background:transparent}
[data-theme="dark"] .bd-article,.dark .bd-article{background:transparent;color:#9ca3af}
[data-theme="dark"] .bd-toc,.dark .bd-toc{background:rgba(14,21,33,.96);border-bottom-color:rgba(100,116,139,.18);box-shadow:none}
[data-theme="dark"] .bd-toc-btn,.dark .bd-toc-btn{color:#94a3b8}
[data-theme="dark"] .bd-toc-btn:hover,.dark .bd-toc-btn:hover{color:#e2e8f0}
[data-theme="dark"] .bd-toc-btn.active,.dark .bd-toc-btn.active{color:#f8fafc}
[data-theme="dark"] .bd-author-name,[data-theme="dark"] .bd-comments-h,[data-theme="dark"] .bd-more-hd h2,
.dark .bd-author-name,.dark .bd-comments-h,.dark .bd-more-hd h2{color:#f1f5f9}
[data-theme="dark"] .bd-author,.dark .bd-author{border-top-color:rgba(100,116,139,.18)}
[data-theme="dark"] .bd-comments,.dark .bd-comments{border-top-color:rgba(100,116,139,.18)}
[data-theme="dark"] .bd-rf-input,[data-theme="dark"] .bd-rf-textarea,.dark .bd-rf-input,.dark .bd-rf-textarea{background:#0a1020;border-color:rgba(100,116,139,.22);color:#f1f5f9}
[data-theme="dark"] .bd-share-box,[data-theme="dark"] .bd-rel-row,[data-theme="dark"] .bd-more-card,.dark .bd-share-box,.dark .bd-rel-row,.dark .bd-more-card{background:#0d1424;border-color:rgba(100,116,139,.16)}
[data-theme="dark"] .bd-review-item,[data-theme="dark"] .bd-rating-summary-mini,.dark .bd-review-item,.dark .bd-rating-summary-mini{background:#0d1424;border-color:rgba(100,116,139,.16);color:#94a3b8}
[data-theme="dark"] .bd-rating-big-num,.dark .bd-rating-big-num{color:#f1f5f9}
[data-theme="dark"] .bd-shr,.dark .bd-shr{background:#111827;border-color:rgba(100,116,139,.2);color:#94a3b8}
[data-theme="dark"] .bd-more,.dark .bd-more{background:#0b1220;border-top-color:rgba(100,116,139,.12)}
[data-theme="dark"] .bd-tag,.dark .bd-tag{background:#111827;border-color:rgba(100,116,139,.2);color:#94a3b8}
[data-theme="dark"] .bd-review-item-text,.dark .bd-review-item-text{color:#cbd5e1}
[data-theme="dark"] .bd-review-modal-panel,.dark .bd-review-modal-panel{background:#0f172a}
@media(max-width:1200px){.bd-grid{grid-template-columns:minmax(0,1fr) 280px;gap:36px}}
@media(max-width:960px){.bd-toc{top:68px}.bd-grid{grid-template-columns:1fr}.bd-sidebar{position:static}.bd-share-btns{flex-direction:row;flex-wrap:wrap}.bd-shr{flex:1;min-width:120px}.bd-sb-related{display:none}.bd-more-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.bd-hero{height:78vh;min-height:500px}.bd-title{font-size:clamp(1.45rem,5.2vw,2.15rem)}.bd-article{padding:0;font-size:.97rem}.bd-comments-head{flex-direction:column;align-items:flex-start}.bd-btn-open-review-modal{width:100%;justify-content:center}.bd-rm-row{grid-template-columns:1fr}.bd-review-modal-overlay{padding:0;align-items:flex-end}.bd-review-modal-panel{border-radius:20px 20px 0 0;max-height:92vh}.bd-review-modal-header{border-radius:20px 20px 0 0;padding:15px 16px 13px}.bd-review-modal-body{padding:16px}.bd-review-modal-footer{flex-direction:column;align-items:stretch}.bd-btn-submit-review{width:100%;min-width:unset}.bd-more-grid{grid-template-columns:1fr}}
@media(max-width:540px){.bd-toc-btn{padding:10px 11px;font-size:.7rem;gap:3px}.bd-article{padding:0;font-size:.94rem}.bd-shr{min-width:0;flex:unset;width:100%}}

/* Mobile refinement layer */
.page-blog,
.page-blog-detail {
    overflow-x: hidden;
}

.blp-cats-bar {
    top: 84px;
}

.bd-review-modal-header-left,
.bd-review-modal-title,
.bd-review-modal-sub {
    min-width: 0;
}

.bd-review-modal-title,
.bd-review-modal-sub {
    overflow-wrap: anywhere;
}

@media (max-width: 900px) {
    .blp-cats-bar {
        top: 64px;
    }

    .bd-toc {
        top: 64px;
    }
}

@media (max-width: 760px) {
    .page-blog .container,
    .page-blog-detail .container {
        padding-inline: 16px;
    }

    .blp-hero-content {
        padding: calc(64px + env(safe-area-inset-top, 0px) + 34px) 0 34px;
    }

    .blp-bc {
        margin-bottom: 16px;
        font-size: .62rem;
        letter-spacing: .06em;
    }

    .blp-hero-title,
    .blp-section-h,
    .blp-featured-title,
    .blp-pop-main-title,
    .blp-card-title,
    .bd-title,
    .bd-comments-h,
    .bd-more-hd h2,
    .bd-more-card-body h3 {
        letter-spacing: 0;
    }

    .blp-hero-title {
        font-size: 1.8rem;
        line-height: 1.15;
    }

    .blp-hero-title::after {
        width: 36px;
        margin-top: 14px;
    }

    .blp-hero-desc {
        margin-bottom: 24px;
        font-size: .9rem;
        line-height: 1.62;
    }

    .blp-search-form {
        margin-bottom: 24px;
    }

    .blp-search-wrap {
        gap: 10px;
        padding: 6px 6px 6px 16px;
        border-radius: 100px;
    }

    .blp-search-wrap input {
        min-height: 44px;
        padding: 0;
    }

    .blp-search-wrap button {
        height: 44px;
        border-radius: 100px;
    }

    .blp-hero-stats {
        display: flex;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        padding-top: 16px;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .blp-hero-stats::-webkit-scrollbar {
        display: none;
    }

    .blp-hero-stat {
        min-width: max-content;
        padding: 0 16px 0 0;
    }

    .blp-hero-stat strong {
        font-size: 1.18rem;
    }

    .blp-hero-stat span {
        font-size: .54rem;
        line-height: 1.25;
        letter-spacing: .07em;
        white-space: nowrap;
    }

    .blp-hero-stat-sep {
        display: block;
        width: 1px;
        height: 28px;
        margin-right: 16px;
        background: rgba(255,255,255,.1);
    }

    .blp-cats-bar {
        box-shadow: 0 8px 18px rgba(15,23,42,.08);
    }

    .blp-cats-bar .container {
        padding-inline: 0;
    }

    .blp-cats-nav {
        display: block;
    }

    .blp-cats-btn {
        display: none;
    }

    .blp-cats-scroll {
        gap: 10px;
        padding: 12px 16px;
        scroll-padding-inline: 16px;
        scroll-snap-type: x proximity;
    }

    .blp-cat-card {
        gap: 8px;
        min-width: 148px;
        max-width: 178px;
        padding: 8px;
        border-radius: 12px;
        scroll-snap-align: start;
    }

    .blp-cat-thumb {
        width: 38px;
        height: 38px;
        border-radius: 9px;
    }

    .blp-body {
        padding: 34px 0 72px;
    }

    .blp-section {
        margin-bottom: 44px;
    }

    .blp-section-label {
        margin-bottom: 20px;
    }

    .blp-section-h {
        font-size: 1.36rem;
    }

    .blp-feed-head {
        align-items: flex-start;
        padding-bottom: 16px;
    }

    .blp-feed-cnt {
        padding: 5px 12px;
        font-size: .65rem;
    }

    .blp-search-notice {
        align-items: flex-start;
        padding: 13px 14px;
        margin-bottom: 28px;
        border-radius: 12px;
    }

    .blp-clear-link {
        width: 100%;
        margin-left: 26px;
    }

    .blp-featured {
        aspect-ratio: auto;
        min-height: 360px;
        margin-bottom: 44px;
        border-radius: 16px;
    }

    .blp-featured-veil {
        background: linear-gradient(to bottom, rgba(6,12,24,.12) 0%, rgba(6,12,24,.48) 42%, rgba(6,12,24,.96) 100%);
    }

    .blp-featured-body {
        padding: 24px 20px 22px;
        gap: 12px;
    }

    .blp-featured-title {
        font-size: 1.24rem;
        line-height: 1.24;
    }

    .blp-featured-foot {
        align-items: stretch;
        gap: 12px;
    }

    .blp-featured-meta,
    .blp-pop-main-meta,
    .blp-pop-sub-meta,
    .blp-card-meta,
    .bd-more-card-meta {
        gap: 6px 10px;
    }

    .blp-featured-meta span,
    .blp-pop-main-meta span,
    .blp-pop-sub-meta span,
    .blp-card-date,
    .blp-card-reads {
        white-space: normal;
    }

    .blp-featured-cta {
        justify-content: center;
        width: 100%;
        min-height: 44px;
        padding: 10px 18px;
    }

    .blp-popular-grid,
    .blp-cards-grid {
        gap: 16px;
    }

    .blp-pop-main {
        min-height: 350px;
        border-radius: 16px;
    }

    .blp-pop-main-body {
        padding: 24px 20px 22px;
    }

    .blp-pop-main-title {
        font-size: 1.18rem;
    }

    .blp-pop-sub {
        border-radius: 14px;
    }

    .blp-pop-sub-body,
    .blp-card-body {
        padding: 16px;
    }

    .blp-card {
        border-radius: 14px;
    }

    .blp-card-media {
        aspect-ratio: 16 / 10;
    }

    .blp-pag {
        margin-top: 36px;
        gap: 8px;
    }

    .blp-pag-btn {
        flex: 1 1 0;
    }

    .blp-pag-nums {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .bd-hero {
        height: auto;
        min-height: 460px;
    }

    .bd-hero-bg {
        inset: -4%;
    }

    .bd-hero-inner {
        padding-top: calc(64px + env(safe-area-inset-top, 0px) + 70px);
        padding-bottom: 42px;
        gap: 13px;
    }

    .bd-back {
        min-height: 36px;
        margin-bottom: 0;
    }

    .bd-title {
        font-size: 1.68rem;
        line-height: 1.15;
    }

    .bd-meta {
        gap: 8px 12px;
        font-size: .76rem;
    }

    .bd-dot {
        display: none;
    }

    .bd-content {
        padding: 30px 0 66px;
    }

    .bd-grid {
        gap: 34px;
    }

    .bd-toc-btn {
        min-height: 44px;
        padding: 11px 14px;
        font-size: .75rem;
    }

    .bd-article {
        font-size: .98rem;
        line-height: 1.72;
    }

    .bd-rich-content :where(h1,h2,h3,h4) {
        line-height: 1.22;
        letter-spacing: 0;
    }

    .bd-rich-content :where(img,video,iframe) {
        border-radius: 12px;
    }

    .bd-rich-content :where(pre,table) {
        max-width: 100%;
    }

    .bd-tags {
        margin-top: 2em;
        padding-top: 1.3em;
    }

    .bd-author {
        align-items: flex-start;
        gap: 16px;
        padding: 30px 0;
        margin-top: 30px;
    }

    .bd-av {
        width: 58px;
        height: 58px;
        font-size: 1.35rem;
    }

    .bd-comments {
        padding-top: 32px;
    }

    .bd-comments-head {
        gap: 12px;
    }

    .bd-comments-h {
        font-size: 1.28rem;
    }

    .bd-review-item {
        padding: 16px;
    }

    .bd-share-box {
        padding: 18px;
        border-radius: 14px;
    }

    .bd-share-btns {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .bd-shr {
        justify-content: center;
        min-width: 0;
        width: 100%;
        min-height: 44px;
    }

    .bd-more {
        padding: 48px 0 56px;
    }

    .bd-more-hd {
        gap: 12px;
        margin-bottom: 24px;
    }

    .bd-more-hd h2 {
        font-size: 1.28rem;
    }

    .bd-more-card {
        border-radius: 14px;
    }

    .bd-more-card-body {
        padding: 17px 18px 20px;
    }

    .bd-review-modal-overlay {
        padding: env(safe-area-inset-top, 0px) 0 0;
    }

    .bd-review-modal-panel {
        max-height: calc(100svh - env(safe-area-inset-top, 0px));
        border-radius: 18px 18px 0 0;
    }

    .bd-review-modal-header {
        padding: 15px 16px 13px;
        border-radius: 18px 18px 0 0;
    }

    .bd-review-modal-header-icon {
        width: 36px;
        height: 36px;
    }

    .bd-rm-star-row {
        gap: 4px;
    }

    .bd-rm-star-btn {
        width: 44px;
        height: 44px;
        font-size: 1.85rem;
    }
}

@media (max-width: 640px) {
    .blp-pop-sub-grid {
        grid-template-columns: 1fr;
    }

    .blp-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .blp-search-wrap {
        display: grid;
        grid-template-columns: 18px minmax(0, 1fr);
        padding: 12px;
        border-radius: 24px;
    }

    .blp-search-wrap button {
        grid-column: 1 / -1;
        width: 100%;
        border-radius: 100px;
    }

    .blp-hero-stat {
        align-items: flex-start;
        text-align: left;
    }

    .blp-featured {
        min-height: 380px;
    }

    .blp-pop-main {
        min-height: 330px;
    }

    .blp-pop-main-sum {
        display: none;
    }

    .bd-share-btns {
        grid-template-columns: 1fr;
    }

    .bd-more-hd {
        justify-content: flex-start;
    }

    .bd-more-line {
        display: none;
    }
}

@media (max-width: 430px) {
    .page-blog .container,
    .page-blog-detail .container {
        padding-inline: 14px;
    }

    .blp-hero-title {
        font-size: 1.58rem;
    }

    .blp-hero-desc {
        font-size: .86rem;
    }

    .blp-cat-card {
        min-width: 138px;
        max-width: 164px;
    }

    .blp-featured {
        min-height: 400px;
    }

    .blp-featured-body,
    .blp-pop-main-body {
        padding-inline: 18px;
    }

    .blp-featured-title,
    .blp-pop-main-title {
        font-size: 1.12rem;
    }

    .blp-card-body,
    .blp-pop-sub-body {
        padding: 15px;
    }

    .bd-hero {
        min-height: 430px;
    }

    .bd-hero-inner {
        padding-top: calc(64px + env(safe-area-inset-top, 0px) + 52px);
        padding-bottom: 34px;
    }

    .bd-title {
        font-size: 1.48rem;
    }

    .bd-cat {
        height: auto;
        min-height: 24px;
        padding: 4px 10px;
        line-height: 1.2;
    }

    .bd-author {
        flex-direction: column;
    }

    .bd-review-item-header {
        flex-wrap: wrap;
    }

    .bd-review-item-date {
        width: calc(100% - 52px);
        margin-left: 52px;
    }

    .bd-rm-star-section {
        padding: 15px 10px;
    }

    .bd-rm-star-btn {
        width: 40px;
        min-width: 40px;
    }
}

/* Blog detail compact editorial layer */
.page-blog-detail .bd-hero {
    height: clamp(420px, 58vh, 620px);
    min-height: 0;
}

.page-blog-detail .bd-hero-inner {
    gap: 12px;
    padding-bottom: 54px;
}

.page-blog-detail .bd-title {
    max-width: 980px;
    font-size: clamp(1.55rem, 3vw, 2.45rem);
    line-height: 1.14;
    letter-spacing: 0;
}

.page-blog-detail .bd-content {
    padding: 32px 0 64px;
}

.page-blog-detail .bd-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 42px;
}

.page-blog-detail .bd-article {
    font-size: 1rem;
    line-height: 1.72;
}

.page-blog-detail .bd-rich-content > * + * {
    margin-top: .85rem;
}

.page-blog-detail .bd-rich-content :where(h2,h3,h4) {
    margin-top: 1.35rem;
    line-height: 1.24;
    letter-spacing: 0;
}

.page-blog-detail .bd-author {
    gap: 16px;
    margin-top: 30px;
    padding: 28px 0;
}

.page-blog-detail .bd-av {
    width: 60px;
    height: 60px;
    font-size: 1.42rem;
}

.page-blog-detail .bd-author-bio {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.page-blog-detail .bd-comments {
    padding-top: 30px;
}

.page-blog-detail .bd-comments-head {
    margin-bottom: 14px;
}

.page-blog-detail .bd-rating-summary-mini {
    padding: 13px 15px;
}

.page-blog-detail .bd-rating-big-num {
    font-size: 2rem;
}

.page-blog-detail .bd-review-item {
    padding: 15px 16px;
    margin-bottom: 10px;
}

.page-blog-detail .bd-reviews-empty {
    padding: 28px 18px;
}

.page-blog-detail .bd-sidebar {
    gap: 20px;
}

.page-blog-detail .bd-share-box {
    padding: 18px;
    border-radius: 14px;
}

.page-blog-detail .bd-rel-row {
    gap: 10px;
    padding: 10px;
}

.page-blog-detail .bd-rel-row-img {
    width: 62px;
    height: 48px;
}

.page-blog-detail .bd-more {
    padding: 42px 0 52px;
}

.page-blog-detail .bd-more-hd {
    margin-bottom: 22px;
}

.page-blog-detail .bd-more-card-body {
    padding: 16px 18px 18px;
}

@media (min-width: 961px) {
    .page-blog-detail .bd-more {
        display: none;
    }
}

@media (max-width: 960px) {
    .page-blog-detail .bd-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 760px) {
    .page-blog-detail .bd-hero {
        height: auto;
        min-height: 360px;
    }

    .page-blog-detail .bd-hero-inner {
        gap: 10px;
        padding-top: calc(64px + env(safe-area-inset-top, 0px) + 38px);
        padding-bottom: 28px;
    }

    .page-blog-detail .bd-title {
        font-size: 1.42rem;
        line-height: 1.18;
    }

    .page-blog-detail .bd-meta {
        font-size: .74rem;
    }

    .page-blog-detail .bd-content {
        padding: 24px 0 46px;
    }

    .page-blog-detail .bd-article {
        font-size: .95rem;
        line-height: 1.66;
    }

    .page-blog-detail .bd-rich-content > * + * {
        margin-top: .72rem;
    }

    .page-blog-detail .bd-rich-content :where(h2,h3,h4) {
        margin-top: 1.1rem;
    }

    .page-blog-detail .bd-author {
        align-items: flex-start;
        gap: 14px;
        margin-top: 24px;
        padding: 24px 0;
    }

    .page-blog-detail .bd-av {
        width: 52px;
        height: 52px;
        font-size: 1.22rem;
    }

    .page-blog-detail .bd-comments {
        padding-top: 24px;
    }

    .page-blog-detail .bd-comments-h {
        font-size: 1.18rem;
    }

    .page-blog-detail .bd-review-item {
        padding: 14px;
    }

    .page-blog-detail .bd-share-box {
        padding: 15px;
    }

    .page-blog-detail .bd-more {
        padding: 32px 0 40px;
    }

    .page-blog-detail .bd-more-hd {
        margin-bottom: 18px;
    }

    .page-blog-detail .bd-more-card-img {
        aspect-ratio: 16 / 8;
    }

    .page-blog-detail .bd-more-card-body p {
        display: none;
    }
}

@media (max-width: 560px) {
    .page-blog-detail .bd-hero {
        min-height: 330px;
    }

    .page-blog-detail .bd-hero-inner {
        padding-top: calc(64px + env(safe-area-inset-top, 0px) + 30px);
        padding-bottom: 24px;
    }

    .page-blog-detail .bd-title {
        font-size: 1.32rem;
    }

    .page-blog-detail .bd-author {
        flex-direction: row;
    }

    .page-blog-detail .bd-more-grid {
        gap: 12px;
    }

    .page-blog-detail .bd-more-card {
        display: grid;
        grid-template-columns: 106px minmax(0, 1fr);
    }

    .page-blog-detail .bd-more-card-img {
        height: 100%;
        min-height: 116px;
        aspect-ratio: auto;
    }

    .page-blog-detail .bd-more-card-body {
        padding: 12px 13px;
        gap: 5px;
    }

    .page-blog-detail .bd-more-card-body h3 {
        font-size: .9rem;
        line-height: 1.28;
    }
}




/* --- Sidebar Linked Items Widget --- */
.blp-linked-items {
    margin-top: 32px;
}

.blp-linked-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blp-linked-item-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.blp-linked-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    border-color: rgba(37, 99, 235, 0.15);
}

.blp-linked-item-img {
    width: 80px;
    flex-shrink: 0;
    position: relative;
    background: #f8fafc;
}

.blp-linked-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blp-linked-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.blp-linked-item-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.blp-linked-item-type {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563eb;
    margin-bottom: 4px;
}

.blp-linked-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



/* --- Prominent Sidebar Link Widget --- */
.blp-linked-items {
    margin-top: 40px;
}

.blp-linked-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blp-promo-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.blp-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
    border-color: rgba(37, 99, 235, 0.2);
}

.blp-promo-img {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    background: #f1f5f9;
}

.blp-promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blp-promo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.blp-promo-fallback svg {
    width: 48px;
    height: 48px;
}

.blp-promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blp-promo-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blp-promo-body h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

.blp-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #2563eb;
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 4px;
}

.blp-promo-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.blp-promo-btn:hover {
    background: #1d4ed8;
    color: #fff;
}

.blp-promo-btn:hover svg {
    transform: translateX(4px);
}






/* --- Premium Linked Services Widget (Overlay Grid) --- */
.bd-linked-services {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.bd-ls-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-family: inherit;
    letter-spacing: -0.01em;
}

.bd-ls-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 640px) {
    .bd-ls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bd-ls-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blp-promo-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    background: #111;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateZ(0);
}

.blp-promo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blp-promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blp-promo-card:hover .blp-promo-img img {
    transform: scale(1.08);
}

.blp-promo-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1f2937;
    color: #4b5563;
}

.blp-promo-fallback svg {
    width: 48px;
    height: 48px;
}

.blp-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.0) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.blp-promo-card:hover .blp-promo-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.1) 100%);
}

.blp-promo-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blp-promo-badge {
    color: #f97316;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    display: block;
    transition: transform 0.4s ease;
}

.blp-promo-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    padding-right: 32px; /* Leave space for arrow */
    transition: transform 0.4s ease;
}

.blp-promo-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    color: #f97316;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.blp-promo-arrow svg {
    width: 24px;
    height: 24px;
}

.blp-promo-card:hover .blp-promo-title,
.blp-promo-card:hover .blp-promo-badge {
    transform: translateY(-8px);
}

.blp-promo-card:hover .blp-promo-arrow {
    opacity: 1;
    transform: translateX(0) translateY(-8px);
}
