.slide_v8b{
	overflow: hidden;
}
.slide_v8b .sectionTitle{
	display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 40px;
    max-width: 1224px;
    justify-self: center;
    justify-content: space-between;
}
@media only screen and (max-width: 1366px) {
	.slide_v8b > div:first-of-type{
		padding: 0 50px;
	}
}
@media only screen and (max-width: 1024px) {
	.slide_v8b > div:first-of-type{
		padding: 0 40px;
	}
}
@media only screen and (max-width: 767px) {
	.slide_v8b > div:first-of-type{
		margin-bottom: 20px;
		padding: 0 20px;
	}
}
.slide_v8b .sectionTitle > div{
	display: flex;
    flex-direction: row;
	column-gap: calc(48px / 2 + 8px);
	width: fit-content;
    height: 100%;
}


.slide_v8b .sectionTitle_title{
    color: var(--e-global-color-text);
    font-family: var(--theme-font-family);
    font-size: var(--theme-font-size-h2);
    font-style: var(--theme-font-style-h2);
    font-weight: var(--theme-font-weight-h2);
    line-height: var(--theme-line-height-h2);
}

/* Swiper - visibility */
.slide_v8b .mySwiper {
    overflow: hidden;
}
.slide_v8b .swiper-wrapper {
	padding: 0 0 10px 0px;
}
@media only screen and (max-width:1366px) {
	.slide_v8b .mySwiper {
/* 		padding-left: 50px; */
	}
}
@media only screen and (max-width:1024px) {
	.slide_v8b .mySwiper {
/* 		padding: 40px; */
	}
}
@media only screen and (max-width:767px) {
	.slide_v8b .mySwiper {
/* 		padding: 20px; */
	}
}
.slide_v8b .swiper-slide{
	height: auto;
}
/* Card */
.slide_v8b .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    row-gap: 24px;
    padding: 24px;
    border-radius: 16px;
    border: 2px solid var(--e-global-color-secondary);
    box-shadow: 10px 6px 11px 0px rgba(0, 0, 0, 0.04);
	background-color: #FFFFFF;
}
@media only screen and (max-width:1024px) {
	.slide_v8b .card {
		padding: 16px;
	}
}
/* Top with image */
.slide_v8b .card .top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Top with image */
.slide_v8b .card .top .postImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    aspect-ratio: 4/3;
}

/* Bottom with title and excerpt */
.slide_v8b .card .bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    row-gap: 8px;
    flex-grow: 1;
}

/* Bottom with title and excerpt */
.slide_v8b .card .bottom .title_sub {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    row-gap: 8px;
}

/* Bottom with title and excerpt */
.slide_v8b .card .bottom .title_sub h4 {
    color: var(--e-global-color-primary);
    font-family: var(--theme-font-family);
    font-size: var(--theme-font-size-h3);
    font-style: var(--theme-font-style-h3);
    font-weight: var(--theme-font-weight-h3);
    line-height: var(--theme-line-height-h3);
}

/* Bottom with title and excerpt */
.slide_v8b .card .bottom .title_sub p {
    color: var(--e-global-color-text);
    font-family: var(--theme-font-family);
    font-size: var(--theme-font-size-body);
    font-style: var(--theme-font-style-body);
    font-weight: var(--theme-font-weight-body);
    line-height: var(--theme-line-height-body);
}

/* Read more button */
.slide_v8b .card .bottom .button {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

/* Read more button */
.slide_v8b .card .bottom .button .readMore {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    column-gap: 8px;
    color: var(--e-global-color-primary);
    font-family: var(--theme-font-family);
    font-size: var(--theme-font-size-body);
    font-style: var(--theme-font-style-body);
    font-weight: var(--theme-font-weight-body);
    line-height: var(--theme-line-height-body);
}

/* Hover effect on Read more button, arrow and title of card */
.slide_v8b .card:hover .bottom .button .readMore {
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}

.slide_v8b .card:hover .bottom .button .readMore svg path {
    stroke: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}

.slide_v8b .card:hover .bottom .title_sub h4 {
    color: var(--e-global-color-text);
    transition: all 0.3s ease-in-out;
}

/* Navigation buttons */
.slide_v8b.swiper-button-next::after,
.slide_v8b.swiper-button-prev::after {
    content: none;
    /* This removes the default arrow */
}

/* Generic styles for Swiper navigation buttons */
.slide_v8b.swiper-button-next,
.slide_v8b.swiper-button-prev {
	width: 48px;
    height: 48px;
    background-color: var(--e-global-color-primary, #003A4B) !important;
    border-radius: 50%;
    padding: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* left: 100%; */
    /* top: 0; */
    /* right: 0; */
    cursor: pointer;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(0%, calc(50% - 0px));
}

/* Previous button */
.slide_v8b.swiper-button-prev {
    background-image: url('/wp-content/uploads/2025/03/Vector-31-1.svg');
    /* transform: translateX(calc(48px + 16px) * -1); */
    /* Move the button to the left by the width of the button and column gap btw buttons */
}

/* Next button */
.slide_v8b.swiper-button-next {
    background-image: url('/wp-content/uploads/2025/03/Vector-31.svg');
}

/* Hide buttons on smaller screens */
@media only screen and (max-width:1024px) {

    .slide_v8b.swiper-button-next,
    .slide_v8b.swiper-button-prev {
        display: none !important;
    }
}