/* Blog Kartları için Özel Stiller */
.blog-card {
  border-radius: 12px !important;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-card-img {
  width: 100%;
  height: 280px !important;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.05);
}

.blog-card-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem !important;
}

.blog-card-placeholder {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* Referans Logoları için Özel Stiller */
.custom-marquee-1 img {
  transition: all 0.3s ease;
  opacity: 0.8;
}

.custom-marquee-1 img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Blog ve Proje Butonları için Tutarlı Border Radius */
#numbers .btn,
#projects .btn {
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
  .blog-card-img {
    height: 220px !important;
  }
  
  .blog-card-overlay {
    padding: 1.5rem !important;
  }
  
  #numbers .col-lg-3.text-end {
    text-align: center !important;
    margin-top: 1rem;
  }
}

@media (max-width: 576px) {
  .blog-card-img {
    height: 200px !important;
  }
  
  .blog-card-overlay {
    padding: 1rem !important;
  }
}
