/* --- HERO SECTION --- */
.hero-section { 
    padding: 40px 0; 
    background: #fff; 
    border-bottom: 1px solid #e0e0e0; 
}

.pill-label {
    display: inline-block; background: #eef2ff; color: var(--primary);
    font-weight: 600; font-size: 12px; padding: 4px 10px; border-radius: 4px;
    margin-bottom: 10px; text-transform: uppercase; border: 1px solid rgba(3, 70, 148, 0.15);
}

.hero-title {
    font-size: 24px; 
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-desc { 
    font-size: 15px; 
    color: var(--text-gray); 
    margin-bottom: 20px; 
    text-align: justify; 
}

/* --- INFO GRID --- */
.info-box {
    display: flex; align-items: flex-start; margin-bottom: 10px; padding: 10px;
    background: #f8f9fa; border-radius: 6px; border: 1px solid #eee;
}
.info-icon-wrapper { 
    color: var(--accent); font-size: 1.1rem; margin-right: 10px; margin-top: 2px; 
}
.info-label { 
    display: block; color: var(--text-gray); font-size: 11px; 
    text-transform: uppercase; font-weight: 600; 
}
.info-content { 
    font-size: 14px; font-weight: 600; color: var(--text-dark); 
}
.map-link { color: var(--primary); }
.map-link:hover { text-decoration: underline; }

/* --- COUNTDOWN --- */
.countdown-box { 
    display: flex; gap: 8px; margin-top: 20px; 
    border-top: 1px solid #eee; padding-top: 15px;
    justify-content: flex-start; /* Hoặc center tùy ý */
}
.countdown-item { 
    background: var(--primary); color: white; padding: 5px 10px; 
    border-radius: 4px; text-align: center; min-width: 55px;
}
.countdown-number { 
    font-size: 16px; font-weight: 700; display: block; line-height: 1.1; 
}
.countdown-label { 
    font-size: 10px; text-transform: uppercase; opacity: 0.9; 
}

/* --- IMAGE SLIDER --- */
.hero-img-wrapper {
    border-radius: 8px; overflow: hidden; border: 1px solid #eee;
    aspect-ratio: 4/3; background: #eee; position: relative;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.carousel-item, .carousel-inner, .carousel { height: 100%; }

/* --- DESCRIPTION AREA --- */
.event-description-area { 
    margin-top: 30px; padding-top: 30px; border-top: 1px solid #eee; 
}
.desc-header { 
    font-size: 18px; font-weight: 700; color: var(--text-dark); 
    margin-bottom: 15px; border-left: 3px solid var(--accent); 
    padding-left: 10px; text-transform: uppercase; 
}

@media (max-width: 991px) {
    .hero-img-wrapper { margin-top: 20px; }
    .countdown-box { justify-content: center; }
}