/* Featured Banner */
.featured-banner {
    padding: 20px 0;
    background: #fff;
    overflow: hidden;
}

.featured-banner-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.banner-reverse .featured-banner-inner { flex-direction: row-reverse; }
.banner-content { flex: 1; display: flex; flex-direction: column; gap: 20px; text-align: center; }
.banner-title { font-size: 2.22rem; font-weight: 800; color: var(--secondary); margin: 0; }
.banner-desc { font-size: 1.1rem; line-height: 1.8; color: #666; max-width: 550px; margin: 0 auto; }
.banner-btn { display: inline-block; padding: 10px 30px; background: var(--primary); color: #fff; text-decoration: none; font-weight: 700; border-radius: 4px; }

@media (max-width: 768px) {
    .featured-banner-inner, .banner-reverse .featured-banner-inner { flex-direction: column !important; gap: 30px; }
    .banner-title { font-size: 1.5rem; }
}
