/* Banner Content Styles */
.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 70%, rgba(0,0,0,0) 100%);
    color: #fff;
    z-index: 2;
    border-radius: 0 0 12px 12px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.featured-banner:hover .banner-content {
    transform: translateY(-5px);
    opacity: 1;
}

.banner-content h3 {
    margin: 0 0 8px 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.banner-content p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .banner-content {
        padding: 15px;
    }
    
    .banner-content h3 {
        font-size: 1.2rem;
    }
    
    .banner-content p {
        font-size: 0.85rem;
    }
}
