/* ================= HOME CONTENTS - EVENTS & NEWS ================= */

.home-content-hub {
    padding: 40px 0;
}

.events-header, .home-news .events-header {
    text-align: center;
    margin-bottom: 40px;
}

.g-section-title {
    font-size: 2.4rem;
    color: #1e3a8a;
    margin-bottom: 12px;
    font-weight: 700;
}

.g-section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 720px;
    margin: 0 auto;
}

/* ================= FEATURED EVENT ================= */
.featured-event {
    background: #f8fafc;
    border: 3px solid #1e40af;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 45px;
    position: relative;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.1);
}

.featured-tag {
    position: absolute;
    top: -14px;
    left: 40px;
    background: #1e40af;
    color: white;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.featured-event h3 {
    font-size: 1.75rem;
    margin: 12px 0 18px;
    color: #1e3a8a;
}

.event-meta {
    color: #334155;
    font-size: 1.08rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.event-description {
    line-height: 1.65;
    color: #444;
    margin-bottom: 24px;
}

.event-cta {
    display: inline-block;
    background: #1e40af;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.event-cta:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
}

/* ================= REGULAR EVENTS GRID ================= */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.event-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 26px;
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #1e40af;
}

.event-card h4 {
    font-size: 1.25rem;
    margin-bottom: 14px;
    color: #1e3a8a;
}

.event-card .event-meta {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* ================= NEWS SECTION ================= */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.news-featured {
    grid-column: 1 / -1;
    background: #f0f9ff;
    border: 3px solid #0ea5e9;
    border-radius: 12px;
    padding: 35px;
    position: relative;
}

.news-featured .news-tag {
    position: absolute;
    top: -14px;
    left: 40px;
    background: #0ea5e9;
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
}

.news-featured h3 {
    font-size: 1.7rem;
    margin: 18px 0 16px;
    color: #1e3a8a;
}

.news-featured p {
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}

.news-cta {
    color: #1e40af;
    font-weight: 600;
    text-decoration: none;
}

.news-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 26px;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #0ea5e9;
}

.news-card h4 {
    font-size: 1.22rem;
    margin-bottom: 12px;
    color: #1e3a8a;
}

.news-date {
    color: #64748b;
    font-size: 0.98rem;
    margin-bottom: 16px;
}

.news-link {
    color: #1e40af;
    font-weight: 600;
    text-decoration: none;
}

.news-link:hover,
.news-cta:hover {
    text-decoration: underline;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .featured-event,
    .news-featured {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .news-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .g-section-title {
        font-size: 2rem;
    }
    
    .featured-event h3,
    .news-featured h3 {
        font-size: 1.55rem;
    }
}