/* Full-height slider */
.sps-post-slider {
    height: 80vh; /* 80% of viewport height */
    min-height: 500px;
    max-height: 800px;
}

.swiper-slide {
    height: 100%;
    position: relative;
}

.slide-image-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* Green/black gradient overlay */
.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,100,0,0.7) 0%, rgba(0,0,0,0.8) 100%);
    mix-blend-mode: multiply;
}

/* Text positioning */
.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: white;
    z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.slide-title {
    font-size: 3.3rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    color: white;
}

.slide-excerpt {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
}

.slide-read-more {
    display: inline-block;
    padding: 12px 25px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.slide-read-more:hover {
    background: #3e8e41;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-content {
        padding: 20px;
    }
    .slide-title {
        font-size: 1.8rem;
    }
    .slide-excerpt {
        font-size: 1rem;
    }
}