/* ================================================================
   BLOG LISTING PAGE — /blogs/vape-guide/
   Targets new semantic classes from blog/index.php restructure
   Mobile responsive · CSS-only · no JS changes
   ================================================================ */

/* ── Global reset for the blog container ── */
.blog_container-div {
    max-width: 100%;
    padding: 0;
}

/* ================================================================
   SECTION 1 — HERO HEADER
   ================================================================ */
.fv-blog-hero {
    padding: 48px 32px 32px;
    border-bottom: 1px solid var(--ink-200, #dbe1e9);
}

.fv-blog-eyebrow-top {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal-600, #1aa69f);
    font-weight: 700;
    margin-bottom: 10px;
}

.fv-blog-headline {
    margin: 0;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink-900, #0f2236);
    line-height: 1.1;
}

.fv-blog-subtitle {
    color: var(--ink-600, #4a6383);
    font-size: 15.5px;
    max-width: 640px;
    margin-top: 10px;
    margin-bottom: 0;
}

/* ================================================================
   SECTION 2 — FEATURED CARD + SIDEBAR
   ================================================================ */
.fv-blog-featured-section {
    padding: 36px 32px;
    border-bottom: 1px solid var(--ink-200, #dbe1e9);
}

.fv-blog-featured-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

@media (min-width: 768px) {
    .fv-blog-featured-row {
        grid-template-columns: 1.4fr 1fr;
    }
}

/* ── Featured hero card ── */
.fv-blog-featured-card {
    display: flex;
    flex-direction: column;
    background: var(--ink-50, #f6f8fb);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--ink-200, #dbe1e9);
    text-decoration: none;
    color: inherit;
    transition: box-shadow .18s;
}

.fv-blog-featured-card:hover {
    box-shadow: 0 8px 24px rgba(15, 34, 54, .10);
}

.fv-blog-featured-img {
    background: linear-gradient(135deg, var(--teal-100, #d0f4f2), var(--teal-300, #7bd8d1));
    height: auto;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.fv-blog-featured-img .fv-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-blog-featured-body {
    padding: 22px 26px;
}

.fv-blog-eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal-700, #0d7a74);
    font-weight: 700;
    margin-bottom: 6px;
}

.fv-blog-featured-title {
    margin: 8px 0;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    letter-spacing: -0.015em;
    color: var(--ink-900, #0f2236);
    line-height: 1.2;
}

.fv-blog-featured-excerpt {
    color: var(--ink-600, #4a6383);
    margin: 0;
    font-size: 14.5px;
}

.fv-blog-featured-meta {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--ink-500, #8196ad);
}

/* ── Sidebar (recent posts) ── */
.fv-blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Each recent post row */
.blog_recet_post-div {
    display: grid !important;
    grid-template-columns: 110px 1fr !important;
    gap: 14px !important;
    background: #fff !important;
    border: 1px solid var(--ink-200, #dbe1e9) !important;
    border-radius: 12px !important;
    padding: 12px !important;
    box-shadow: none !important;
    align-items: center !important;
    text-decoration: none;
    transition: box-shadow .14s;
}

.blog_recet_post-div:hover {
    box-shadow: 0 4px 14px rgba(15, 34, 54, .08) !important;
}

.blog_recet_post-div .blog_recet_post-image_anger {
    width: 100% !important;
    height: auto !important;
    border: 1px solid var(--ink-200, #dbe1e9);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}

.blog_recet_post-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 6px;
}

.blog_recet_post-content {
    width: auto !important;
    padding: 0 !important;
}

.blog_recet_post-subtitle {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--ink-900, #0f2236) !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
    margin: 0 !important;
    display: block;
}

.blog_recet_post-footer {
    border-top: none !important;
    padding-top: 4px !important;
    font-size: 11.5px !important;
    color: var(--ink-500, #8196ad) !important;
    margin-top: 4px;
}

/* ================================================================
   SECTION 3 — LATEST ARTICLES 3-COL GRID
   ================================================================ */
.fv-blog-latest-section {
    padding: 36px 32px 56px;
}

.fv-blog-latest-heading {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--ink-900, #0f2236);
    margin: 0 0 18px;
}

/* 3-column grid */
.fv-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

@media (max-width: 900px) {
    .fv-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fv-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Each grid card */
.fv-blog-grid-card {
    background: #fff;
    border: 1px solid var(--ink-200, #dbe1e9);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .18s;
}

.fv-blog-grid-card:hover {
    box-shadow: 0 6px 20px rgba(15, 34, 54, .09);
}

.fv-blog-grid-img {
    background: var(--ink-50, #f6f8fb);
    border: 1px solid var(--ink-200, #dbe1e9);
    border-radius: 10px;
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
}

.fv-blog-grid-img .fv-blog-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.fv-blog-grid-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fv-blog-grid-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink-900, #0f2236);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 38px;
}
.fv-blog-grid-content {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 72px;
}

.fv-blog-grid-meta {
    font-size: 12px;
    color: var(--ink-500, #8196ad);
}

/* ================================================================
   PAGINATION
   ================================================================ */
.fv-blog-pagination-wrap {
    padding: 0 32px 48px;
}

/* ================================================================
   MOBILE
   ================================================================ */
@media (max-width: 767px) {
    .fv-blog-hero {
        padding: 32px 16px 24px;
    }

    .fv-blog-featured-section,
    .fv-blog-latest-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .fv-blog-featured-img {
        height: auto;
    }

    .fv-blog-featured-body {
        padding: 16px;
    }

    .fv-blog-featured-row {
        grid-template-columns: 1fr;
    }

    .fv-blog-pagination-wrap {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ── No-image placeholder box in sidebar cards ── */
.blog_recet_post-no-img {
    background: var(--ink-100, #eef1f5);
    border: 1px dashed var(--ink-300, #c5d0dd);
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    display: grid !important;
    place-items: center;
    color: var(--ink-400, #a8b8c8);
    min-width: 110px;
    width: 110px;
    flex-shrink: 0;
}