#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);
}

/* 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;
}