 /* ===========================
   HOME HERO – BLOG CAROUSEL
   =========================== */

.hero-carousel-img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  padding: 1%;
}

/* Dot indicator görünümü */
#blogHeroCarousel .carousel-indicators {
  margin-bottom: 0.75rem;
}

#blogHeroCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.35); /* koyu */
  border: none;
  opacity: 1;
}

#blogHeroCarousel .carousel-indicators .active {
  background-color: #0d6efd; /* bootstrap primary */
}



/* Blog kartı */
.blog-mini-card {
  display: block;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
  min-height: 180px;              /* 👈 İSTEDİĞİN GİBİ */
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Hover kart efekti */
.blog-mini-card:hover {
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Görsel */
.blog-mini-card img {
  display: block;
  width: 100%;
  height: 110px;                  /* kart içinde dengeli */
  object-fit: contain;            /* 👈 özellikle istedin */
  background: #f8f9fa;
  border-radius: 8px;
  padding: 6px;
  margin-bottom: 8px;
}

/* Başlık – kart İÇİNDE */
.blog-mini-title {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  color: #111;                    /* siyah */
  transition: color 0.2s ease;
}

/* Hover’da başlık mavi */
.blog-mini-card:hover .blog-mini-title {
  color: #0d6efd;
}


.faq-section .accordion-button {
  font-size: 0.95rem;
  background: #f8f9fa;
  border-radius: 6px;
}

.faq-section .accordion-button:not(.collapsed) {
  background: #e7f1ff;
  color: #0d6efd;
  box-shadow: none;
}

.faq-section .accordion-item {
  margin-bottom: 0.5rem;
}

.faq-section .accordion-body {
  background: white;
  border-left: 3px solid #0d6efd;
  border-radius: 6px;
  padding: 0.75rem 1rem;
}


.blog-mini-heading {
  margin-bottom: 8px;
  font-size: 0.8rem;          /* küçük ama net */
  font-weight: 700;
  letter-spacing: 0.08em;     /* AFİLLİLİK BURADA */
  color: #374151;             /* siyah değil, koyu gri */
  position: relative;
  padding-left: 10px;
}

/* Solunda minik accent çizgi */
.blog-mini-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 14px;
  background-color: #0d6efd;  /* bootstrap primary */
  border-radius: 2px;
}
