/* ===========================
   BİZİ TANIYIN SAYFALARI
   Sol sidebar + Sağ içerik
=========================== */

.bt-main {
  background: #f4f6f8;
  min-height: 60vh;
  padding: 30px 0 60px;
}

.bt-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}

/* ===========================
   SOL SIDEBAR
=========================== */
.bt-sidebar {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  overflow: hidden;
  position: sticky;
  top: 80px;
}

.bt-sidebar-baslik {
  font-size: 0.9rem;
  font-weight: 800;
  color: #1a1a2e;
  padding: 14px 18px;
  border-bottom: 2px solid #f0f0f0;
}

.bt-sidebar-liste {
  list-style: none;
  margin: 0;
  padding: 4px 0;
}

.bt-sidebar-liste li {
  border-bottom: 1px solid #f4f4f4;
}
.bt-sidebar-liste li:last-child { border-bottom: none; }

.bt-sidebar-liste a {
  display: block;
  padding: 11px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #333;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.bt-sidebar-liste a:hover {
  background: #f5f5f5;
  color: #1a1a2e;
}
.bt-sidebar-liste a.active {
  background: #1a6fa8;
  color: #fff;
}

/* ===========================
   SAĞ İÇERİK
=========================== */
.bt-icerik {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  padding: 30px 36px 36px;
  min-height: 400px;
}

.bt-icerik h1 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 18px;
}

.bt-ayet {
  font-size: 1rem;
  color: #555;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}

.bt-metin {
  font-size: 0.88rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}
.bt-metin p { margin-bottom: 14px; }
.bt-metin p:last-child { margin-bottom: 0; }
.bt-metin strong { color: #1a1a2e; font-weight: 700; }
.bt-metin ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 8px;
}
.bt-metin ul li { margin-bottom: 6px; }

/* Resim grubu */
.bt-resimler {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.bt-resimler img {
  border-radius: 8px;
  object-fit: cover;
  max-width: 48%;
  flex: 1 1 200px;
  background: #dde8f0;
  min-height: 160px;
}

/* Tek resim */
.bt-resim-tam {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  max-height: 380px;
  background: #dde8f0;
  display: block;
  margin: 20px 0;
}

/* Tarih */
.bt-tarih {
  font-size: 0.78rem;
  color: #aaa;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

/* ===========================
   RESPONSİF
=========================== */
@media (max-width: 820px) {
  .bt-container {
    grid-template-columns: 1fr;
  }
  .bt-sidebar { position: static; }
  .bt-resimler img { max-width: 100%; }
}
@media (max-width: 520px) {
  .bt-icerik { padding: 20px 16px 28px; }
  .bt-icerik h1 { font-size: 1.3rem; }
}
