/* =========================
   DUA — dua.css
   (app.css ile uyumlu)
   ========================= */

.dua-page{
  padding: 26px 0 70px;
}

.dua-head{
  margin: 6px 0 16px;
  text-align: center;
}

.dua-title{
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: .2px;
}

.dua-sub{
  margin: 0;
  color: rgba(14,20,17,.70);
  line-height: 1.7;
  max-width: 72ch;
  margin-inline: auto;
}

/* Filters */
.dua-filters{
  margin-top: 14px;
  border: 1px solid rgba(14,20,17,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
  padding: 14px;
}

.dua-filter-row{
  display: grid;
  grid-template-columns: 1.2fr .8fr auto;
  gap: 12px;
  align-items: end;
}

.dua-field{ display:block; }

.dua-label{
  display:block;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .2px;
  margin: 0 0 6px;
  color: rgba(14,20,17,.80);
}

.dua-input,
.dua-select{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(14,20,17,.12);
  outline: none;
  background: #fff;
}

.dua-input:focus,
.dua-select:focus{
  border-color: rgba(30,93,58,.35);
  box-shadow: 0 0 0 4px rgba(30,93,58,.10);
}

.dua-actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.dua-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(244,179,35,.55);
  background: rgba(244,179,35,.16);
  color: rgba(14,20,17,.92);
  font-weight: 900;
  cursor:pointer;
  white-space:nowrap;
}

.dua-btn:hover{
  background: rgba(244,179,35,.22);
}

.dua-btn.secondary{
  border-color: rgba(14,20,17,.12);
  background: rgba(0,0,0,.02);
}

.dua-pills{
  margin-top: 12px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(14,20,17,.10);
  background: rgba(0,0,0,.02);
  color: rgba(14,20,17,.80);
  font-weight: 900;
  font-size: 13px;
}

.pill:hover{
  background: rgba(0,0,0,.03);
}

.pill.active{
  border-color: rgba(30,93,58,.30);
  background: rgba(30,93,58,.08);
  color: rgba(30,93,58,.95);
}

/* Grid */
.dua-grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dua-card{
  border: 1px solid rgba(14,20,17,.06);
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(0,0,0,.05);
  overflow:hidden;
  padding: 14px 14px 16px;
}

.dua-card-top{
  margin-bottom: 10px;
}

.dua-badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom: 8px;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(14,20,17,.08);
  background: rgba(0,0,0,.02);
}

.badge.cat{
  border-color: rgba(30,93,58,.16);
  background: rgba(30,93,58,.06);
  color: rgba(30,93,58,.92);
}

.badge.src{
  border-color: rgba(244,179,35,.22);
  background: rgba(244,179,35,.14);
  color: rgba(120,80,0,.92);
}

.dua-card-title{
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: .2px;
  color: rgba(14,20,17,.92);
  font-weight: 900;
}

/* Arabic */
.dua-arbox{
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(14,20,17,.06);
  margin: 10px 0 12px;
}

.dua-ar{
  margin:0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.9;
  color: rgba(14,20,17,.86);
  text-align:center;
  max-width: 58ch;
  margin-inline:auto;

  font-family:
    "Noto Naskh Arabic",
    "Noto Kufi Arabic",
    "Amiri",
    "Scheherazade New",
    "Geeza Pro",
    serif;
}

/* Turkish */
.dua-tr{
  margin: 0 0 10px;
  color: rgba(14,20,17,.72);
  line-height: 1.75;
  font-size: 15px;
  font-weight: 700;
}

.dua-ref{
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
  opacity: .62;
  letter-spacing: .2px;
}

.dua-empty{
  margin-top: 18px;
  padding: 16px;
  border: 1px dashed rgba(14,20,17,.16);
  border-radius: 18px;
  color: rgba(14,20,17,.68);
  background: rgba(0,0,0,.02);
}

/* Responsive */
@media (max-width: 980px){
  .dua-grid{ grid-template-columns: 1fr; }
  .dua-filter-row{ grid-template-columns: 1fr; }
  .dua-actions{ justify-content:flex-start; }
  .dua-title{ font-size: 32px; }
}

/* =========================
   Sponsor (ortalanmış özel alan)
   ========================= */

.dua-ad-wrap{
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.dua-ad{
  width: 100%;
  max-width: 970px; /* 970x90 için ideal */
  display: flex;
  justify-content: center;
}

/* =========================
   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 */
.dua-ad img,
.dua-ad picture,
.dua-ad iframe{
  max-width: 100%;
  height: auto;
}