/**
 * JasaBuzzer Blog Modern Stylesheet
 * newblog/assets/css/blog.css
 * Versi 2.0 - Desain Mockup Ungu / Violet Modern & Layout 2-Kolom Sidebar
 */

:root {
    --blog-navy-dark: #020617;
    --blog-navy-deep: #081d3b;
    --blog-navy-primary: #0c2d5d;
    --blog-blue-accent: #2563eb;
    --blog-blue-hover: #1d4ed8;
    --blog-blue-light: #eff6ff;
    --blog-blue-border: #bfdbfe;
    --blog-navy-gradient: linear-gradient(135deg, #020617 0%, #061933 30%, #0c2d5d 70%, #04142b 88%, #020617 100%);
    --blog-ad-gradient: linear-gradient(145deg, #020617 0%, #081d3b 45%, #0d2f62 85%, #061835 100%);

    --blog-dark: #0f172a;
    --blog-text-main: #1e293b;
    --blog-text-muted: #64748b;
    --blog-border: #e2e8f0;
    --blog-bg: #f8fafc;
    --blog-radius-sm: 8px;
    --blog-radius-md: 16px;
    --blog-radius-lg: 24px;
}

/* =========================================================
   1. BASE & UTILITIES
========================================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    color: var(--blog-text-main);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.blog-container,
.container.blog-container {
    width: 100% !important;
    max-width: 1240px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
}

/* =========================================================
   2. NAVBAR & MEGA MENU (DESKTOP & MOBILE FIXES)
========================================================= */
#navbar {
    background-color: #0c2d5d !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    z-index: 1040 !important;
    padding: 12px 75px !important;
    transition: all 0.3s ease !important;
}

#navbar .nav-link {
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

#navbar .nav-link:hover {
    color: #a78bfa !important;
}

/* Dropdown Layanan - Desktop Fix */
@media screen and (min-width: 992px) {
    .dropdown- {
        position: static !important;
        overflow: visible !important;
    }

    #navbar {
        position: fixed !important;
        z-index: 1030 !important;
    }

    #navbar .dropdown-content {
        position: fixed !important;
        top: 68px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 92vw !important;
        max-width: 1200px !important;
        margin: 0 !important;
        z-index: 99999 !important;
        background: #ffffff !important;
        border-radius: 18px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25) !important;
        border: 1px solid #e2e8f0 !important;
        padding: 18px !important;
        box-sizing: border-box !important;
        display: none;
    }

    /* Invisible hover bridge */
    #navbar .dropdown-content::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
        background: transparent;
    }

    /* Hover & Click support for desktop */
    .dropdown-:hover #layananDropdownContent,
    .dropdown-.show #layananDropdownContent,
    #layananDropdownContent.show {
        display: block !important;
    }

    /* 3-Column CSS Grid - Eliminates Float Snagging completely */
    #navbar .row-nav {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 16px !important;
        max-height: 70vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding: 6px !important;
        background: #ffffff !important;
        border-radius: 14px !important;
        box-sizing: border-box !important;
    }

    #navbar .row-nav::-webkit-scrollbar {
        width: 7px;
    }
    #navbar .row-nav::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 10px;
    }
    #navbar .row-nav::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }
    #navbar .row-nav::-webkit-scrollbar-thumb:hover {
        background: #94a3b8;
    }

    #navbar .column {
        width: 100% !important;
        float: none !important;
        margin: 0 !important;
        background-color: #f8fafc !important;
        border: 1px solid #eef2f6 !important;
        border-radius: 12px !important;
        padding: 16px 18px !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease !important;
    }

    #navbar .column:hover {
        border-color: #0048B7 !important;
        box-shadow: 0 8px 24px rgba(0, 72, 183, 0.08) !important;
        transform: translateY(-2px) !important;
        background-color: #ffffff !important;
    }

    #navbar .column a.dropdown-item {
        color: #334155 !important;
        font-size: 13.5px !important;
        font-weight: 500 !important;
        padding: 7px 10px !important;
        border-radius: 6px !important;
        display: block !important;
        text-decoration: none !important;
        transition: all 0.15s ease !important;
        white-space: normal !important;
        line-height: 1.4 !important;
    }

    #navbar .column a.dropdown-item:hover {
        background-color: #eff6ff !important;
        color: #0048B7 !important;
        padding-left: 14px !important;
    }

    #navbar .mega-nav-sosmed {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        letter-spacing: 0.5px !important;
        text-transform: uppercase !important;
        vertical-align: middle !important;
    }

    #navbar .icon-float {
        width: 20px !important;
        height: 20px !important;
        object-fit: contain !important;
        margin-right: 8px !important;
        vertical-align: middle !important;
        float: none !important;
        display: inline-block !important;
    }

    #navbar .hr-mega-nav {
        border: 0 !important;
        height: 1px !important;
        background: #e2e8f0 !important;
        margin: 10px 0 12px 0 !important;
    }
}

/* Dropdown Layanan - Mobile Overflow Fix */
@media screen and (max-width: 991.98px) {
    #navbar {
        padding: 10px 16px !important;
        width: 100% !important;
        max-width: 100vw !important;
        box-sizing: border-box !important;
        overflow-x: clip !important;
    }

    #navbar > .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    #navbar .navbar-collapse {
        background-color: #081d3b !important;
        padding: 16px 14px !important;
        border-radius: 12px !important;
        margin-top: 12px !important;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45) !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    /* Reset 50px left margin to prevent horizontal overflow */
    #navbar .navbar-nav {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    #navbar .nav-item,
    #navbar .dropdown- {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        float: none !important;
        position: static !important;
        margin: 4px 0 !important;
    }

    #navbar .nav-link {
        margin-right: 0 !important;
        padding: 10px 12px !important;
        display: block !important;
        color: #ffffff !important;
        font-size: 15px !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    #navbar .nav-link:hover {
        background: rgba(255, 255, 255, 0.08) !important;
        color: #ffffff !important;
    }

    #navbar .dropdown-content {
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin: 10px 0 !important;
        padding: 10px 8px !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        box-shadow: none !important;
        border: none !important;
        overflow-x: hidden !important;
        display: none;
    }

    #navbar .dropdown-.show .dropdown-content,
    #navbar .dropdown-content.show {
        display: block !important;
    }

    #navbar .row-nav {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        height: auto !important;
        max-height: 55vh !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding: 2px !important;
        background: transparent !important;
    }

    #navbar .column {
        width: 100% !important;
        max-width: 100% !important;
        float: none !important;
        margin: 0 !important;
        padding: 14px 12px !important;
        box-sizing: border-box !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 10px !important;
    }

    #navbar .column a.dropdown-item {
        color: #0F2E5D !important;
        font-size: 13.5px !important;
        padding: 8px 10px !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-break: break-word !important;
        border-radius: 6px !important;
        line-height: 1.4 !important;
    }

    #navbar .column a.dropdown-item:active,
    #navbar .column a.dropdown-item:hover {
        background-color: #eff6ff !important;
        color: #0048B7 !important;
    }

    #navbar .mega-nav-sosmed {
        font-size: 13px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        letter-spacing: 0.5px !important;
    }

    #navbar .icon-float {
        width: 18px !important;
        height: 18px !important;
        object-fit: contain !important;
        margin-right: 8px !important;
        vertical-align: middle !important;
        float: none !important;
        display: inline-block !important;
    }

    #navbar .hr-mega-nav {
        border: 0 !important;
        height: 1px !important;
        background: #e2e8f0 !important;
        margin: 8px 0 10px 0 !important;
    }
}

/* =========================================================
   3. NAVY-TO-BLACK HERO SECTION
========================================================= */
.purple-blog-hero,
.navy-blog-hero {
    background: var(--blog-navy-gradient);
    padding: 110px 0 55px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-left-content {
    max-width: 650px;
    text-align: left;
}

.hero-badge-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #bfdbfe;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(147, 197, 253, 0.35);
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-headline {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 14px;
    letter-spacing: -0.5px;
}

.hero-subtext {
    color: #93c5fd;
    font-weight: 800;
}

.hero-lead-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0;
}

/* =========================================================
   4. TWO-COLUMN LAYOUT & SIDEBAR
========================================================= */
.blog-two-col-layout {
    background-color: #ffffff;
    padding: 36px 0 65px;
}

.blog-layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    align-items: flex-start;
    width: 100%;
}

.blog-main-column {
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.blog-sidebar-column {
    min-width: 0;
    width: 340px;
}

@media screen and (max-width: 991px) {
    .blog-layout-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .blog-sidebar-column {
        width: 100%;
    }
}

/* --- Left Column: Section Header --- */
.section-top-header {
    margin-bottom: 25px;
}

.section-tag-label {
    color: var(--blog-blue-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-heading-row {
    display: flex;
    align-items: center;
}

.section-main-heading {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--blog-dark);
    margin: 0;
    letter-spacing: -0.5px;
}

.purple-accent-dash,
.blog-accent-dash {
    width: 44px;
    height: 3px;
    background: var(--blog-blue-accent);
    border-radius: 4px;
    margin-left: auto;
    flex-shrink: 0;
}

/* --- Search & Category Filter Controls --- */
.controls-filter-bar {
    margin-bottom: 30px;
}

.search-input-box {
    position: relative;
    max-width: 100%;
    margin-bottom: 18px;
}

.search-input-box i.bi-search {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}

.search-input-box input {
    width: 100%;
    padding: 12px 40px 12px 44px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    font-size: 14px;
    color: #1e293b;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.search-input-box input:focus {
    border-color: var(--blog-blue-accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.search-input-box button#clearSearchBtn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #94a3b8;
    font-size: 18px;
    cursor: pointer;
}

.category-chips-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.category-chip {
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.category-chip:hover,
.category-chip.active {
    background: var(--blog-blue-light);
    color: var(--blog-blue-accent);
    border-color: var(--blog-blue-border);
}

/* =========================================================
   5. HORIZONTAL ARTICLE CARDS (MATCHING SCREENSHOT)
========================================================= */
.articles-horizontal-list {
    display: flex;
    flex-direction: column;
}

.article-horizontal-item {
    display: flex;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: flex-start;
    transition: transform 0.25s ease;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.article-horizontal-item:last-child {
    border-bottom: none;
}

.item-thumbnail-link {
    flex: 0 0 250px;
    width: 250px;
    height: 165px;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
    display: block;
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.item-thumbnail-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-horizontal-item:hover .item-thumbnail-link img {
    transform: scale(1.06);
}

.item-content-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.item-category-pill {
    background: var(--blog-blue-light);
    color: var(--blog-blue-accent);
    border: 1px solid var(--blog-blue-border);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.item-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.item-title a {
    color: var(--blog-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.item-title a:hover {
    color: var(--blog-blue-accent);
}

.item-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--blog-text-muted);
    margin: 0 0 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-action-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.btn-read-more {
    color: var(--blog-blue-accent);
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-read-more:hover {
    color: var(--blog-blue-hover);
    gap: 8px;
}

.badge-faq-pill {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
}

@media screen and (max-width: 640px) {
    .article-horizontal-item {
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
    }

    .item-thumbnail-link {
        flex: 0 0 auto;
        width: 100%;
        height: 190px;
    }

    .item-title {
        font-size: 18px;
    }
}

/* =========================================================
   6. SIDEBAR WIDGETS (ADVERTISEMENT MATCHING SCREENSHOT)
========================================================= */
.sticky-sidebar-container {
    position: sticky;
    top: 95px;
}

.ad-widget-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

.ad-widget-label {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
}

.ad-inner-card {
    background: var(--blog-ad-gradient);
    border-radius: 16px;
    padding: 34px 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(2, 6, 23, 0.4);
}

.ad-icon-circle {
    font-size: 34px;
    color: #60a5fa;
    margin-bottom: 12px;
}

.ad-card-heading {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 6px;
}

.ad-card-subtext {
    font-size: 13px;
    color: #cbd5e1;
    margin: 0 0 22px;
    line-height: 1.5;
}

.btn-ad-submit {
    background: #ffffff;
    color: #0c2d5d;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-ad-submit:hover {
    transform: scale(1.05);
    color: #020617;
    background: #f8fafc;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

/* Sidebar General Card */
.sidebar-widget-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
}

.sidebar-widget-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--blog-dark);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
}

/* Sidebar Category List */
.sidebar-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-category-list li {
    margin-bottom: 8px;
}

.sidebar-category-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8fafc;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.sidebar-category-list li a:hover,
.sidebar-category-list li.active a {
    background: var(--blog-blue-light);
    color: var(--blog-blue-accent);
    border-color: var(--blog-blue-border);
    transform: translateX(4px);
}

.sidebar-category-list .category-count-badge {
    background: #e2e8f0;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.sidebar-category-list li a:hover .category-count-badge,
.sidebar-category-list li.active a .category-count-badge {
    background: var(--blog-blue-accent);
    color: #ffffff;
}

/* Sidebar 3 Recent Articles */
.sidebar-recent-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-recent-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-recent-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.recent-thumb-link {
    flex: 0 0 68px;
    width: 68px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #0f172a;
    display: block;
}

.recent-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sidebar-recent-item:hover .recent-thumb-link img {
    transform: scale(1.08);
}

.recent-content {
    flex: 1 1 auto;
    min-width: 0;
}

.recent-cat-pill {
    font-size: 10px;
    font-weight: 700;
    color: var(--blog-blue-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
}

.recent-title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-title a {
    color: var(--blog-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.recent-title a:hover {
    color: var(--blog-blue-accent);
}

.recent-date {
    font-size: 11px;
    color: #94a3b8;
    display: block;
}

/* =========================================================
   PAGINATION STYLING
========================================================= */
.blog-pagination-wrapper {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: center;
}

.blog-pagination-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.blog-pagination-list .page-item {
    display: inline-block;
}

.blog-pagination-list .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    gap: 6px;
}

.blog-pagination-list .page-link:hover {
    background: var(--blog-blue-light);
    color: var(--blog-blue-accent);
    border-color: var(--blog-blue-border);
    transform: translateY(-2px);
}

.blog-pagination-list .page-item.active .page-link {
    background: var(--blog-navy-primary);
    border-color: var(--blog-navy-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(12, 45, 93, 0.35);
}

.blog-pagination-list .page-item.dots .page-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 42px;
    color: #94a3b8;
    font-weight: 800;
}

/* =========================================================
   7. FOOTER & WIDE FLOATING LIVE CHAT BUTTON
========================================================= */
section.bg-biru {
    background: linear-gradient(90deg, #0c2d5d 11%, #061730 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    clear: both !important;
}

.blog-archive-page section.bg-biru .container,
.blog-single-page section.bg-biru .container {
    max-width: 1240px !important;
}

.pad-footer {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 70px 0 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.col-25-footer {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    width: 25% !important;
    float: none !important;
    padding: 0 15px 30px !important;
    box-sizing: border-box !important;
}

.col-25-footer .img-logo-footer {
    width: 130px !important;
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.col-25-footer .menu-footer {
    margin-bottom: 20px !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    color: #ffffff !important;
    letter-spacing: 0.5px !important;
}

.col-25-footer p,
.col-25-footer p.putih {
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin-bottom: 12px !important;
    opacity: 0.92 !important;
}

/* Fix: footer menu links must stack vertically downward */
.col-25-footer a {
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 2px !important;
}

.col-25-footer a p,
.col-25-footer a.putih {
    color: #ffffff !important;
    opacity: 0.88 !important;
    margin-bottom: 10px !important;
    display: block !important;
    transition: all 0.2s ease !important;
}

.col-25-footer a:hover p,
.col-25-footer a:hover,
.col-25-footer a.putih:hover {
    color: #60a5fa !important;
    opacity: 1 !important;
    transform: translateX(4px) !important;
}

.pad-copyright {
    margin-top: 20px !important;
    padding: 24px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    text-align: center !important;
    width: 100% !important;
    clear: both !important;
}

.pad-copyright p,
.pad-copyright p.putih {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 13px !important;
    margin: 0 !important;
    text-align: center !important;
}

@media screen and (max-width: 991px) {
    .col-25-footer {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
}

@media screen and (max-width: 576px) {
    .col-25-footer {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        padding-bottom: 25px !important;
    }
    .pad-footer {
        padding: 50px 0 10px !important;
    }
}

/* Wide Floating Live Chat Button (Natural Horizontal Aspect Ratio) */
.live-chat {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    z-index: 99999 !important;
    width: 220px !important;
    max-width: 45vw !important;
    height: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.live-chat a {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    line-height: 0 !important;
    text-decoration: none !important;
}

.img-live-chat {
    width: 100% !important;
    height: auto !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.35)) !important;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    display: block !important;
}

.live-chat:hover .img-live-chat,
.img-live-chat:hover {
    transform: scale(1.05) !important;
}

@media screen and (max-width: 768px) {
    .live-chat {
        width: 170px !important;
        bottom: 18px !important;
        right: 15px !important;
    }
}

@media screen and (max-width: 480px) {
    .live-chat {
        width: 140px !important;
        bottom: 12px !important;
        right: 10px !important;
    }
}

/* =========================================================
   8. SINGLE POST READER STYLES (MATCHING IGTREND.ID DESIGN)
========================================================= */
.single-post-page {
    background: #ffffff;
}

/* --- Hero Section --- */
.article-hero {
    padding: 140px 0 75px;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(200, 217, 255, 0.14),
            transparent 32%
        ),
        linear-gradient(135deg, #06132d 0%, #0c2d64 65%, #05193b 100%);
    position: relative;
    overflow: hidden;
}

.article-hero .article-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #94a3b8;
}

.article-hero .article-breadcrumb a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-hero .article-breadcrumb a:hover {
    color: #ffffff;
}

.article-hero .article-breadcrumb i {
    font-size: 10px;
    color: #64748b;
}

.article-hero .article-breadcrumb span[aria-current="page"] {
    color: #cbd5e1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 320px;
}

.article-category-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.22);
    border: 1px solid rgba(147, 197, 253, 0.35);
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.article-category-badge-pill i {
    font-size: 14px;
    color: #60a5fa;
}

.article-hero h1 {
    max-width: 960px;
    margin: 0 0 20px;
    color: #ffffff;
    font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(30px, 4.5vw, 50px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.article-intro {
    max-width: 840px;
    margin: 0 0 26px;
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.8;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    color: #e2e8f0;
    font-size: 13px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.article-meta i {
    color: #60a5fa;
    font-size: 14px;
}

/* --- Main Article Section & Two-Column Layout --- */
.article-section {
    padding: 60px 0 100px;
    background: #ffffff;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(280px, 3.2fr);
    gap: 48px;
    align-items: start;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.article-content {
    min-width: 0;
}

.article-featured-image {
    margin: 0 0 38px;
    overflow: hidden;
    border-radius: 20px;
    background: #0f172a;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.article-featured-image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* --- Table of Contents (Daftar Isi) --- */
.article-toc {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 28px;
    margin: 0 0 36px;
}

.toc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
}

.toc-header i {
    color: #2563eb;
    font-size: 20px;
}

.toc-list {
    margin: 0;
    padding-left: 20px;
    list-style-type: decimal;
}

.toc-list li {
    margin-bottom: 10px;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.toc-list li:last-child {
    margin-bottom: 0;
}

.toc-list a {
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.toc-list a:hover {
    color: #2563eb;
}

/* --- Editorial Content Body Typography --- */
.article-body {
    max-width: 100%;
}

.article-body p {
    margin: 0 0 22px;
    color: #334155;
    font-size: 16px;
    line-height: 1.85;
}

.article-body h2 {
    margin: 48px 0 18px;
    color: #07152f;
    font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.025em;
    scroll-margin-top: 100px;
}

.article-body h3 {
    margin: 32px 0 14px;
    color: #0f172a;
    font-family: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.025em;
    scroll-margin-top: 100px;
}

.article-body ul,
.article-body ol {
    margin: 0 0 24px;
    padding-left: 24px;
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body a {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.article-body a:hover {
    color: #1d4ed8;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 24px 0;
}

/* --- Responsive Video & Media Embeds --- */
.article-body .wp-block-embed,
.article-body figure.wp-block-embed {
    margin: 28px 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
}

.article-body .wp-block-embed__wrapper,
.article-body .nv-iframe-embed {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    background: #020617 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid #e2e8f0 !important;
    margin: 26px 0 !important;
}

.article-body .nv-iframe-embed iframe,
.article-body .wp-block-embed iframe,
.article-body iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    border-radius: 16px !important;
}

/* Vertical video (TikTok / Shorts 9:16) */
.article-body .nv-iframe-embed-vertical,
.article-body .nv-iframe-embed:has(iframe[width="563"]),
.article-body .nv-iframe-embed:has(iframe[height="1000"]),
.article-body .wp-block-embed:has(iframe[width="563"]),
.article-body .wp-block-embed:has(iframe[height="1000"]) {
    aspect-ratio: 9 / 16 !important;
    max-width: 380px !important;
    margin: 26px auto !important;
}

/* --- Highlight Box --- */
.article-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 22px 24px;
    margin: 32px 0;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.article-highlight strong {
    display: block;
    color: #1e3a8a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.article-highlight p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #2563eb !important;
    line-height: 1.6 !important;
}

/* --- Point Box --- */
.article-point-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #2563eb;
    border-radius: 12px;
    padding: 18px 22px;
    margin: 18px 0;
}

.article-point-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 8px !important;
    font-size: 16px !important;
    color: #0f172a !important;
    font-weight: 700 !important;
}

.article-point-box h3 i {
    color: #2563eb;
    font-size: 18px;
}

.article-point-box p {
    margin: 0 !important;
    font-size: 14px !important;
    color: #475569 !important;
    line-height: 1.65 !important;
}

/* --- CTA Banner --- */
.article-cta {
    background: linear-gradient(135deg, #06132d 0%, #0c2d64 60%, #1e1b4b 100%);
    border-radius: 18px;
    padding: 34px 30px;
    color: #ffffff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 42px 0;
    box-shadow: 0 12px 35px rgba(12, 45, 100, 0.25);
}

.article-cta span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #93c5fd;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.article-cta h3 {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 8px !important;
}

.article-cta p {
    font-size: 14px !important;
    color: #cbd5e1 !important;
    margin: 0 !important;
    max-width: 520px;
    line-height: 1.6 !important;
}

.btn-cta-primary {
    background: #2563eb;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
    transition: all 0.2s ease;
}

.btn-cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* --- FAQ Section Details & Summary --- */
.article-faq {
    margin: 45px 0 35px;
}

.article-faq h2 {
    margin-bottom: 20px !important;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item[open] {
    background: #ffffff;
    border-color: #bfdbfe;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
}

.faq-item summary {
    list-style: none;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-icon {
    color: #64748b;
    transition: transform 0.25s ease;
    font-size: 14px;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: #2563eb;
}

.faq-answer {
    padding: 0 20px 18px;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

.faq-answer p {
    margin: 0 !important;
}

/* --- Article Tags --- */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 24px 0 16px;
    border-top: 1px solid #f1f5f9;
    margin-top: 30px;
}

.article-tags span {
    font-weight: 700;
    font-size: 13px;
    color: #64748b;
}

.article-tags a {
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-tags a:hover {
    background: #eff6ff;
    color: #2563eb;
}

/* --- Social Share Bar --- */
.article-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin: 25px 0 35px;
}

.article-share strong {
    font-size: 14px;
    color: #1e293b;
}

.article-share .share-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-links a,
.share-links button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.share-links a:hover,
.share-links button:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.share-facebook { background: #1877f2; }
.share-twitter { background: #000000; }
.share-whatsapp { background: #25d366; }
.share-copy-btn { background: #64748b; }

/* --- Sidebar 30% Column --- */
.article-sidebar {
    position: sticky;
    top: 95px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.sidebar-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.sidebar-heading span {
    font-size: 12px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.sidebar-heading i {
    color: #2563eb;
    font-size: 14px;
}

.latest-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.latest-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    padding-bottom: 12px;
    border-bottom: 1px solid #f8fafc;
    transition: all 0.2s ease;
}

.latest-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.latest-image {
    flex: 0 0 74px;
    width: 74px;
    height: 56px;
    border-radius: 10px;
    overflow: hidden;
    background: #0f172a;
}

.latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.latest-item:hover .latest-image img {
    transform: scale(1.08);
}

.latest-content {
    flex: 1 1 auto;
    min-width: 0;
}

.latest-content h3 {
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
    color: #1e293b !important;
    margin: 0 0 4px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.latest-item:hover .latest-content h3 {
    color: #2563eb !important;
}

.latest-content span {
    font-size: 11px;
    color: #2563eb;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    border-radius: 10px;
    background: #f8fafc;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-list a:hover {
    background: #eff6ff;
    color: #2563eb;
    transform: translateX(4px);
}

.category-list a i {
    font-size: 11px;
    color: #94a3b8;
}

.category-list a:hover i {
    color: #2563eb;
}

.sidebar-contact {
    background: linear-gradient(145deg, #020617 0%, #081d3b 50%, #0c2d5d 100%);
    border-radius: 18px;
    padding: 26px 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(2, 6, 23, 0.35);
}

.sidebar-contact i.bi-chat-dots-fill {
    font-size: 32px;
    color: #60a5fa;
    display: inline-block;
    margin-bottom: 10px;
}

.sidebar-contact h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 6px !important;
}

.sidebar-contact p {
    font-size: 13px !important;
    color: #cbd5e1 !important;
    margin: 0 0 18px !important;
    line-height: 1.5 !important;
}

.sidebar-contact a {
    background: #ffffff;
    color: #0c2d5d !important;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 24px;
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.sidebar-contact a:hover {
    background: #f8fafc;
    transform: scale(1.04);
    color: #020617 !important;
}

/* --- Related Posts Below Article (Vertical List) --- */
.related-posts-section {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid #e2e8f0;
}

.related-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-list-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.related-list-item:hover {
    background: #f8fafc;
    border-color: #93c5fd;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
    transform: translateX(4px);
}

.related-item-thumb {
    width: 105px;
    min-width: 105px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    background: #0f172a;
    flex-shrink: 0;
}

.related-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.related-list-item:hover .related-item-thumb img {
    transform: scale(1.08);
}

.related-item-info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-item-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    margin-bottom: 2px;
}

.related-item-cat {
    background: #eff6ff;
    color: #2563eb;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.related-item-date {
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.related-item-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease;
}

.related-list-item:hover .related-item-title {
    color: #2563eb;
}

.related-item-link {
    font-size: 12.5px;
    font-weight: 700;
    color: #3b82f6;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.related-list-item:hover .related-item-link {
    gap: 8px;
    color: #1d4ed8;
}

@media (max-width: 576px) {
    .related-list-item {
        gap: 12px;
        padding: 12px;
    }
    .related-item-thumb {
        width: 82px;
        min-width: 82px;
        height: 64px;
    }
    .related-item-title {
        font-size: 13.5px;
    }
}
