.agenda-section {
  background: linear-gradient(115deg, #1b1765 0%, #2236b0 48%, #1f62e6 100%);
  padding: 60px 24px;
  color: #fff;
}

.agenda-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* GRID */
.agenda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* COLUMN */
.agenda-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* TITLE */
.agenda-title {
  font-family: "Oxanium", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 40px;
  font-weight: 800;
  text-align: center;

  background: linear-gradient(90deg, #ff2a2a, #ff9a00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

/* BLOCK */
.agenda-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* LABEL (thanh cam) */
.agenda-label {
  font-family: "Oxanium", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-align: center;

  background: linear-gradient(90deg, #ff2a2a, #ff9a00);
  color: #fff;

  padding: 12px 20px;
  border-radius: 12px;
}

/* DESC */
.agenda-desc {
  font-style: italic;
  font-size: 18px;
  color: #cbd7ff;
  text-align: center;
}

/* LIST */
.agenda-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.agenda-list li {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}

/* bullet */
.agenda-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #fff;
}

/* strong title */
.agenda-list strong {
  display: block;
  font-weight: 800;
  margin-bottom: 4px;
}

/* sub text */
.agenda-list span {
  font-style: italic;
  color: #cbd7ff;
}

/* ===== AGENDA ANIMATION ===== */

.agenda-title,
.agenda-label,
.agenda-list li,
.agenda-desc {
  opacity: 0;
  transform: translateY(24px);
  animation: agendaFadeUp 0.75s ease forwards;
}

/* Title */
.agenda-title {
  animation-delay: 0.1s;
}

/* Label */
.agenda-label {
  animation-delay: 0.25s;
}

/* Description */
.agenda-desc {
  animation-delay: 0.4s;
}

/* List stagger */
.agenda-list li:nth-child(1) {
  animation-delay: 0.5s;
}

.agenda-list li:nth-child(2) {
  animation-delay: 0.65s;
}

.agenda-list li:nth-child(3) {
  animation-delay: 0.8s;
}

.agenda-list li:nth-child(4) {
  animation-delay: 0.95s;
}

@keyframes agendaFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Thanh cam chạy nhẹ */
.agenda-label {
  position: relative;
  overflow: hidden;
}

.agenda-label::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  animation: labelShine 2.8s ease-in-out infinite;
}

@keyframes labelShine {
  0% {
    left: -80%;
  }

  45% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

/* Title glow nhẹ */
.agenda-title {
  text-shadow: 0 0 12px rgba(255, 85, 40, 0.45);
}

/* Hover card nhẹ */
.agenda-block {
  transition: transform 0.3s ease;
}

.agenda-block:hover {
  transform: translateY(-4px);
}

/* Tôn trọng người dùng tắt animation */
@media (prefers-reduced-motion: reduce) {
  .agenda-title,
  .agenda-label,
  .agenda-list li,
  .agenda-desc {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .agenda-label::after {
    animation: none;
  }

  .agenda-block:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .agenda-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .agenda-title {
    font-size: 26px;
  }

  .agenda-label {
    font-size: 16px;
    padding: 8px 12px;
  }

  .agenda-list li {
    font-size: 14px;
  }

  .agenda-desc {
    font-size: 14px;
  }
}