/* =========================
   location.css — FINAL
   ✅ Dua/Quran ile aynı üst boşluk + aynı sponsor alanı
   ========================= */

.loc-page{
  padding: 26px 0 70px; /* ✅ Dua gibi: menü ile içerik arası nefes */
}

/* Başlık */
.loc-head{
  margin: 6px 0 16px;  /* ✅ Dua/Quran ile aynı */
  text-align: center;
}

.loc-title{
  margin: 0;
  font-family: var(--serif);
  font-weight: 900;
  font-size: 44px;
  color: var(--green2);
}

/* Kart */
.loc-card{
  max-width: 720px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(18,22,21,.08);
  background: linear-gradient(180deg, #ffffff, #fbfbfb);
  box-shadow: 0 18px 46px rgba(0,0,0,.07);
  padding: 22px;
}

.lbl{
  display:block;
  font-weight: 900;
  margin-bottom: 10px;
  color: rgba(18,22,21,.78);
  font-size: 15px;
}

.inp{
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(18,22,21,.14);
  background: #fff;
  font-weight: 700;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.inp:focus{
  outline:none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(244,179,35,.18);
}

/* Aksiyonlar */
.loc-actions{
  display:flex;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* Butonlar */
.m-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--amber);
  color:#1b1405;
  font-weight: 900;
  border:0;
  cursor:pointer;
}

.m-btn--ghost{
  background: transparent;
  border: 1px solid rgba(47,107,47,.25);
  color: rgba(47,107,47,.95);
}

/* =========================
   Sponsor (dua/quran gibi)
   ========================= */
.loc-ad-wrap{
  margin-top: 28px;         /* ✅ Dua/Quran ile aynı */
  display: flex;
  justify-content: center;
}

.loc-ad{
  width: 100%;
  max-width: 970px;
  display: flex;
  justify-content: center;
}

/* Responsive */
@media (max-width: 860px){
  .loc-title{ font-size: 34px; }
  .loc-card{ padding: 18px; }
}

/* =========================
   ADS RESPONSIVE SWITCH
   Desktop: slot_b (970x90)
   Mobile/Tablet: slot_c (300x100)
========================= */

.ad-desktop{ display:block; }
.ad-mobile{ display:none; }

@media (max-width: 1100px){
  .ad-desktop{ display:none; }
  .ad-mobile{ display:block; }
}

/* slot içeriği taşmasın */
.loc-ad img,
.loc-ad picture,
.loc-ad iframe{
  max-width: 100%;
  height: auto;
}