/* ======================================================= */
/* ====== ACTIVITY & NEWS BANNER CSS ===================== */
/* ======================================================= */

.activity-banner {
    position: relative;
    width: 100%;
    height: 40vh; /* 40% of viewport height */
    background-image: url('../images/business-bg.png'); /* IMPORTANT: Image path check karein */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
@media (min-width: 768px) { /* md:h-[80vh] */
    .activity-banner {
        height: 80vh;
    }
}

/* --- Dark Blurred Overlay --- */
.activity-banner-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(0, 0, 0, 0.2); /* bg-black/20 */
    backdrop-filter: blur(8px); /* backdrop-blur-md */
    z-index: 1;
}

/* --- Centered Content --- */
.activity-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.activity-banner-content .banner-title {
    color: white;
    font-size: 2.25rem; /* text-4xl */
    line-height: 2.5rem;
    font-weight: 700; /* font-bold */
    letter-spacing: -0.025em; /* tracking-tight */
}
@media (min-width: 640px) { /* sm:text-5xl */
    .activity-banner-content .banner-title {
        font-size: 3rem;
        line-height: 1;
    }
}
@media (min-width: 1024px) { /* lg:text-6xl */
    .activity-banner-content .banner-title {
        font-size: 3.75rem;
    }
}

.activity-banner-content .banner-subtitle {
    margin-top: 1rem; /* mt-4 */
    font-size: 1.125rem; /* text-lg */
    color: #e5e7eb; /* text-gray-200 */
    max-width: 42rem; /* max-w-2xl */
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) { /* md:text-xl */
    .activity-banner-content .banner-subtitle {
        font-size: 1.25rem;
    }
}