/* --- Main Wrapper --- */
.blogs-slider-wrapper {
    display: flex;
    align-items: end;
    gap: 40px;
}

/* --- Left Column (Header) 30% --- */
.blogs-slider__header {
    flex: 0 0 25%; /* Fixed width, slightly less than 30% to be safe */
    max-width: 250px; /* Max width */
}

.blogs-slider__header .main-title {
	color: var(--e-global-color-primary);
    font-size: var( --e-global-typography-08dbd2e-font-size );
    line-height: var(--e-global-typography-08dbd2e-line-height);
    font-weight: 300;
	padding-bottom:39px;
}

.blogs-slider__navigation {
    display: flex;
    gap: 15px;
}
.blogs-slider__navigation .swiper-button-prev{content: url(https://aihm1.wpenginepowered.com/wp-content/uploads/2025/09/ar-prve-sty.svg);}
.blogs-slider__navigation .swiper-button-next{content: url(https://aihm1.wpenginepowered.com/wp-content/uploads/2025/09/ar-next-sty.svg);}


.blogs-slider__navigation .swiper-button-prev,
.blogs-slider__navigation .swiper-button-next {
    position: static;
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 50%;
    color: #8DC8E8;
    background-color: transparent;
    transition: all 0.3s ease;
}

/* .blogs-slider__navigation .swiper-button-prev:hover,
.blogs-slider__navigation .swiper-button-next:hover {
    background-color: #003665;
    border-color: #003665;
    color: #fff;
} */

.blogs-slider__navigation .swiper-button-prev::after,
.blogs-slider__navigation .swiper-button-next::after {
    font-size: 16px;
}

/* --- Right Column (Slider) 70% --- */
.blogs-slider__slider-area {
    flex: 1;
    overflow: hidden; /* Important for slider */
}

.blogs-swiper .swiper-slide {
    width: 350px; /* Define width for each slide */
    height: auto;
}

/* --- Blog Card Styling --- */
.blog-card {
    border-left: 1px solid #e0e0e0;
    padding-left: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card__date {
    margin-bottom: 20px;
}

.blog-card__date .day {
    display: block;
    font-size: 48px;
    font-weight: 300;
    color: #8DC8E8;
    line-height: 1;
}

.blog-card__date .month {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    letter-spacing: 1.5px;
    margin-top: 5px;
}

.blog-card__image {
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.blog-card__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.blog-card__title a {
    color: #003665;
    text-decoration: none;
}

.blog-card__excerpt {
    color: #555;
    line-height: 1.6;
    flex-grow: 1; /* Pushes the button to the bottom */
    margin-bottom: 25px;
}

.blog-card__button {
    display: inline-block;
    background-color: #eef7fb;
    color: #8DC8E8;
    padding: 16px 33px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start; /* Align button to the left */
}

/* .blog-card__button:hover {
    background-color: #003665;
    color: #fff;
} */

/* --- Responsive Adjustments --- */
@media (max-width: 991px) {
    .blogs-slider-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }
    .blogs-slider__header {
        max-width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    .blogs-slider__slider-area {
        width: 100%;
    }
}

@media (max-width: 767px) {
	.blogs-slider__header {
        align-items: flex-start;
		flex-flow: column;
	}
	
    .blogs-swiper .swiper-slide {
/*         width: 85%; */
		padding-right:36px;
    }
}

/* button */
/*Button expore more*/
.blogs-swiper .blog-card__button span.arrow-icon {
    content: url("https://aihm1.wpenginepowered.com/wp-content/uploads/2025/09/icon-in-button-hover.svg");  
}

/* ----------- arrow-show-button -------- */
 .blogs-swiper .blog-card__button  span.arrow-icon{
    height: 37px;
    width: 0px; /*0*/
    transform: translateY(0px) translateX(0px) ;
}

/*:hover*/
 .blogs-swiper .blog-card__button:hover span.arrow-icon {
     height: 37px;
    width: 37px;   
    transform: translateY(0px) translateX(0px) ;
}

 .blogs-swiper .blog-card__button span.arrow-icon {
    opacity:1; /*0*/
    transition: 0.4s;
}

 .blogs-swiper .blog-card__button span {
	transition: 0.3s;
    margin-right: auto;
}

.blog-card__button:hover .arrow-icon {
	margin-left:-20px;
}

 .blogs-swiper .blog-card__button:hover span.arrow-icon  {
    opacity:1;
}
 .blogs-swiper .blog-card__button span.explore-more-filter-card {
    padding-left: 0px;
}
 .blogs-swiper .blog-card__button:hover span.explore-more-filter-card {
    padding-left: 0px;
}

 .blogs-swiper .blog-card__button {
    display: flex;
    transition: 0.3s;
    height: 55px;
    border-radius: 35px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 28px;
}
/*:hover*/
 .blogs-swiper .blog-card__button  {
   width: 215px;

}
 .blogs-swiper .blog-card__button:hover  {
    background: #8DC8E8;
   color: #fff;
   justify-content: center;
    width: 230px;
}