/* WCU Blog Post Slider Section Start */

.wcu-blog-post-slider {
        --wcu-blog-post-slider-gap: 24px;
        --wcu-blog-post-slider-items-desktop: 3.2;
        --wcu-blog-post-slider-items-tablet: 2.2;
        --wcu-blog-post-slider-items-mobile: 1.1;
        --wcu-blog-post-slider-visible-items: var(--wcu-blog-post-slider-items-desktop);
        position: relative;
        width: 100%;
        color: #111111;
}

.wcu-blog-post-slider .wcu-blog-post-slider__header {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 48px;
        margin-top:-30px;
}

.wcu-blog-post-slider .wcu-blog-post-slider__nav {
        display: inline-flex;
        align-items: center;
        gap: 16px;
}

.wcu-blog-post-slider .wcu-blog-post-slider__nav-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        padding: 0;
        border: none;
	    opacity:1;
        transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.wcu-blog-post-slider .wcu-blog-post-slider__nav-button:hover,
.wcu-blog-post-slider .wcu-blog-post-slider__nav-button:focus,
.wcu-blog-post-slider .wcu-blog-post-slider__nav-button:focus-visible{
background:none;
}
/* .wcu-blog-post-slider .wcu-blog-post-slider__nav-button:hover {
        background-color: #f5f5f7;
        border-color: #b7b7bf;
} */
.wcu-blog-post-slider .wcu-blog-post-slider__nav-button.in-active-prev{
opacity:0.5;
}
.wcu-blog-post-slider .wcu-blog-post-slider__nav-button.in-active-next{
opacity:0.5;
}

.wcu-blog-post-slider .wcu-blog-post-slider__nav-button:disabled,
.wcu-blog-post-slider .wcu-blog-post-slider__nav-button.in-active-prev,
.wcu-blog-post-slider .wcu-blog-post-slider__nav-button.in-active-next {
        cursor: default;
        pointer-events: none;
	    background:transparent;
}

.wcu-blog-post-slider .wcu-blog-post-slider__viewport {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-y pinch-zoom;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        cursor: grab;
}

.wcu-blog-post-slider .wcu-blog-post-slider__viewport::-webkit-scrollbar {
        display: none;
}

.wcu-blog-post-slider .wcu-blog-post-slider__viewport.is-dragging {
        cursor: grabbing;
        user-select: none;
}

.wcu-blog-post-slider .wcu-blog-post-slider__track {
        display: flex;
        gap: var(--wcu-blog-post-slider-gap);
}

.wcu-blog-post-slider .wcu-blog-post-slider__slide {
        flex: 0 0 calc((100% - ((var(--wcu-blog-post-slider-visible-items) - 1) * var(--wcu-blog-post-slider-gap))) / var(--wcu-blog-post-slider-visible-items));
        min-width: 0;
        scroll-snap-align: start;
}

.wcu-blog-post-slider .wcu-blog-post-slider__card {
        display: flex;
        flex-direction: column;
        height: 100%;
}

.wcu-blog-post-slider .wcu-blog-post-slider__image-link {
        display: block;
        border-radius: 8px;
        overflow: hidden;
        background: #ececf1;
        line-height: 0;
}

.wcu-blog-post-slider .wcu-blog-post-slider__image {
        display: block;
        width: 100%;
        aspect-ratio: 404 / 280;
        object-fit: cover;
}

.wcu-blog-post-slider .wcu-blog-post-slider__image--placeholder {
        background: linear-gradient(135deg, #111827 0%, #1d4ed8 100%);
}

.wcu-blog-post-slider .wcu-blog-post-slider__content {
        padding-top: 24px;
}

.wcu-blog-post-slider .wcu-blog-post-slider__meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 10px;
}

.wcu-blog-post-slider .wcu-blog-post-slider__category {
        min-width: 0;
        font-size: 14px;
	    font-family: "Inter Tight", sans-serif;
        line-height: 21px;
	    font-weight: 400;
        color: #525B53;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
}

.wcu-blog-post-slider .wcu-blog-post-slider__details-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        font-size: 16px;
        line-height: 1.4;
        color: #0865ff;
        text-decoration: none;
}

.wcu-blog-post-slider .wcu-blog-post-slider__details-link svg {
        flex: 0 0 auto;
}

.wcu-blog-post-slider .wcu-blog-post-slider__title {
        margin: 0;
        font-family: "Inter Tight", sans-serif;
        font-size: 18px !important;
        font-weight: 500 !important;
        line-height: 24px;
        color: #000000;
	 max-width:260px;
}

.wcu-blog-post-slider .wcu-blog-post-slider__title a {
        color: inherit;
        text-decoration: none;
	font-family: "Inter Tight", sans-serif;
        font-size: 18px !important;
        font-weight: 500 !important;
        line-height: 24px;
        color: #000000;
}

@media (max-width: 1024px) {
        .wcu-blog-post-slider {
                --wcu-blog-post-slider-visible-items: var(--wcu-blog-post-slider-items-tablet);
        }
	.wcu-blog-post-slider .wcu-blog-post-slider__header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
    margin-top: -10px;
}
}

@media screen and (max-width: 768px) {
        .wcu-blog-post-slider {
                --wcu-blog-post-slider-visible-items: var(--wcu-blog-post-slider-items-mobile);
                --wcu-blog-post-slider-gap: 16px;
        }

        .wcu-blog-post-slider .wcu-blog-post-slider__header {
                justify-content: flex-end;
                margin-bottom: 32px;
			    margin-top:-32px;
        }

        .wcu-blog-post-slider .wcu-blog-post-slider__nav-button {
                width: 40px;
                height: 40px;
        }

        .wcu-blog-post-slider .wcu-blog-post-slider__content {
                padding-top: 24px;
        }
	.wcu-blog-post-slider .wcu-blog-post-slider__title{
     max-width:100%;
}
        .wcu-blog-post-slider .wcu-blog-post-slider__meta {
                align-items: flex-start;
                gap: 8px;
        }

        .wcu-blog-post-slider .wcu-blog-post-slider__category,
        .wcu-blog-post-slider .wcu-blog-post-slider__details-link {
                font-size: 14px;
        }

        .wcu-blog-post-slider .wcu-blog-post-slider__title {
                font-size: 18px;
        }
}

/* WCU Blog Post Slider Section End */
