/* Google-style search (Legalcrab) */
.gc-search-form {
  max-width: 760px;
  width: 90%;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.gc-search-wrap {
  display: flex;
  align-items: center;
  position: relative;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: 0 1px 6px rgba(32,33,36,0.08);
  padding: 8px 8px;
  transition: box-shadow .18s ease, border-color .18s ease, transform .06s ease;
  height: 56px;
}

/* left icon */
.gc-search-icon {
  position: absolute;
  left: 18px;
  color: rgba(0,0,0,0.54);
  pointer-events: none;
}

/* input */
.gc-search-input {
  border: none;
  outline: none;
  padding-left: 52px;
  padding-right: 100px;
  font-size: 16px;
  background: transparent;
  height: 100%;
  box-shadow: none;
  color: #111;
}

/* placeholder */
.gc-search-input::placeholder {
  color: rgba(0,0,0,0.45);
  font-weight: 500;
}

/* submit button on the right */
.gc-search-btn {
  position: absolute;
  right: 8px;
  height: 42px;
  min-width: 84px;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: none;
  font-weight: 600;
  transition: background .12s ease, transform .06s ease, box-shadow .12s ease;
}

/* hover/focus states */
.gc-search-wrap:focus-within,
.gc-search-wrap:hover {
  box-shadow: 0 4px 24px rgba(32,33,36,0.12);
  border-color: rgba(0,0,0,0.18);
}

.gc-search-input:focus {
  outline: none;
}

.gc-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.04);
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .gc-search-form { max-width: 95%; }
  .gc-search-btn { min-width: 68px; height: 38px; font-size: 14px; }
  .gc-search-input { padding-right: 84px; }
}

/* Focus halinde mavi kenarlığı kaldır */
.gc-search-input:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.card-img-top {
  height: 225px;        /* sabit yükseklik */
  object-fit: cover;    /* orantıyı korur, kırparak doldurur */
  width: 100%;          /* tam genişlik */
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #212529;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #0d6efd; /* Bootstrap mavisi */
}

.post-link a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-link a:hover {
  color: #0d4d82; /* Bootstrap’in mavi tonu */
}

/* 🔍 Arama Kutusu Stili */
.search-box {
  max-width: 100%;
  position: relative;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #777;
  pointer-events: none;
}

.search-box input[type="search"] {
  border: 1px solid #ddd;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.search-box input[type="search"]:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,0.2);
  outline: none;
}

.search-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  padding: 0 16px;
  font-weight: 500;
}

/* 📂 Kategori Liste Efekti */
.category-list a {
  color: #333;
  transition: all 0.25s ease;
}

.category-list a:hover {
  color: #0d6efd;
  background-color: #f1f5ff;
  transform: translateX(6px);
}


.custom-breadcrumb {
  background: #fff;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.custom-breadcrumb a {
  text-decoration: none;
  
}

.breadcrumb-home {
  color: black;
}

.breadcrumb-current {
  color: black;
}

.breadcrumb-separator {
  color: #999;
  margin: 0 8px;
  font-size: 14px;
  font-weight: 500;
}



