/* ==================================================
   DERS KİTABI CEVAPLARI - GENEL STİL
   ================================================== */

.kitap-ana-kutu,
.kitap-ana-kutu *,
.kitap-gecis-nav,
.kitap-gecis-nav * {
  box-sizing: border-box;
}


/* ==================================================
   KİTABIN TÜM CEVAPLARI / ANA KİTAP BAĞLANTISI
   ================================================== */

.kitap-ana-kutu {
  margin: 26px 0;
  padding: 17px 19px;
  border: 1px solid #cedce8;
  border-left: 6px solid #5482aa;
  border-radius: 11px;
  background: #f2f7fb;
  box-shadow: 0 4px 13px rgba(30, 55, 80, 0.07);
}

.kitap-ana-kutu-baslik {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  gap: 8px;
  color: #4b6780;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.kitap-ana-kutu-baslik::before {
  display: inline-block;
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #5482aa;
  content: "";
}

.kitap-ana-kutu p {
  margin: 0;
  color: #405365;
  font-size: 16px;
  line-height: 1.65;
}

.kitap-ana-kutu a {
  color: #075fbd;
  font-weight: 700;
  text-decoration: none;
}

.kitap-ana-kutu a::after {
  content: " \2192";
}

.kitap-ana-kutu a:hover {
  color: #034b95;
  text-decoration: underline;
}


/* ==================================================
   ÖNCEKİ / SONRAKİ SAYFA GEÇİŞ KUTULARI
   ================================================== */

.kitap-gecis-nav {
  display: grid !important;
  width: 100% !important;
  margin: 26px 0 !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.kitap-gecis-kart {
  display: flex !important;
  min-height: 105px;
  padding: 17px 18px !important;
  flex-direction: column !important;
  justify-content: center !important;
  border: 1px solid #d3dee8;
  border-radius: 11px;
  background: #f4f7fa;
  box-shadow: 0 4px 13px rgba(30, 55, 80, 0.07);
}

.kitap-gecis-onceki {
  border-left: 6px solid #9db9d5;
  text-align: left !important;
}

.kitap-gecis-sonraki {
  border-right: 6px solid #537da3;
  background: #edf4fa;
  text-align: right !important;
}

.kitap-gecis-etiket {
  display: block !important;
  margin-bottom: 7px !important;
  color: #52687d !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
}

.kitap-gecis-kart a {
  display: block !important;
  color: #075fbd !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  overflow-wrap: anywhere;
  text-decoration: none !important;
}

.kitap-gecis-kart a:hover {
  color: #034b95 !important;
  text-decoration: underline !important;
}


/* ==================================================
   MOBİL
   ================================================== */

@media (max-width: 650px) {

  .kitap-gecis-nav {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .kitap-gecis-kart {
    min-height: auto;
    padding: 15px !important;
  }

  .kitap-gecis-sonraki {
    text-align: left !important;
  }

  .kitap-gecis-kart a {
    font-size: 16px !important;
  }

  .kitap-ana-kutu {
    padding: 15px;
  }

}


/* ==================================================
   H2 BAŞLIKLAR
   ================================================== */

h2 {
  color: #252a30;
  border-left: 4px solid #ff0000;
  padding-left: 10px;
}


/* ==================================================
   SORU - CEVAP ALANI
   ================================================== */

.soru-cevap {
  margin: 0 0 18px 0;
  padding: 0;
  line-height: 1.65;
}

.soru-etiket,
.cevap-etiket {
  color: #ff0000;
  font-weight: 700;
}

.cevap-satiri {
  display: block;
  margin-top: 3px;
}