/* ============================================
   İç Sayfalar Ortak Stilleri (Banner, Breadcrumb)
   ============================================ */

.page-hero {
  position: relative;
}

.page-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 1;
  width: min(1220px, 92%);
  margin: 0 auto;
  padding: 120px 0 60px;
  text-align: center;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 10px 20px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.breadcrumb-current {
  color: #fff;
  font-weight: 500;
}

.page-banner-title {
  margin: 0;
  font-family: var(--heading-font);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

@media (max-width: 600px) {
  .page-banner {
    min-height: 300px;
  }

  .page-banner-content {
    padding: 100px 0 40px;
  }
}
