/* ========================================
   EVENT PAGE STYLES
   Consistent with about.css design patterns
======================================== */

/* ========================================
   HERO SECTION
======================================== */
.event-hero-section {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--event-secondary) 0%,
    var(--event-primary) 100%
  );
  padding: 100px 0 80px;
  overflow: hidden;
  text-align: center;
}

.event-hero-float {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  animation: floatAnimation 6s ease-in-out infinite;
}

.event-hero-float.float-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -50px;
}

.event-hero-float.float-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -30px;
  animation-delay: -3s;
}

@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.event-hero-content {
  position: relative;
  z-index: 2;
}

.event-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.event-hero-badge i {
  font-size: 18px;
  color: var(--event-accent);
}

.event-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.event-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.event-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.event-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

.event-breadcrumb a:hover {
  color: var(--event-accent);
}

.event-breadcrumb i {
  font-size: 12px;
}

/* ========================================
   FEATURED EVENT SECTION
======================================== */
.event-featured-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.featured-event-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.featured-event-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: linear-gradient(135deg, var(--event-accent), #ffc107);
  color: #000;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(250, 183, 2, 0.4);
}

.featured-event-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.featured-event-image {
  position: relative;
  overflow: hidden;
}

.featured-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.featured-countdown {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 15px;
}

.countdown-item {
  text-align: center;
  color: #fff;
}

.countdown-item span {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--event-accent);
  line-height: 1;
}

.countdown-item small {
  font-size: 12px;
  opacity: 0.8;
}

.featured-event-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-event-category {
  display: inline-block;
  background: var(--event-primary);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 15px;
  width: fit-content;
}

.featured-event-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--event-secondary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured-event-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.featured-event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  font-size: 15px;
}

.featured-event-meta .meta-item i {
  color: var(--event-primary);
  font-size: 18px;
  width: 24px;
}

.featured-event-desc {
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.featured-event-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-event-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    135deg,
    var(--event-primary),
    var(--event-secondary)
  );
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(0, 153, 125, 0.3);
}

.btn-event-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 153, 125, 0.4);
  color: #fff;
}

.btn-event-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-event-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  color: #fff;
}

/* ========================================
   FILTER & EVENTS LIST SECTION
======================================== */
.event-list-section {
  padding: 60px 0 80px;
  background: #fff;
}

.event-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 25px;
  background: #f8f9fa;
  border-radius: 15px;
  margin-bottom: 40px;
}

.filter-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--event-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.filter-title i {
  color: var(--event-primary);
}

.event-count {
  font-size: 14px;
  font-weight: 400;
  color: #888;
}

.filter-right {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group label {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.filter-group select {
  padding: 10px 35px 10px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.filter-group select:focus {
  outline: none;
  border-color: var(--event-primary);
}

/* ========================================
   EVENTS GRID
======================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.event-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-card.event-past {
  opacity: 0.75;
}

.event-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.event-card:hover .event-card-image img {
  transform: scale(1.08);
}

.event-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--event-primary);
  color: #fff;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.event-card-featured {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--event-accent);
  color: #000;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.event-card-overlay-past {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.event-card-content {
  padding: 20px;
  display: flex;
  gap: 15px;
}

.event-card-date {
  flex-shrink: 0;
}

.date-box {
  background: linear-gradient(
    135deg,
    var(--event-primary),
    var(--event-secondary)
  );
  color: #fff;
  width: 60px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.date-day {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.date-month {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.9;
}

.event-card-info {
  flex: 1;
  min-width: 0;
}

.event-card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--event-secondary);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.event-card-meta span {
  font-size: 13px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.event-card-meta i {
  color: var(--event-primary);
  font-size: 14px;
}

.event-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.event-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--event-secondary);
}

.event-price.free {
  background: linear-gradient(135deg, var(--event-primary), #00b894);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-event-detail {
  font-size: 14px;
  font-weight: 600;
  color: var(--event-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s;
}

.btn-event-detail:hover {
  gap: 10px;
  color: var(--event-secondary);
}

/* ========================================
   EMPTY STATE
======================================== */
.events-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  background: #f8f9fa;
  border-radius: 20px;
}

.events-empty i {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 20px;
}

.events-empty h4 {
  font-size: 22px;
  color: var(--event-secondary);
  margin-bottom: 10px;
}

.events-empty p {
  color: #888;
  margin-bottom: 25px;
}

/* ========================================
   CTA SECTION
======================================== */
.event-cta-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--event-secondary) 0%,
    var(--event-primary) 100%
  );
}

.event-cta-content {
  text-align: center;
  color: #fff;
}

.cta-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.cta-icon i {
  font-size: 36px;
  color: var(--event-accent);
}

.event-cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.event-cta-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 30px;
}

.btn-event-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--event-accent);
  color: #000;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(250, 183, 2, 0.4);
}

.btn-event-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(250, 183, 2, 0.5);
  color: #000;
}

/* ========================================
   MODAL
======================================== */
.event-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.event-modal.active {
  visibility: visible;
  opacity: 1;
}

.event-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.event-modal-container {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.3s;
}

.event-modal.active .event-modal-container {
  transform: translateY(0) scale(1);
}

.event-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
}

.event-modal-close:hover {
  background: #e0e0e0;
  transform: rotate(90deg);
}

.event-modal-content {
  min-height: 300px;
}

.modal-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: #888;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #eee;
  border-top-color: var(--event-primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 15px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.modal-error {
  text-align: center;
  padding: 60px 20px;
  color: #e74c3c;
}

.modal-error i {
  font-size: 50px;
  margin-bottom: 15px;
}

/* Modal Content (loaded via AJAX) */
.modal-event-header {
  position: relative;
  height: 250px;
}

.modal-event-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-event-header .event-category-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--event-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 500;
}

.modal-event-body {
  padding: 30px;
}

.modal-event-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--event-secondary);
  margin-bottom: 20px;
}

.modal-event-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
}

.modal-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.modal-meta-item i {
  font-size: 20px;
  color: var(--event-primary);
  margin-top: 2px;
}

.modal-meta-item strong {
  display: block;
  font-size: 13px;
  color: #888;
  font-weight: 400;
  margin-bottom: 3px;
}

.modal-meta-item span {
  font-size: 15px;
  color: var(--event-secondary);
  font-weight: 500;
}

.modal-event-desc {
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.modal-event-desc h4 {
  font-size: 18px;
  color: var(--event-secondary);
  margin-bottom: 10px;
}

.modal-event-speaker {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa, #fff);
  border-radius: 15px;
  margin-bottom: 25px;
}

.modal-speaker-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  border: 3px solid var(--event-primary);
  flex-shrink: 0;
}

.modal-speaker-info h5 {
  font-size: 18px;
  color: var(--event-secondary);
  margin-bottom: 5px;
}

.modal-speaker-info p {
  font-size: 14px;
  color: #888;
  margin: 0;
}

.modal-event-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* OLD RESPONSIVE RULES MOVED TO BOTTOM - SEE COMPREHENSIVE RESPONSIVE SECTION BELOW */

/* ========================================
   RESPONSIVE - TABLET (1024px)
======================================== */
@media (max-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .featured-event-inner {
    grid-template-columns: 1fr;
  }

  .featured-event-image img {
    min-height: 300px;
  }

  .featured-event-content {
    padding: 30px;
  }

  .event-hero-title {
    font-size: 40px;
  }

  .modal-event-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   RESPONSIVE - SMALL TABLET (768px)
======================================== */
@media (max-width: 768px) {
  /* Hero Section */
  .event-hero-section {
    padding: 80px 0 60px;
  }

  .event-hero-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .event-hero-desc {
    font-size: 15px;
    padding: 0 10px;
  }

  .event-hero-badge {
    font-size: 12px;
    padding: 8px 16px;
  }

  /* Featured Event */
  .event-featured-section {
    padding: 40px 0;
  }

  .featured-event-card {
    border-radius: 15px;
  }

  .featured-event-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .featured-event-content {
    padding: 25px 20px;
  }

  .featured-event-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .featured-event-meta .meta-item {
    font-size: 14px;
  }

  .countdown-item span {
    font-size: 22px;
  }

  .countdown-item small {
    font-size: 10px;
  }

  /* Filter Section */
  .event-list-section {
    padding: 40px 0 60px;
  }

  .event-filter-bar {
    flex-direction: column;
    text-align: center;
    padding: 15px;
    gap: 15px;
  }

  .filter-left {
    width: 100%;
  }

  .filter-title {
    font-size: 18px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .filter-right {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .filter-group {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }

  .filter-group label {
    text-align: left;
    font-weight: 500;
  }

  .filter-group select {
    width: 100%;
    padding: 12px 40px 12px 15px;
    font-size: 15px;
  }

  /* Events Grid */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .event-card {
    border-radius: 12px;
  }

  .event-card-image {
    height: 180px;
  }

  .event-card-content {
    padding: 15px;
    gap: 12px;
  }

  .event-card-title {
    font-size: 16px;
  }

  /* Modal */
  .event-modal-container {
    width: 95%;
    max-height: 95vh;
    border-radius: 15px;
  }

  .event-modal-close {
    width: 44px;
    height: 44px;
    font-size: 22px;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }

  .modal-event-header {
    height: 200px;
  }

  .modal-event-body {
    padding: 20px;
  }

  .modal-event-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .modal-event-meta {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 12px;
  }

  .modal-meta-item i {
    font-size: 18px;
  }

  .modal-meta-item span {
    font-size: 14px;
  }

  .modal-event-speaker {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 15px;
  }

  .modal-speaker-image {
    width: 70px;
    height: 70px;
  }

  .modal-event-actions {
    flex-direction: column;
  }

  .modal-event-actions a {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 14px;
  }

  /* CTA Section */
  .event-cta-section {
    padding: 50px 0;
  }

  .cta-icon {
    width: 60px;
    height: 60px;
  }

  .cta-icon i {
    font-size: 28px;
  }

  .event-cta-content h2 {
    font-size: 22px;
    padding: 0 10px;
  }

  .event-cta-content p {
    font-size: 15px;
    padding: 0 15px;
  }

  .btn-event-cta {
    padding: 14px 28px;
    font-size: 15px;
  }
}

/* ========================================
   RESPONSIVE - MOBILE (480px)
======================================== */
@media (max-width: 480px) {
  /* Hero Section */
  .event-hero-section {
    padding: 60px 0 40px;
  }

  .event-hero-title {
    font-size: 24px;
  }

  .event-hero-desc {
    font-size: 14px;
  }

  .event-breadcrumb {
    font-size: 12px;
    gap: 6px;
  }

  /* Featured Event */
  .featured-event-image img {
    min-height: 220px;
  }

  .featured-countdown {
    gap: 8px;
    padding: 10px 12px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 10px;
  }

  .countdown-item span {
    font-size: 18px;
  }

  .countdown-item small {
    font-size: 9px;
  }

  .featured-event-content {
    padding: 20px 15px;
  }

  .featured-event-title {
    font-size: 18px;
  }

  .featured-event-meta .meta-item {
    font-size: 13px;
  }

  .featured-event-actions a {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Event Cards */
  .event-card-content {
    flex-direction: column;
    gap: 10px;
  }

  .date-box {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
  }

  .date-day {
    font-size: 20px;
  }

  .date-month {
    font-size: 14px;
  }

  .event-card-footer {
    padding-top: 10px;
  }

  .event-price {
    font-size: 14px;
  }

  .btn-event-detail {
    font-size: 13px;
  }

  /* Modal */
  .modal-event-header {
    height: 160px;
  }

  .modal-event-header .event-category-badge {
    padding: 6px 14px;
    font-size: 12px;
    bottom: 15px;
    left: 15px;
  }

  .modal-event-body {
    padding: 15px;
  }

  .modal-event-title {
    font-size: 18px;
  }

  .modal-event-desc h4 {
    font-size: 16px;
  }

  .modal-speaker-image {
    width: 60px;
    height: 60px;
  }

  .modal-speaker-info h5 {
    font-size: 16px;
  }

  /* Buttons */
  .btn-event-primary,
  .btn-event-whatsapp {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* CTA */
  .event-cta-content h2 {
    font-size: 20px;
  }

  .event-cta-content p {
    font-size: 14px;
  }
}

/* ========================================
   RESPONSIVE - VERY SMALL (360px)
======================================== */
@media (max-width: 360px) {
  .event-hero-title {
    font-size: 20px;
  }

  .featured-event-title {
    font-size: 16px;
  }

  .countdown-item span {
    font-size: 16px;
  }

  .event-card-title {
    font-size: 15px;
  }

  .modal-event-title {
    font-size: 16px;
  }

  .filter-group select {
    font-size: 14px;
  }
}
