/* Website Event details page */

.ed-hero {
  position: relative;
  padding: 86px 0 54px;
  color: #fff;
  background: #0b1220;
  overflow: hidden;
}
.ed-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--ed-hero-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  transform: scale(1.02);
}
.ed-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11,18,32,0.92), rgba(13,71,161,0.42));
}
.ed-hero .container { position: relative; z-index: 1; }
.ed-breadcrumbs a { color: rgba(252,194,0,0.96); text-decoration: none; }
.ed-breadcrumbs a:hover { text-decoration: underline; }
.ed-breadcrumbs .text-muted { color: rgba(252,194,0,0.82) !important; }
.ed-title {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #f5fbff;
  display: inline;
  padding: 0.12rem 0.42rem;
  background: rgba(6, 26, 38, 0.60);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  border-left: 4px solid rgba(252, 194, 0, 0.95);
}
.ed-subtitle { color: rgba(255,230,140,0.96); font-size: 1.02rem; text-shadow: 0 6px 16px rgba(0,0,0,0.35); }
.ed-hero .text-muted { color: rgba(248,251,255,0.76) !important; }
.ed-meta-item { color: rgba(252,218,102,0.92) !important; }
.ed-meta .badge { border-radius: 0; }
.ed-hero-panel {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(11,18,32,0.42);
  backdrop-filter: blur(8px);
  padding: 12px;
}
.ed-hero-panel-title {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 8px;
  font-weight: 800;
}
.ed-hero-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ed-hero-facts {
  border-top: 1px dashed rgba(255,255,255,0.30);
  padding-top: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.86rem;
  display: grid;
  gap: 6px;
}

.ed-section { padding: 56px 0; }
.ed-card {
  border: 1px solid rgba(17,24,39,0.10);
  background: #fff;
  border-radius: 0;
  padding: 16px;
}
.ed-card-title { font-weight: 900; color: #111827; margin-bottom: 10px; }
.ed-content { color: #111827; line-height: 1.7; font-size: 0.96rem; }
.ed-detail-grid {
  border-top: 1px solid rgba(17,24,39,0.10);
  padding-top: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.ed-detail-item {
  border: 1px solid rgba(13,71,161,0.14);
  background: rgba(13,71,161,0.03);
  padding: 9px 10px;
}
.ed-detail-k {
  font-size: 0.75rem;
  font-weight: 800;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ed-detail-v {
  font-size: 0.9rem;
  color: #111827;
  font-weight: 700;
  margin-top: 2px;
}

.ed-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.ed-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,0.10);
  background: rgba(13,71,161,0.03);
}
.ed-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 250ms ease; }
.ed-thumb:hover img { transform: scale(1.04); }
.ed-more {
  aspect-ratio: 4 / 3;
  border: 1px dashed rgba(17,24,39,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #0d47a1;
  background: rgba(13,71,161,0.02);
}

.ed-bottom-nav { display: flex; gap: 10px; flex-wrap: wrap; }
.ed-section-alt { background: rgba(13,71,161,0.03); }

/* Other events cards (rendered with we-* classes inside event details) */
.ed-section .we-card {
  border: 1px solid rgba(17,24,39,0.10);
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ed-section .we-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(13,71,161,0.03);
}
.ed-section .we-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ed-section .we-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #0d47a1;
}
.ed-section .we-card-body { padding: 14px 14px 10px; }
.ed-section .we-card-title { font-weight: 900; color: #111827; line-height: 1.2; }
.ed-section .we-card-subtitle { font-size: 0.92rem; margin-top: 6px; min-height: 20px; }
.ed-section .we-card-footer { padding: 0 14px 14px; margin-top: auto; }

@media (max-width: 991.98px) {
  .ed-thumbs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ed-detail-grid { grid-template-columns: 1fr; }
  .ed-hero-panel { margin-top: 8px; }
}

@media (max-width: 575.98px) {
  .ed-section { padding: 44px 0; }
  .ed-bottom-nav .btn { width: 100%; justify-content: center; display: inline-flex; }
}

