/**
 * Blog Hub Styles
 * Matches Figma Blog Hub design: hero, featured story, category pills, 4-col card grid
 *
 * Design system:
 *   Font: Fustat (loaded site-wide)
 *   Primary orange: #FE7720
 *   Body text: #212529
 *   Green accent: #95C623
 *   Teal: #3D7B8A
 *   Border: #DEE2E6
 *   Light grey bg: #F2F2F2
 *   Card bg: #F8F9FA
 */

/* ==========================================================================
   Reset / Container
   ========================================================================== */

.blog-hub {
    background: #fff;
    font-family: 'fustatregular', sans-serif;
}

/* Hide default Joomla breadcrumbs */
.blog-hub ~ .zen-body__breadcrumbs,
.zen-body__breadcrumbs:has(+ .blog-hub) {
    display: none !important;
}

/* Remove top padding */
.zen-body__main:has(.blog-hub) {
    padding-top: 0 !important;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.blog-hub__hero {
    background: linear-gradient(180deg, rgba(26,42,58,0.55) 0%, rgba(26,42,58,0.45) 100%);
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* When a background image is set via inline style, layer the gradient over it */
.blog-hub__hero[style*="background-image"] {
    background-blend-mode: overlay;
}

.blog-hub__hero-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 72px 70px;
    position: relative;
    text-align: center;
}

.blog-hub__hero-title {
    font-family: 'fustatregular', sans-serif;
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 32px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* CTA Card in Hero */
.blog-hub__hero-cta-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    padding: 20px 32px 24px;
    backdrop-filter: blur(10px);
    min-width: 440px;
}

.blog-hub__hero-cta-text {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 16px;
    white-space: nowrap;
}

.blog-hub__hero-cta-row {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.blog-hub__hero-cta-avatar-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #FE7720;
    overflow: hidden;
    margin-right: -8px;
    z-index: 2;
    background: #fff;
}

.blog-hub__hero-cta-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.blog-hub__hero-cta-buttons {
    display: flex;
    gap: 10px;
    flex: 1;
}

.blog-hub__hero-btn {
    display: inline-block;
    padding: 10px 36px;
    border-radius: 9999px;
    font-family: 'fustatregular', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    border: none;
    flex: 1;
    text-align: center;
}

.blog-hub__hero-btn--primary {
    background: #FE7720;
    color: #212529;
    border-radius: 0 9999px 9999px 0;
    margin-left: -20px;
    position: relative;
    z-index: 1;
}

.blog-hub__hero-btn--primary:hover {
    background: #e5691c;
    color: #212529;
    text-decoration: none;
}

.blog-hub__hero-btn--secondary {
    background: #FFC107;
    color: #212529;
    border: none;
}

.blog-hub__hero-btn--secondary:hover {
    background: #e6ad06;
    color: #212529;
    text-decoration: none;
}

/* Mountain of Knowledge Intro */
.blog-hub__intro {
    background: #fff;
    padding: 40px 0 36px;
}

.blog-hub__intro-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 72px;
}

.blog-hub__intro-title {
    font-family: 'fustatregular', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #212529;
    margin: 0 0 8px;
}

.blog-hub__intro-text {
    font-size: 18px;
    font-weight: 700;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Featured Story
   ========================================================================== */

.blog-hub__featured {
    background: #748CAB;
    padding: 0;
}

.blog-hub__featured-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 72px;
}

.blog-hub__featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    color: #fff;
}

.blog-hub__featured-image {
    position: relative;
    overflow: hidden;
    order: 2;
    border-radius: 12px;
    margin: 36px 0 36px 0;
}

.blog-hub__featured-image img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-hub__featured-image:hover img {
    transform: scale(1.03);
}

.blog-hub__featured-body {
    padding: 44px 40px 44px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 1;
}

.blog-hub__featured-label {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
}

.blog-hub__featured-label-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #FE7720;
    padding: 14px;
    object-fit: contain;
}

.blog-hub__featured-title {
    font-family: 'fustatregular', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 17px;
    line-height: 1.25;
}
.blog-hub__featured-title a,
.blog-hub__featured-title a:visited,
.blog-hub__featured-title a:hover,
.blog-hub__featured-title a:active {
    color: inherit;
    text-decoration: none;
}

.blog-hub__featured-excerpt {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
    margin: 0 0 40px;
}

.blog-hub__featured-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-hub__featured-btn {
    display: inline-block;
    padding: 6px 28px;
    border-radius: 9999px;
    font-family: 'fustatregular', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.blog-hub__featured-btn--primary {
    background: #FE7720;
    color: #212529;
    border: none;
}

.blog-hub__featured-btn--primary:hover {
    background: #e5691c;
    color: #212529;
    text-decoration: none;
}

.blog-hub__featured-btn--outline {
    background: #FFC107;
    color: #212529;
    border: none;
}

.blog-hub__featured-btn--outline:hover {
    background: #e6ad06;
    color: #212529;
    text-decoration: none;
}

/* ==========================================================================
   Filter Bar
   ========================================================================== */

.blog-hub__filters {
    background: #fff;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: 35px;
}

.blog-hub__filters-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Search Input — pill shape with orange icon */
.blog-hub__search-wrap {
    position: relative;
    flex: 0 1 380px;
    min-width: 200px;
}

.blog-hub__search-input {
    width: 100%;
    padding: 9px 48px 9px 24px;
    border: 1.5px solid #DEE2E6;
    border-radius: 9999px;
    font-family: 'fustatregular', sans-serif;
    font-size: 15px;
    color: #212529;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease;
}

.blog-hub__search-input::placeholder {
    color: #999;
}

.blog-hub__search-input:focus {
    border-color: #FE7720;
}

.blog-hub__search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Dropdowns — underline style with chevron */
.blog-hub__filter-dropdowns {
    display: flex;
    align-items: center;
    gap: 32px;
}

.blog-hub__dropdown {
    position: relative;
}

.blog-hub__dropdown-select {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-bottom: 1.5px solid #212529;
    border-radius: 0;
    background: transparent;
    padding: 8px 36px 8px 0;
    font-family: 'fustatregular', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #212529;
    cursor: pointer;
    outline: none;
    min-width: 140px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24' fill='none' stroke='%23212529' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    background-size: 20px 20px;
    transition: border-color 0.2s ease;
}

.blog-hub__dropdown-select:hover {
    border-bottom-color: #FE7720;
}

.blog-hub__dropdown-select:focus {
    border-bottom-color: #FE7720;
}

/* ==========================================================================
   Article Card Grid
   ========================================================================== */

.blog-hub__grid-section {
    background: #fff;
    padding: 16px 0 60px;
}

.blog-hub__grid-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 72px;
}

.blog-hub__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 24px;
    row-gap: 60px;
    position: relative;
}

.blog-hub__card {
    background: #F8F9FA;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-width: 0;
}

/* Override to visible only within the hub grid (needed for row divider ::after) */
.blog-hub__grid .blog-hub__card {
    overflow: visible;
}

/* Horizontal divider between card rows — one continuous line per row.
   JS sets data-cols on the grid; first card in each row draws the line. */
.blog-hub__card::after {
    position: absolute;
    bottom: -30px;
    left: 0;
    height: 1px;
    background: #A0A8B0;
    pointer-events: none;
    content: none;
}

/* 4-col */
[data-cols="4"] .blog-hub__card:nth-child(4n+1)::after {
    content: '';
    width: calc(400% + 72px);
}
[data-cols="4"] .blog-hub__card:nth-last-child(-n+4):nth-child(4n+1)::after {
    content: none;
}

/* 3-col */
[data-cols="3"] .blog-hub__card:nth-child(3n+1)::after {
    content: '';
    width: calc(300% + 48px);
}
[data-cols="3"] .blog-hub__card:nth-last-child(-n+3):nth-child(3n+1)::after {
    content: none;
}

/* 2-col */
[data-cols="2"] .blog-hub__card:nth-child(2n+1)::after {
    content: '';
    width: calc(200% + 24px);
}
[data-cols="2"] .blog-hub__card:nth-last-child(-n+2):nth-child(2n+1)::after {
    content: none;
}

/* 1-col */
[data-cols="1"] .blog-hub__card::after {
    content: '';
    width: 100%;
}
[data-cols="1"] .blog-hub__card:last-child::after {
    content: none;
}

.blog-hub__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px #cccdce;
}

.blog-hub__card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-hub__card-link:hover {
    text-decoration: none;
    color: inherit;
}

.blog-hub__card-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    background: #f0f0f0;
}

.blog-hub__card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-bottom: none;
    pointer-events: none;
    z-index: 1;
}

.blog-hub__card-image img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-hub__card:hover .blog-hub__card-image img {
    transform: scale(1.05);
}

.blog-hub__card-tags {
    display: flex;
    gap: 6px;
    padding: 16px 16px 10px;
    flex-wrap: wrap;
    border-left: 1px solid #cccdce;
    border-right: 1px solid #cccdce;
}

.blog-hub__card-tag {
    display: inline-block;
    background: transparent;
    color: #FE7720;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    border: 1.5px solid #FE7720;
    letter-spacing: 0.3px;
}

/* Scrollable single-row tag variant */
.blog-hub__card-tags--scroll-wrap {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border-left: 1px solid #cccdce;
    border-right: 1px solid #cccdce;
}

.blog-hub__card-tags--scroll-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 72px;
    background: linear-gradient(to right, rgba(248,249,250,0) 0%, #F8F9FA 75%);
    pointer-events: none;
    z-index: 1;
}

.blog-hub__card-tags--scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border: none;
}

.blog-hub__card-tags--scroll::-webkit-scrollbar {
    display: none;
}

.blog-hub__card-tags--scroll .blog-hub__card-tag {
    flex-shrink: 0;
    white-space: nowrap;
}

.blog-hub__card-body {
    padding: 10px 16px 16px;
    flex-grow: 1;
    border-left: 1px solid #cccdce;
    border-right: 1px solid #cccdce;
}

.blog-hub__card-readmore {
    display: inline-block;
    background: #FE7720;
    color: #212529;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 24px;
    border-radius: 9999px;
    margin-top: 12px;
    margin-bottom: 10px;
    transition: background 0.2s ease;
}

.blog-hub__card:hover .blog-hub__card-readmore {
    background: #e5691c;
    color: #212529;
}

.blog-hub__card-title {
    font-family: 'fustatregular', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    margin: 0 0 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-hub__card-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Footer — Author / Date / Reading Time */
.blog-hub__card-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 16px;
    border-top: none;
    margin-top: auto;
    background: #fff;
    border-left: 1px solid #cccdce;
    border-right: 1px solid #cccdce;
    border-bottom: 1px solid #cccdce;
    border-radius: 0 0 16px 16px;
}

.blog-hub__card-meta-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #fff;
    border: 1.5px solid #ccc;
}

.blog-hub__card-meta-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex-grow: 1;
    min-width: 0;
}

.blog-hub__card-meta-author {
    font-size: 13px;
    font-weight: 600;
    color: #212529;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-hub__card-meta-date {
    font-size: 12px;
    color: #888;
}

.blog-hub__card-meta-sep {
    margin: 0 4px;
}
.blog-hub__card-meta-readtime {
    color: #95C623;
}

/* Shared meta dot */
.blog-hub__card-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #DEE2E6;
    flex-shrink: 0;
}

/* ==========================================================================
   Load More
   ========================================================================== */

.blog-hub__load-more {
    text-align: center;
    padding: 60px 0 0;
}

.blog-hub__load-more-btn {
    background: #FFC107;
    color: #212529;
    border: none;
    border-radius: 9999px;
    padding: 6px 32px;
    font-family: 'fustatregular', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.blog-hub__load-more-btn:hover {
    background: #e6ad06;
}

.blog-hub__load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.blog-hub__spinner {
    color: #888;
    font-size: 14px;
}

.blog-hub__spinner-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top-color: #FE7720;
    border-radius: 50%;
    animation: blogHubSpin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes blogHubSpin {
    to { transform: rotate(360deg); }
}

.blog-hub__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 16px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1200px) {
    .blog-hub__hero-inner,
    .blog-hub__featured-inner,
    .blog-hub__filters-inner,
    .blog-hub__grid-inner,
    .blog-hub__intro-inner {
        padding-left: 40px;
        padding-right: 40px;
    }

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

    .blog-hub__hero-title {
        font-size: 44px;
    }
}

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

    .blog-hub__featured-card {
        grid-template-columns: 1fr;
    }

    .blog-hub__featured-card {
        grid-template-columns: 1fr;
    }

    .blog-hub__featured-image {
        order: 2;
        margin: 0 20px 20px;
    }

    .blog-hub__featured-body {
        order: 1;
        padding: 24px 20px;
    }

    .blog-hub__featured-image img {
        height: 250px;
        min-height: auto;
    }

    .blog-hub__hero-title {
        font-size: 38px;
    }

    .blog-hub__hero-cta-card {
        min-width: auto;
        width: 90%;
        max-width: 440px;
        padding: 16px 20px 20px;
    }

    .blog-hub__hero-cta-avatar-wrap {
        width: 64px;
        height: 64px;
    }

    .blog-hub__hero-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .blog-hub__hero-inner {
        padding: 40px 20px 30px;
    }

    .blog-hub__featured-inner,
    .blog-hub__filters-inner,
    .blog-hub__grid-inner,
    .blog-hub__intro-inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .blog-hub__hero-title {
        font-size: 32px;
    }

    .blog-hub__intro-title {
        font-size: 22px;
    }

    .blog-hub__filters-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .blog-hub__search-wrap {
        flex: 1 1 100%;
    }

    .blog-hub__filter-dropdowns {
        justify-content: flex-start;
        gap: 24px;
    }

    .blog-hub__dropdown-select {
        min-width: 120px;
        font-size: 15px;
    }

    .blog-hub__featured-body {
        padding: 20px;
    }

    .blog-hub__featured-title {
        font-size: 22px;
    }

    .blog-hub__featured-label {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {

    /* --- Hero --- */
    .blog-hub__hero-inner {
        padding: 60px 38px 30px;
    }

    .blog-hub__hero-title {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 24px;
        line-height: 1.2;
    }

    .blog-hub__hero-cta-card {
        width: 300px;
        min-width: 0;
        padding: 10px 0 16px;
        border-radius: 20px;
        border: none;
        background: transparent;
        align-items: center;
        position: relative;
        z-index: 0;
    }

    .blog-hub__hero-cta-card::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 20px;
        border: 1px solid #DEE2E6;
        background: rgba(255,255,255,0.9);
        mix-blend-mode: luminosity;
        z-index: -1;
    }

    .blog-hub__hero-cta-text {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 10px;
        text-align: center;
        width: 100%;
    }

    .blog-hub__hero-cta-row {
        flex-direction: column;
        gap: 8px;
        position: relative;
    }

    .blog-hub__hero-cta-avatar-wrap {
        width: 56px;
        height: 56px;
        border-width: 3px;
        position: absolute;
        left: 14px;
        top: -9px;
        margin-right: 0;
        z-index: 2;
    }

    .blog-hub__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .blog-hub__hero-btn {
        text-align: center;
        padding: 7px 25px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 40px;
        height: 38px;
        box-sizing: border-box;
        flex: none;
    }

    .blog-hub__hero-btn--primary {
        width: 234px;
        margin-left: 50px;
        border-radius: 40px;
    }

    .blog-hub__hero-btn--secondary {
        width: 270px;
        margin: 0 auto;
    }

    /* --- Intro --- */
    .blog-hub__intro {
        padding: 30px 0;
    }

    .blog-hub__intro-inner {
        padding: 0 38px;
    }

    .blog-hub__intro-title {
        font-size: 24px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .blog-hub__intro-text {
        font-size: 18px;
        font-weight: 700;
    }

    /* --- Featured Story --- */
    .blog-hub__featured {
        padding: 28px 0 30px;
    }

    .blog-hub__featured-inner {
        padding: 0;
    }

    .blog-hub__featured-card {
        grid-template-columns: 1fr;
    }

    .blog-hub__featured-card {
        display: flex;
        flex-direction: column;
    }

    .blog-hub__featured-image {
        order: -1;
        margin: 0 auto;
        width: 300px;
        border-radius: 20px;
    }

    .blog-hub__featured-image img {
        height: 200px;
        min-height: auto;
        border-radius: 20px;
    }

    .blog-hub__featured-body {
        order: 2;
        padding: 0 38px 10px;
    }

    .blog-hub__featured-label {
        padding-left: 0;
        margin-bottom: 10px;
        margin-top: 20px;
        font-size: 18px;
        font-weight: 700;
    }

    .blog-hub__featured-label-icon {
        width: 58px;
        height: 58px;
        padding: 14px;
    }

    .blog-hub__featured-title {
        font-size: 24px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .blog-hub__featured-excerpt {
        font-size: 16px;
        color: rgba(255,255,255,0.9);
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .blog-hub__featured-btn {
        padding: 8px 25px;
        font-size: 16px;
    }

    /* --- Search & Filters --- */
    .blog-hub__filters {
        border-bottom: none;
    }

    .blog-hub__filters-inner {
        padding: 20px 38px;
        gap: 14px;
    }

    .blog-hub__search-input {
        padding: 10px 48px 10px 24px;
        height: 45px;
        border-width: 2px;
        font-size: 16px;
        font-weight: 700;
    }

    .blog-hub__filter-dropdowns {
        gap: 16px;
        width: 100%;
    }

    .blog-hub__dropdown {
        flex: 1;
        min-width: 0;
    }

    .blog-hub__dropdown-select {
        min-width: 0;
        width: 100%;
        font-size: 14px;
    }

    /* --- Card Grid --- */
    .blog-hub__grid-section {
        padding: 30px 0 40px;
    }

    .blog-hub__grid-inner {
        padding: 0;
    }

    .blog-hub__grid {
        grid-template-columns: 1fr;
        column-gap: 24px;
        row-gap: 60px;
        max-width: 300px;
        margin: 0 auto;
    }

    .blog-hub__card {
        border-radius: 20px;
    }

    .blog-hub__card-image img {
        aspect-ratio: 3/2;
    }

    .blog-hub__card-tags {
        padding: 19px 17px 0;
        background: #F8F9FA;
    }

    .blog-hub__card-tag {
        font-size: 14px;
        padding: 4px 25px;
    }

    .blog-hub__card-body {
        padding: 16px 16px 16px;
        background: #F8F9FA;
    }

    .blog-hub__card-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .blog-hub__card-excerpt {
        font-size: 16px;
        line-height: 1.5;
        -webkit-line-clamp: 4;
    }

    .blog-hub__card-readmore {
        font-size: 16px;
        padding: 8px 25px;
        margin-top: 12px;
    }

    .blog-hub__card-footer {
        padding: 14px 16px;
        min-height: 70px;
        border-top: none;
        border-radius: 0 0 20px 20px;
    }

    .blog-hub__card-meta-avatar {
        width: 40px;
        height: 40px;
    }

    .blog-hub__card-meta-author {
        font-size: 14px;
        font-weight: 600;
    }

    .blog-hub__card-meta-date {
        font-size: 14px;
    }

    /* --- Load More --- */
    .blog-hub__load-more {
        padding: 30px 0 0;
    }

    .blog-hub__load-more-btn {
        font-size: 16px;
        font-weight: 700;
        padding: 8px 25px;
    }
}
