/* ============================
   EVENTS PAGE STYLES
   events.css
   ============================ */

.events-layout {
  display: flex;
  flex-direction: row;
  gap: 3rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.events-col {
  flex: 1;
  min-width: 280px;
}

.event-card-wrap {
  flex: 0 0 auto;
  width: 500px;
  max-width: 100%;
}

.event-featured-card {
  background: #1e1a10;
  border: 1px solid rgba(245,196,0,0.4);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.event-featured-card .event-img-placeholder {
  width: 100%;
  height: 305px;
  background: #2a2410;
  border-bottom: 1px solid rgba(245,196,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.event-featured-card .event-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-featured-card .event-img-placeholder .placeholder-text {
  color: rgba(245,196,0,0.4);
  font-size: 0.9rem;
  font-family: 'Nunito', sans-serif;
  text-align: center;
  padding: 1rem;
}

.event-featured-details {
  padding: 1.2rem 1.5rem 1.5rem;
}

.event-featured-details h3 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 1.15rem;
  margin: 0 0 0.5rem 0;
}

.event-featured-details .event-meta {
  color: rgba(245,240,232,0.85);
  font-size: 0.88rem;
  line-height: 1.7;
  font-family: 'Nunito', sans-serif;
  margin-bottom: 1rem;
}

.event-featured-details .event-meta span {
  display: block;
}

.event-featured-details .event-register-btn {
  display: inline-block;
  background: #d4af37;
  color: #111;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s;
}

.event-featured-details .event-register-btn:hover {
  background: #f5c400;
}

@media (max-width: 860px) {
  .events-layout {
    flex-direction: column;
  }
  .event-card-wrap {
    width: 100%;
  }
}
