/* 01) Kart Kabuğu */
.popup-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  position: relative;
}

/* 02) Overlay (Modal) */
#detailsModal,
#mediaModal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* 03) Grid Düzeni */
.popup-two-columns {
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-areas:
    "left main"
    "left top";
  gap: 16px;
}
.popup-media { grid-area: left; }
.popup-media-top { grid-area: top; }
.popup-main { grid-area: main; display: flex; flex-direction: column; gap: 12px; }

/* 04) Medya Alanları */
.popup-media img,
.popup-media video,
.popup-media-top img,
.popup-media-top video {
  width: 100%;
  display: block;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 12px;
}

/* 05) Embed (YouTube, Vimeo, Facebook vs.) */
.embed-container,
.embed-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.embed-container::before,
.embed-wrap::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.embed-container iframe,
.embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 06) Başlık Bloğu */
.popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.popup-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}
.popup-header h2 {
  margin: 0;
  font-size: 1.2rem;
}
.popup-header small {
  display: inline-block;
  margin-top: 2px;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 0.75rem;
}

/* 07) Metin Alanı */
.popup-body p {
  margin: 4px 0;
  font-size: 0.95rem;
}
.photo-desc,
.media-caption {
  font-style: italic;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 6px;
}

/* 08) Modal Ortasında Medya */
.media-block {
  text-align: center;
  margin: 12px auto;
}
.media-block img,
.media-block video,
.media-block iframe {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* 09) Kapat Butonları */
.details-close,
.media-close,
#mediaPopupClose,
.close-x {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  z-index: 10001;
}

/* 10) Mobil Uyumu */
@media (max-width: 600px) {
  .popup-two-columns {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "main"
      "top";
  }

  .popup-media img,
  .popup-media video,
  .popup-media-top img,
  .popup-media-top video {
    width: 100%;
    max-height: 60vh;
  }

  .popup-card {
    max-width: 95vw;
    padding: 16px;
  }

  .popup-logo {
    width: 40px;
    height: 40px;
  }
}
