/**
 * رزنامة الفعاليات – بطاقات بصور وعنوان أوضح
 */
.lane-events {
  position: relative;
  margin: 32px 0 !important;
  padding: 26px 22px 22px;
  background: linear-gradient(165deg, #fbf7f0 0%, #f3ebe0 45%, #ebe2d4 100%);
  border-radius: 16px;
  border: 1px solid rgba(107, 78, 69, 0.18);
  box-shadow: 0 6px 28px rgba(45, 42, 38, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.65);
  overflow: hidden;
}

.lane-events::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #8b6914, #c9a227, #6b4e45);
  opacity: 0.95;
}

.lane-events-title {
  display: flex !important;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 18px !important;
  padding: 0 4px;
  color: #2d2a26 !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
  font-family: var(--font-heading);
}

.lane-events-badge {
  display: inline-block;
  padding: 5px 14px;
  background: linear-gradient(135deg, #6b4e45, #8b7355);
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(107, 78, 69, 0.28);
}

.lane-events .timeline {
  gap: 20px;
  padding-bottom: 16px;
}

/* بطاقات بصور */
#events.lane-events .event.event--card,
#events.lane-events .event.event--static {
  padding: 0 !important;
  overflow: hidden;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

#events.lane-events .event.event--featured {
  min-width: 340px;
}

.event-card-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 150px;
  max-height: 200px;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.event-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s var(--ease);
}

#events.lane-events a.event--card:hover .event-card-thumb {
  transform: scale(1.05);
}

.event-card-image-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.18), rgba(107, 78, 69, 0.12));
  min-height: 150px;
}

.event-placeholder-icon {
  font-size: 2.25rem;
  line-height: 1;
  opacity: 0.85;
  user-select: none;
}

.event-card-body {
  padding: 18px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

#events.lane-events .event-card-body strong {
  font-size: 1.02rem;
  line-height: 1.45;
}

#events.lane-events .event--static:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 42, 38, 0.08);
}

[data-theme="dark"] .lane-events {
  background: linear-gradient(165deg, #2a221c 0%, #221a16 50%, #1a1512 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .lane-events-title {
  color: #fff !important;
}

[data-theme="dark"] .lane-events-badge {
  background: linear-gradient(135deg, #c9a227, #8b6914);
  color: #1a1512 !important;
}

[data-theme="dark"] .event-card-image-wrap {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

[data-theme="dark"] .event-card-image-wrap--placeholder {
  background: linear-gradient(145deg, rgba(201, 162, 39, 0.15), rgba(107, 78, 69, 0.2));
}
