/**
 * Bio Preview — Editorial split: large portrait + tipografi-odaklı sağ panel.
 * Tasarım: fotoğraf solda yarısını kaplar, "CANDAN" ile asimetrik kompozisyon.
 */

.ce-bio-preview {
  width: 100%;
  position: relative;
}

.ce-bio-preview__grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}

/* ============ MEDIA ============ */
.ce-bio-preview__media {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}

.ce-bio-preview__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d8cdc1;
}
.ce-bio-preview__frame::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  pointer-events: none;
  z-index: 2;
}
.ce-bio-preview__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(0.95) contrast(1.02);
}
.ce-bio-preview:hover .ce-bio-preview__frame img {
  transform: scale(1.05);
}

/* CE logo monogram — sağ-altta, dergi tarzı badge */
.ce-bio-preview__media-tag {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  z-index: 3;
  user-select: none;
  padding: 22px;
}
.ce-bio-preview__media-tag img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============ BODY ============ */
.ce-bio-preview__body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

/* Kicker - sade uppercase (çizgi kaldırıldı) */
.ce-bio-preview__kicker {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cep-accent, #d4a574);
}
.ce-bio-preview__kicker-line {
  display: none;
}

/* Title — anasayfa diğer section başlıklarıyla aynı ölçek */
.ce-bio-preview__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.ce-bio-preview__title-first {
  color: #111;
  display: block;
}
.ce-bio-preview__title-second {
  color: var(--cep-accent, #d4a574);
  display: block;
}

/* Text — drop cap zarif */
.ce-bio-preview__text {
  font-family: 'Poppins', sans-serif;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.72);
  max-width: 560px;
}
.ce-bio-preview__text p {
  margin: 0 0 16px;
}
.ce-bio-preview__text p:last-child {
  margin-bottom: 0;
}

/* CTA — koyu pill, hover copper */
.ce-bio-preview__cta {
  align-self: flex-start;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: #111;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.ce-bio-preview__cta:hover {
  background: var(--cep-accent, #d4a574);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 135, 110, 0.35);
}
.ce-bio-preview__cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.ce-bio-preview__cta:hover svg { transform: translateX(6px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .ce-bio-preview__grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .ce-bio-preview__media {
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }
  .ce-bio-preview__media-tag {
    width: 80px;
    height: 80px;
    bottom: -20px;
    right: -20px;
    padding: 16px;
  }
  .ce-bio-preview__title-second {
    margin-left: clamp(30px, 7vw, 60px);
  }
}
@media (max-width: 600px) {
  .ce-bio-preview__media { max-width: 320px; }
}
