/* ==================================================
   ABOUT PAGE – FULL LAYOUT (FINAL)
================================================== */

/* CONTAINER KAPAT */
.page-template-page-about .about-page .container{
  max-width: none;
  padding: 0;
}

/* GENEL */
.about-page{
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* =============================
   ABOUT HERO
============================= */

.about-hero{
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 560px;
  overflow: hidden;
}

.about-hero-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(15,27,39,.65),
    rgba(15,27,39,.35)
  );
}

.about-hero-content{
  position: absolute;
  inset: 0;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding-left: clamp(24px, 8vw, 120px);
  color: #fff;
}

.about-hero-content h1{
  font-family: "Poppins", sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  margin-bottom: 14px;
}

.about-hero-content p{
  font-size: 18px;
  max-width: 520px;
  opacity: .9;
}

/* =============================
   SPLIT SECTIONS
============================= */

.about-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100%;
}

.about-split.reverse{
  direction: rtl;
}
.about-split.reverse > *{
  direction: ltr;
}

/* GÖRSEL */
.about-split-image{
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-split-image img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* METİN */
.about-split-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 clamp(48px, 6vw, 96px);
}

.about-split-content h2{
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0f1b27;
}

.about-split-content p{
  font-size: 17px;
  line-height: 1.8;
  color: #475569;
  max-width: 540px;
}

.about-lead{
  font-size: 18px;
  color: #334155;
  margin-bottom: 18px;
}

/* =============================
   MOBİL
============================= */

@media (max-width: 768px){
    
  .about-hero{
    height: 60vh;
    min-height: 420px;
  }
    /* HERO → İLK BLOK YUMUŞAK GEÇİŞ */
.about-hero::before{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:80px;
  z-index:3;
  pointer-events:none;
  background:linear-gradient(
    to bottom,
    rgba(15,27,39,0) 0%,
    #ffffff 100%
  );
}

  .about-hero-content{
    padding: 0 24px;
    align-items: center;
    text-align: center;
  }

  .about-hero-content p{
    font-size: 16px;
  }

  .about-split{
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-split-image{
    height: 240px;
  }

  .about-split-content{
    padding: 36px 24px;
  }

  .about-hero-image{
      height: 559px;
  }
  }
