/* Main Container */

/* Add to your existing css/style.css */
.swiper-button-next,
.swiper-button-prev {
    opacity: 1 !important; /* Force arrows to always be visible */
    visibility: visible !important;
}
.rps-posts-pair {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two posts side by side */
    gap: 30px;
    width: 100%;
}

/* Individual Post Styling */
.rps-single-post {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Image | Content */
    gap: 20px;
    height: 100%;
}

.rps-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    overflow: hidden; /* Prevent any overflow */
}

/* Slide Layout - Now a TWO-COLUMN GRID */
.rps-post {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split into two equal columns */
    gap: 30px;
    height: 100%;
}

/* Image Column */
.rps-post-image {
    height: 300px;
    overflow: hidden;
}

.rps-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Column */
.rps-post-content {
        justify-content: center;
margin: 0px !important;
padding: 0px !important;
}

.rps-post-title {
    font-size:20px;
    font-weight: 600;
    line-height: 1.3;
color: white;
}

.rps-post-meta {
color: white;
    font-size: 0.9em;
}

.rps-post-excerpt {
    line-height: 1.6;
	font-size: 15px;
color: white;

}

.rps-read-more {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: black;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    align-self: flex-start;
margin-top: 5px;
    transition: all 0.3s;
}

.rps-read-more:hover {
    background: white;
color: balck;

}

/* Slider Configuration */
.swiper-container {
    width: 100%;
    overflow: visible; /* Allows proper slide sizing */
}

.swiper-wrapper {
    box-sizing: border-box;
}

.rps-slide {
    width: 100% !important; /* Force full width */
    padding: 0 15px;
    box-sizing: border-box;
}

/* Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #0a2540;
    background: rgba(255,255,255,0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: #0a2540;
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .rps-post {
        grid-template-columns: 1fr;
    }
    
    .rps-post-image {
        height: 200px;
    }
}