body.se_event-template-default div#content {padding:0;}

/* === Genel Yapı === */
.sc-event {
  margin: 0 0 40px 0;
  padding: 0 0 40px 0;
  font-family: 'Inter', sans-serif;
  color: #222;
}
.sc-event__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 24px;
}

/* === İki Sütun === */
.sc-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 992px) {
  .sc-two-col {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}
.sc-right { position: sticky; top: 80px; }

/* === Kart === */
.event-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.event-card h3 {
  font-size: 20px;
  margin: 10px 0;
}

/* === Görseller === */
.sc-left figure img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 24px;
}
.sc-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.sc-gallery img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === Harita === */
.sc-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 12px;
}

/* === Butonlar === */
.sc-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-right: 6px;
}
.sc-btn--primary {
  background-color: #e91e63;
  color: #fff;
}
.sc-btn--primary:hover { background-color: #c2185b; }
.sc-btn--outline {
  border: 1px solid #ccc;
  color: #333;
}
.sc-btn--outline:hover { background-color: #f7f7f7; }

/* === Status Rozetleri === */
.sc-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}
.sc-status--aktif { background: #e7f9ed; color: #107e3a; }
.sc-status--yaklasan { background: #e0e7ff; color: #1d4ed8; }
.sc-status--suresi_doldu { background: #fee2e2; color: #991b1b; }

/* === İçerik === */
.prose { line-height: 1.7; margin-bottom: 24px; }
.sc-video {margin:20px 0;}
.sc-video frame, .sc-video iframe{width:100%;min-height:400px;}

/* === Lightbox === */
.sc-lb-open { overflow: hidden; }

.sc-lightbox[hidden] { display: none !important; }
.sc-lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  justify-items: center; align-items: center;
  z-index: 9999;
  padding: 24px;
}

#sc-lb-img {
  max-width: 100%;
  max-height: 80vh;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
  border-radius: 10px;
}

.sc-lb-caption {
  color: #f1f1f1;
  margin-top: 12px;
  max-width: 90ch;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

/* Butonlar */
.sc-lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 28px; line-height: 1; cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  user-select: none;
}
.sc-lb-btn:hover { background: rgba(255,255,255,.2); }
.sc-lb-prev { left: 24px; }
.sc-lb-next { right: 24px; }

/* Kapat */
.sc-lb-close {
  top: 24px; right: 24px; left: auto; transform: none;
  width: 40px; height: 40px; font-size: 26px;
  background: rgba(255,255,255,.18);
}

/* Küçük ekran optimizasyonu */
@media (max-width: 640px) {
  .sc-lb-prev { left: 10px; }
  .sc-lb-next { right: 10px; }
  #sc-lb-img { max-height: 70vh; }
}

/* === Responsive === */
@media (max-width: 768px) {
  .sc-event__title { font-size: 26px; }
  .sc-event {
        margin: 0;
        padding: 20px; 
    }
}

/* --- Paylaş ikonları --- */
.sc-share { display:flex; gap:10px; align-items:center; margin:10px 0 4px; }
.sc-icon-btn {
  width:40px; height:40px; border-radius:10px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid #e5e7eb; background:#fff;
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
}
.sc-icon-btn:hover { transform:translateY(-1px); background:#f9fafb; border-color:#d1d5db; }
.sc-icon-btn svg { width:20px; height:20px; fill:currentColor; }

/* marka renkli vurgular */
.sc-icon--fb { color:#1877F2; }
.sc-icon--x  { color:#111; }
.sc-icon--wa { color:#25D366; }
.sc-icon--copy { color:#6b7280; }

/* --- Takvim chipleri --- */
.sc-cal { display:flex; gap:8px; flex-wrap:wrap; margin-top:8px; }
.sc-chip {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:12px; background:#fff;
  border:1px solid #e5e7eb; font-weight:600; color:#111; text-decoration:none;
  transition:background .2s ease, border-color .2s ease, transform .15s ease;
}
.sc-chip:hover { background:#f9fafb; border-color:#d1d5db; transform:translateY(-1px); }
.sc-chip svg { width:18px; height:18px; fill:currentColor; }

/* === Benzer Etkinlikler === */
.sc-related { margin-top: 48px; }
.sc-related h2 { font-size: 22px; font-weight: 800; margin-bottom: 16px; }

.sc-rel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .sc-rel-grid { grid-template-columns: repeat(3, 1fr); }
}

.sc-rel {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  transition: transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}
.sc-rel:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  border-color: #d1d5db;
}

.sc-rel-thumb { width: 120px; height: 90px; border-radius: 10px; overflow: hidden; background:#f3f4f6; display:flex; align-items:center; justify-content:center; }
.sc-rel-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sc-rel-placeholder { font-weight: 800; font-size: 28px; color:#9ca3af; }

.sc-rel-body { display:flex; flex-direction:column; gap:4px; }
.sc-rel-date { font-size: 13px; color:#6b7280; }
.sc-rel-title { font-size: 16px; font-weight: 700; line-height: 1.25; }
.sc-rel-venue { font-size: 13px; color:#374151; }
.sc-rel-fee { font-size: 12px; color:#111; opacity:.8; }

/* --- Seanslar kartı (yan sütun) --- */
.sc-sessions-card { padding-top: 20px; }
.sc-card-title { font-size: 18px; font-weight: 800; margin: 0 0 12px; }

.sc-sessions-list {
  display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none;
}
.sc-session {
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
  padding: 10px 12px; border: 1px solid #e5e7eb; border-radius: 12px; background:#fff;
}
.sc-session__day { font-weight: 700; }
.sc-session__time { display:flex; align-items:center; gap:6px; color:#374151; font-size: 13px; }
.sc-session__time svg { width:16px; height:16px; stroke:currentColor; fill:none; stroke-width:1.6; }

.sc-session__actions { display:flex; gap:6px; align-items:center; }
.sc-icon-chip {
  width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center;
  border:1px solid #e5e7eb; border-radius:10px; background:#fff;
  transition:transform .15s ease, background .2s ease, border-color .2s ease;
}
.sc-icon-chip:hover { transform: translateY(-1px); background:#f9fafb; border-color:#d1d5db; }
.sc-icon-chip svg { width:18px; height:18px; fill:currentColor; }

/* alt CTA */
.sc-sessions-cta { display:block; text-align:center; margin-top:12px; }

/* --- Harita + Takvim birleşik alan --- */
.sc-actions { display: grid; gap: 10px; margin-top: 8px; }

/* Map butonu: tam genişlik + ikonlu */
.sc-actions__map {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.sc-actions__ico { width: 18px; height: 18px; fill: currentColor; }

/* Takvim chip’leri aynı satırda, mobilde wrap */
.sc-actions__cal { display: flex; gap: 8px; flex-wrap: wrap; }
.sc-actions__cal .sc-chip { flex: 1 1 auto; }

/* İstersen küçük ekranlarda chip’leri tam genişlik yap: */
@media (max-width: 420px) {
  .sc-actions__cal .sc-chip { flex: 1 1 100%; justify-content: center; }
}

/* Yardımcı: w-100 kullandıysan garantiye alalım */
.w-100 { width: 100%; }

/* Konum alanı */
.sc-loc { margin-top: 12px; margin-bottom:20px; }
.sc-loc__title { font-size: 13px; font-weight: 700; color:#6b7280; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .02em; }
.sc-loc__chips { display:flex; gap:8px; flex-wrap:wrap; }

.sc-chip--loc { gap:8px; }
.sc-chip--loc svg { width:18px; height:18px; fill:currentColor; }

/* İsteğe bağlı hafif vurgulu renk */
.sc-chip--loc { border-color:#e5e7eb; }
.sc-chip--loc:hover { border-color:#d1d5db; background:#f9fafb; }

/* Sayfa ortalama ve maksimum genişlik */
.se-events-wrap {
  max-width: 1200px;       /* İçeriğin maksimum genişliği */
  margin: 0 auto;          /* Yatayda ortala */
  padding: 16px 0 32px 0;    /* Kenarlardan biraz boşluk */
}

/* Kart gridi içi (dilersen biraz boşluk açalım) */
.se-events-list {
  margin-top: 24px;
}

body.tax-sc_location .site-main {
  display: flex;
  justify-content: center;
}

body.tax-sc_location .se-events-wrap {
  flex: 1 1 auto;
  max-width: 1200px;
}