/* ------------------------------------
   ✦ EKSTRA CSS: SINGLE YAZILARDA RESME ÇERÇEVE ✦
   Açıklama: Yazı içindeki resimlerin etrafına çerçeve, padding, gölge ve arka plan ekler.
   Kullanım: Yalnızca single (yazı) sayfasında çalışır.
------------------------------------ */


.custom-footer {
  background: #f5f5f5;
  padding: 40px 20px;
  font-family: "Segoe UI", sans-serif;
  color: #444;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
  gap: 40px;
}

/* Logo kısmı */
.footer-logo {
  flex: 0 0 240px;
  text-align: left;
}

.footer-logo img {
  max-width: 180px;
  display: block;
  margin-bottom: 10px;
}

.footer-logo small {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 4px;
}

.footer-logo b {
  color: #f55241;
}

/* Menü sütunları */
.footer-cols {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 160px;
  min-width: 150px;
}

.footer-col h5 {
  font-size: 1rem;
  color: #2b2bc3;
  margin-bottom: 12px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #444;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #e84393;
}

@media (max-width: 768px) {
.footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

.footer-logo {
    text-align: center;
  }

.footer-cols {
    width: 100%;
    justify-content: center;
  }

.footer-col {
    width: 100%;
    max-width: 220px;
    margin-bottom: 30px;
  }
}


.mobil-bolum {
  width: 100%;
  background: #f5f5f5;
  padding: 60px 20px;
  display: flex;
  justify-content: center; /* row’u ortala */
}

.mobil-row-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.mobil-row {
  display: flex;
  align-items: center;
  justify-content: center; /* row ortalanacak */
  gap: 40px;
  flex-wrap: nowrap; /* tek satır, daralmasın */
  max-width: 1100px; /* genişlik korunacak */
}

.mobil-img-col {
  flex: 0 0 auto; /* resim kendi boyutunda */
}

.mobil-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}

.mobil-text-col {
  flex: 1; /* yazı kalan alanı kaplasın */
  min-width: 280px;
}

.mobil-title {
  color: #e84393;
  font-size: 2rem;
  margin-bottom: 20px;
}

.mobil-desc {
  color: #000;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.mobil-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.mobil-btn {
  border: 1px solid #ccc;
  background: #fefefe;
  padding: 12px 24px;
  border-radius: 30px;
  color: #333;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.mobil-btn i {
  margin-right: 8px;
}

.mobil-btn:hover {
  background: #e84393;
  color: #fff;
  border-color: #e84393;
}

@media (max-width: 1200px) {
  .mobil-row {
    flex-wrap: wrap; /* ekran daralırsa alt alta geçebilir */
  }
  .mobil-img-col, .mobil-text-col {
    text-align: center;
  }
  .mobil-buttons {
    justify-content: center;
  }
}

.cizgi-img {
  display: block;          /* altındaki içerik taşmasın */
  width: 150%;             /* kapsayıcı genişliğini kapla */
  max-width: 1350;       /* isteğe bağlı maksimum genişlik */
  height: 4px;             /* çizgi kalınlığı */
  margin: 0 auto 20px auto; /* ortala ve alt boşluk bırak */
}






/* Yorumlar bölümünü aynı genişlikte iki kutu yapar */
.yorumlar-wrapper {
  width: 80%; /* Senin önceki genişlik */
  margin: 3rem auto; /* Ortalamak için auto margin */
  padding: 0 1rem;
  display: flex;
  justify-content: center;
}

.yorumlar-container {
  max-width: 1200px; /* Senin önceki max-width */
  display: flex;
  gap: 2rem; /* Kutular arası boşluk */
  width: 100%;
}

.yorum-form-box, .yorum-listesi-box {
  flex: 1;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: inset 2px 2px 2px #fff5, 2px 2px 2px #0007, inset 0 -3px 5px #0007;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  max-height: 600px; /* İstersen scrollbar için yükseklik */
  overflow-y: auto;
}

.yorum-form-box h3, .yorum-listesi-box h3 {
  color: #e84393;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Textarea ve inputlar senin önceki stilinle uyumlu */
.yorum-form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.yorum-form-row .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.yorum-form-row label {
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 14px;
}

.yorum-form-row input,
textarea {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-size: 14px;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

textarea {
  min-height: 150px;
}

.yorum-btn {
  background-color: #e84393;
  color: white;
  border: none;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  border-radius: 0.7rem;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.3s ease;
}

.yorum-btn:hover {
  background-color: #c92c6d;
}

/* Yorumlar listesi ul, li stili (senin önceki gibi) */
.yorum-listesi-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.yorum-listesi-box ul li {
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  position: relative;
}

/* Responsive: mobilde alt alta */
@media (max-width: 992px) {
  .yorumlar-container {
    flex-direction: column;
  }
  .yorum-form-box, .yorum-listesi-box {
    max-height: none;
    width: 100%;
  }
}



/* ------------------------------------
   ✦ /SINGLE RESİM ÇERÇEVE BİTİŞ ✦
------------------------------------ */
