#blogScroll {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}

#blogScroll::-webkit-scrollbar {
    display: none;
}

/* Card Wrapper */
.blog-card-wrapper {
    flex: 0 0 22%;
    min-width: 220px;
    max-width: 400px;
    transition: flex-basis 0.4s ease;
}

.blog-card-wrapper.expanded {
    flex: 0 0 40%;
}

/* Card Style */
.blog-card {
    position: relative;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card .blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.blog-card-wrapper.expanded .blog-card img {
    transform: scale(1.05);
}

.blog-card-wrapper.expanded .blog-overlay {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .blog-card-wrapper {
        width: 100%;
        transition: all 0.3s ease;
        flex: 0 0 100%;
    }

    .blog-card-wrapper.expanded {
        width: 100% !important;
        transform: scale(1);
        z-index: 10;
        flex: 0 0 100%;
    }
}

/* Arrow link */
.blog-card .card-link {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 8px;
    color: #fff;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 5;
}

.blog-card .card-link:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

.blog-card .card-link svg {
    width: 20px;
    height: 20px;
}

.blog-card-wrapper.expanded .product-card img {
    transform: scale(1.05);
}

.blog-card-wrapper.expanded .overlay {
    opacity: 1;
    transform: translateY(0);
}

.blog-card-wrapper.expanded .card-link {
    opacity: 1;
    transform: scale(1);
}

/****************************
    Single Post
*****************************/
.single-post-banner {
    background-color: var(--bs-black);
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 160px;
}

.single-post-banner h1 {
    color: var(--bs-light);
}

.post-category {
    color: var(--bs-primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.15rem;
    letter-spacing: 1.8px;
    margin-bottom: 20px;
}

.bullet-line {
    width: 150px;
    height: 2px;
    background-color: var(--bs-black);
    position: relative;
}

.bullet-line::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--bs-black);
    border-radius: 50%;
    position: absolute;
    left: -6px;
    top: -4px;
}

.brand-logo {
    width: 68px;
    height: 68px;
    background-size: 180%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.related-posts img {
    object-fit: cover;
    height: 70px;
}

.icon-box {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    max-height: 100%;
    width: auto;
}

.support-card {
    padding: 20px;
    background: #fff;
}

.support-card h4 {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.support-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    margin-bottom: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.support-item:hover {
    background: #f8f9fb;
}

.support-item .left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.support-item img {
    width: 26px;
    height: 26px;
}

.support-item .icon {
    font-size: 22px;
}

.support-item strong {
    font-size: 15px;
    display: block;
}

.support-item small {
    font-size: 13px;
    color: #6c757d;
}

.arrow {
    font-size: 18px;
    color: #0d6efd;
}

/* ✅ Mobile Optimization */
@media (max-width: 480px) {
    .support-card {
        padding: 18px;
    }

    .support-card h4 {
        font-size: 18px;
    }

    .support-item {
        padding: 14px;
    }
}

.support-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-link:hover {
    background: #f8f9fa;
    border-radius: 12px;
}

/****************************
    Feature Card
*****************************/
.feature-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-body {
    padding: 20px;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.6;
}

.feature-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: left;
    min-height: 70px;
    color: #fff;
    font-weight: 700;
    padding: 10px 15px 10px 15px;
    font-size: 12px;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-transform: uppercase;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .feature-header {
        text-align: center;
        font-size: 13px;
    }
}

.feature-header-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 0px 50px 50px 0;
}

/* OUTSIDE SLANTED CONE */
.feature-header-wrapper::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: 20px;
    height: 100%;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: 1;
}

/****************************
    Blog Page
*****************************/
.blog-page-banner {
    background-color: var(--bs-black);
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 160px;
}

.blog-card-inner {
    display: block;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    height: 100%;
    transition: transform .2s ease, box-shadow .2s ease;
}

.blog-card-inner:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.blog-image img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.blog-content {
    padding: 16px;
}

.blog-content h5 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
    min-height: 40px;
}

.blog-content .meta {
    display: flex;
    gap: 10px;
    font-size: .85rem;
    color: #666;
}

.filter-select {
    width: auto;
    min-width: 150px;
    border-radius: 999px;
}

/****************************
    Blog Table
*****************************/
.single-post-content .table-bordered {
    width: 100%;
    border-collapse: collapse;
}

.single-post-content .table-bordered th,
.single-post-content .table-bordered td {
    border: 1px solid #ddd;
    padding: 10px;
}

.single-post-content .table-bordered th {
    background: #f5f5f5;
}