/* Süreç — Hasta Öyküleri dili: büyük kare, overlay caption */

.page-process {
  --pr-top: 68px;
  --pr-slide: min(880px, 80%);
  background: #fff;
  color: var(--navy);
}

.pr-intro {
  padding: calc(var(--pr-top) + clamp(56px, 7vw, 88px)) 0 clamp(28px, 3.5vw, 40px);
  text-align: center;
}

.pr-intro .eyebrow {
  margin: 0 auto 12px;
}

.pr-intro h1 {
  margin: 0 auto 14px;
  max-width: 18em;
  font-family: var(--font);
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 500;
  letter-spacing: -0.9px;
  line-height: 1.16;
  color: var(--ink);
  text-wrap: balance;
}

.pr-intro p:not(.eyebrow) {
  margin: 0 auto;
  max-width: 36em;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
}

.pr-flow {
  padding-bottom: clamp(56px, 6vw, 88px);
}

.pr-stage {
  position: relative;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

@media (max-width: 1400px) {
  .pr-stage {
    width: auto;
    margin-inline: var(--gutter);
    max-width: none;
  }
}

.pr-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: var(--pr-slide);
  max-width: 100%;
  margin-inline: auto;
}

.pr-story {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b1c2c;
  color: #fff;
}

.pr-story-media {
  margin: 0;
  height: 100%;
}

.pr-story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(4, 20, 34, 0.18) 0%,
    rgba(4, 20, 34, 0.08) 32%,
    rgba(4, 20, 34, 0.78) 76%,
    rgba(4, 20, 34, 0.94) 100%
  );
}

.pr-story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 1.1s var(--ease);
}

.pr-story:hover .pr-story-media img {
  transform: scale(1.03);
}

.pr-story-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: clamp(20px, 2.6vw, 32px) clamp(18px, 2.6vw, 36px) clamp(22px, 2.8vw, 36px);
  text-align: center;
}

.pr-story-kicker {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.pr-story-kicker sup {
  font-size: 0.62em;
  line-height: 0;
  vertical-align: super;
}

.pr-story-caption h2 {
  margin: 0 auto 10px;
  max-width: 22em;
  font-family: var(--font);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 1.22;
  color: #fff;
}

.pr-story-caption > p {
  margin: 0 auto 16px;
  max-width: 38em;
  font-family: var(--font);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 400;
  letter-spacing: -0.15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.pr-story-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 22px;
}

.pr-story-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  text-decoration: none;
  transition: border-color 0.25s ease;
}

.pr-story-links a i {
  font-style: normal;
  transition: transform 0.3s var(--ease);
}

.pr-story-links a:hover {
  border-bottom-color: #fff;
}

.pr-story-links a:hover i {
  transform: translateX(4px);
}

.pr-cta {
  padding: 0 0 clamp(72px, 8vw, 104px);
  text-align: center;
}

.pr-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.pr-cta-link i {
  font-style: normal;
  transition: transform 0.3s var(--ease);
}

.pr-cta-link:hover i {
  transform: translateX(4px);
}

@media (max-width: 700px) {
  .pr-stage {
    --pr-slide: 100%;
  }

  .pr-story {
    aspect-ratio: 4 / 5;
  }

  .pr-story-caption h2 {
    max-width: none;
    font-size: 18px;
  }

  .pr-story-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pr-story-media img {
    transition: none;
  }
}
