/* ═══════════════════════════════════════════════════════════
   HUNG GIA GROUP — Trang Sự Kiện Hội Nghị
   Prefix: evt-
═══════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────────── */
.evt-hero {
  position: relative;
  padding: 140px 0 100px !important;
  background-size: cover !important;
  background-position: center !important;
}
.evt-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, transparent, #C9A840, transparent);
  z-index: 2;
}
.evt-eyebrow {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: #C9A840;
  width: 100%;
}
.evt-eyebrow::before, .evt-eyebrow::after {
  content: ''; display: inline-block;
  width: 32px; height: 1px; background: rgba(201,168,64,0.5);
}

.evt-hero-title,
.evt-hero-title h3,
.evt-hero-title .section-title-main {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(2.5rem, 5vw, 4rem) !important;
  color: #fff !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  text-align: center !important;
  width: 100% !important;
  margin: 0 auto 32px !important;
  max-width: 900px;
}
.evt-hero-title b, .evt-hero-title span { font-weight: inherit !important; border: none !important; }
.evt-hero-title { border: none !important; }

/* ── SECTION LABEL ────────────────────────────────────────── */
.evt-section-label {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: #C9A840;
  margin-bottom: 14px; width: 100%;
}
.evt-section-label.left { justify-content: flex-start; }
.evt-section-label::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: #C9A840;
}

/* ── SỰ KIỆN NỔI BẬT (FEATURED EVENT) ─────────────────────── */
.evt-featured-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(13,27,42,0.08);
}
.evt-featured-img {
  width: 100%; height: 100%; min-height: 400px;
  background-size: cover; background-position: center;
  position: relative;
}
.evt-featured-date {
  position: absolute; top: 24px; left: 24px;
  background: #C9A840; color: #fff;
  padding: 12px 16px; border-radius: 8px;
  text-align: center; line-height: 1.2;
}
.evt-featured-date span.day { display: block; font-size: 28px; font-weight: 700; font-family: 'Playfair Display', serif; }
.evt-featured-date span.month { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

.evt-featured-content {
  padding: 40px 48px;
  display: flex; flex-direction: column; justify-content: center; height: 100%;
}
.evt-featured-meta {
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
  font-size: 13px; font-weight: 700; color: #8B7D6B; text-transform: uppercase; letter-spacing: 0.05em;
}
.evt-featured-meta span { display: flex; align-items: center; gap: 6px; }
.evt-featured-content h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 2.2rem !important; color: #0D1B2A !important; margin-bottom: 20px !important; text-transform: none !important;
}
.evt-featured-content p {
  font-size: 1.1rem !important; color: #6B5E4E !important; line-height: 1.7 !important; margin-bottom: 32px !important;
}

/* ── DANH SÁCH SỰ KIỆN (EVENT CARDS) ──────────────────────── */
.evt-card {
  background: #fff;
  border: 1px solid #EDE8DC;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex; flex-direction: column;
}
.evt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(13,27,42,0.06);
  border-color: #C9A840;
}
.evt-card-img {
  width: 100%; padding-top: 60%;
  background-size: cover; background-position: center;
  position: relative;
  border-radius: 8px 8px 0 0;
}
.evt-card-date {
  position: absolute; top: 16px; right: 16px;
  background: #0D1B2A; color: #C9A840;
  padding: 8px 12px; border-radius: 6px;
  text-align: center; line-height: 1.1;
}
.evt-card-date span.day { display: block; font-size: 20px; font-weight: 700; font-family: 'Playfair Display', serif; }
.evt-card-date span.month { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.evt-card-status {
  position: absolute; bottom: -12px; left: 24px;
  background: #C9A840; color: #fff;
  padding: 4px 12px; border-radius: 20px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}

.evt-card-body {
  padding: 32px 24px 24px; flex-grow: 1;
  display: flex; flex-direction: column;
}
.evt-card-meta {
  font-size: 12px; color: #8B7D6B; font-weight: 600; margin-bottom: 12px;
}
.evt-card-body h4 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.3rem !important; color: #0D1B2A !important; margin-bottom: 12px !important; text-transform: none !important;
}
.evt-card-body p {
  font-size: 14px !important; color: #6B5E4E !important; margin-bottom: 24px !important; flex-grow: 1;
}
.evt-card-link {
  color: #0D1B2A; font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px; transition: color 0.3s;
}
.evt-card:hover .evt-card-link { color: #C9A840; }
