/*  Post Slider Component 50/50 Layout  */
 .post-slider-component {
     width: 100%;
     margin: 2rem 0;
     position: relative;
}
 .post-slider-component .swiper-wrapper {
     display: flex;
     align-items: stretch;
}
 .post-slider-component .swiper-slide {
     display: flex;
     flex-direction: row;
     cursor: pointer;
     height: 338px;
}

 .swiper.postSliderSwiper {
     border-radius: 10px;
     padding-bottom: 60px;
}
 .post-slide-link {
     display: flex;
     width: 100%;
     height: 100%;
     text-decoration: none;
     color: inherit;
}
 .post-slide__image {
     width: 50%;
     overflow: hidden;
	 border-radius: 10px 0 0 10px;
}
 .post-slide__image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
}
 .post-slide__image img:hover {
     transform: scale(1.05);
}
 .post-slide__content {
     width: 50%;
     padding: 2rem;
     display: flex;
     flex-direction: column;
	 justify-content: space-between;
     background-color: #fff;
     transition: background-color 0.3s ease;
	 border-radius: 0 10px 10px 0;
}
 .post-slide__type {
    font-size: 16px;
    color: #18211E;
}
 .post-slide__title {
     margin-top: 1.5rem;
     font-size: 25px;
     font-weight: 600;
     line-height: 1.3;
     color: #18211e;
}
 .post-slide__date {
     font-size: 16px;
     color: #ABACAC;
}
.post-slide__date svg {
    color: #18211E;
}

    
/* Responsive */
@media (max-width: 1439px) {
  .post-slider-component .swiper-slide {
	height: 300px;
  }
}
@media (max-width: 1139px){
	.post-slide-link {
		display: flex;
		flex-direction: column;
	}
	.post-slide__image, .post-slide__content {
		width: 100%;
	}
	.post-slide__content {
		border-radius: 0 0 10px 10px;
        height: 250px;
	}
	.post-slide__image {
		border-radius: 10px 10px 0 0;
	}
	.post-slider-component .swiper-slide {
		height: auto;
	}
	.post-slide__image {
		height: 385px;
	}
}
 @media (max-width: 768px) {
     .post-slider-component .swiper-slide {
         flex-direction: column;
         height: auto;
    }
	.post-slide__image {
		height: auto !important;
	}
     .post-slide__image, .post-slide__content {
         width: 100%;
    }
     .post-slide__content {
         padding: 1.5rem;
    }
	.post-slide__title {
		font-size: 22px;
	}
}

/* ============================================== Slider Controls (Arrows + Pagination) ============================================== */
 .slider-controls {
     font-family: "Hanken Grotesk", sans-serif;
     display: flex;
     align-items: center;
     gap: 30px;
     position: absolute;
     bottom: 0;
     left: 0;
     z-index: 10;
}
 .slider-controls .swiper-button-prev, .slider-controls .swiper-button-next {
     color: #333;
     width: 1.5rem;
     height: 1.5rem;
}
 .swiper-button-next, .swiper-button-prev {
     position: relative !important;
     margin-top: 0 !important;
}
 .slider-controls .swiper-button-prev:hover, .slider-controls .swiper-button-next:hover {
     color: #007bff;
}
 .slider-controls .swiper-pagination-numbers {
     display: flex;
     justify-content: center;
     gap: 15px;
}
 .slider-controls .swiper-pagination-numbers .swiper-pagination-bullet {
     width: 32px;
     height: 32px;
     color: #bfbfbf;
     font-size: 20px;
     line-height: 32px;
     text-align: center;
     cursor: pointer;
     opacity: 1;
}
 .slider-controls .swiper-pagination-numbers .swiper-pagination-bullet-active {
     color: #5d7374;
     font-size: 30px;
}
 .swiper-pagination-bullet{
     background: transparent !important;
}
 .swiper-button-next:after, .swiper-button-prev:after {
     font-size: 1.5em !important;
     font-weight: 500;
     color: #5d7374;
}