/* Hasta öyküleri — fotoğrafsız hero, ice kayıt listesi */

.page-stories .hy-masthead {
  background: var(--navy);
  color: #fff;
  padding: 108px 0 clamp(40px, 5vh, 56px);
}

.page-stories .hy-masthead .grid-12 {
  align-items: end;
  row-gap: 0;
}

.hy-crumbs {
  grid-column: 1 / span 12;
  margin: 0 0 28px;
}

.hy-crumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hy-crumbs li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.hy-crumbs li:not(:last-child)::after {
  content: "→";
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
}

.hy-crumbs a {
  color: rgba(212, 238, 255, 0.9);
}

.hy-crumbs a:hover {
  color: #fff;
}

.hy-crumbs [aria-current="page"] {
  color: rgba(255, 255, 255, 0.72);
}

.hy-masthead-copy {
  grid-column: 1 / span 7;
}

.hy-masthead h1 {
  margin: 0 0 12px;
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -1.3px;
  line-height: 1.1;
  color: #fff;
}

.hy-masthead p {
  margin: 0;
  max-width: 34em;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.hy-index {
  padding: clamp(40px, 5vw, 64px) 0 clamp(72px, 8vw, 104px);
  background: #fff;
}

.hy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hy-row {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--ice);
  color: inherit;
  transition: background 0.35s ease;
}

.hy-row:hover {
  background: #c6e8fc;
}

.hy-row-media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b1c2c;
}

.hy-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform 1s var(--ease);
}

.hy-row:hover .hy-row-media img {
  transform: scale(1.04);
}

.hy-row-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  grid-template-rows: auto auto 1fr auto auto;
  flex: 1;
  padding: clamp(22px, 2.2vw, 32px) clamp(22px, 2.4vw, 32px) clamp(22px, 2.2vw, 28px);
}

.hy-row-kicker {
  grid-column: 1;
  grid-row: 1;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3f6280;
}

.hy-row-arrow {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  font-size: 17px;
  line-height: 1;
  color: var(--navy);
  opacity: 0.42;
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}

.hy-row:hover .hy-row-arrow {
  opacity: 1;
  transform: translate(3px, -3px);
}

.hy-row-body h2 {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0 0 10px;
  font-family: var(--font);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.9px;
  line-height: 1.12;
  color: var(--navy);
}

.hy-row-lead {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: start;
  margin: 0;
  max-width: 22em;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.2px;
  line-height: 1.62;
  color: #3f6280;
}

.hy-row-stats {
  grid-column: 1 / -1;
  grid-row: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 22px 0 18px;
  padding: 0;
  border-top: 1px solid rgba(1, 47, 87, 0.12);
}

.hy-row-stats div {
  padding: 14px 16px 0 0;
}

.hy-row-stats dt {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3f6280;
}

.hy-row-stats dd {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--navy);
}

.hy-row-go {
  grid-column: 1 / -1;
  grid-row: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.hy-row-go i {
  font-style: normal;
  transition: transform 0.3s var(--ease);
}

.hy-row:hover .hy-row-go i {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .hy-masthead-copy {
    grid-column: 1 / span 12;
  }

  .hy-list {
    grid-template-columns: 1fr;
  }

  .hy-row-body {
    padding: 22px 20px 20px;
  }
}
