/* ===== Hero fotoğraf (full-bleed, minimal) ===== */
.ta-hero.ta-hero--photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(380px, 62vh, 640px);
  padding: 0;
  background-color: #023047;
  background-size: cover;
  background-position: center center;
  color: #fff;
}
.ta-hero--photo .ta-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ta-hero--photo .ta-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.ta-hero--photo .ta-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(2, 48, 71, 0.78) 0%, rgba(2, 48, 71, 0.35) 42%, rgba(2, 48, 71, 0.12) 100%),
    linear-gradient(to top, rgba(2, 48, 71, 0.45), transparent 40%);
}
.ta-hero--photo .ta-hero-inner {
  position: relative;
  z-index: 2;
  padding: 4.5rem 0 3.5rem;
  max-width: 720px;
}
.ta-hero--photo .ta-hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
  margin: 0 0 0.65rem;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.ta-hero--photo .ta-hero-title {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 750;
  line-height: 1.12;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  max-width: 14ch;
}
.ta-hero--photo .ta-hero-desc,
.ta-hero--photo .ta-hero-search,
.ta-hero--photo .ta-hero-cta-row {
  display: none !important;
}
@media (max-width: 720px) {
  .ta-hero.ta-hero--photo { min-height: 340px; }
  .ta-hero--photo .ta-hero-inner { padding: 3rem 0 2.5rem; }
  .ta-hero--photo .ta-hero-title { max-width: none; }
  .ta-hero--photo .ta-hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 48, 71, 0.72) 0%, rgba(2, 48, 71, 0.4) 100%);
  }
}
