/* ===== Son Dakika (/son-dakika) — wire servis listesi ===== */
.sd-page {
  background: #fff;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}
.sd-shell {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.sd-wrap {
  padding: 28px 0 48px;
  min-width: 0;
}

/* Başlık + filtre */
.sd-head {
  margin-bottom: 28px;
}
.sd-head-title {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
  line-height: 1.15;
}
.sd-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.sd-filter {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: color .15s, border-color .15s;
}
.sd-filter:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.sd-filter.is-active {
  color: var(--accent);
  border-color: var(--ink);
  background: #fff;
}

/* Haber listesi */
.sd-feed {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.sd-entry {
  margin: 0;
  padding: 0;
  border: 0;
}

/* Öbek: saat + görsel + metin tek çerçevede */
.sd-cluster {
  display: grid;
  grid-template-columns: minmax(200px, 340px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  grid-template-areas:
    "stamp stamp"
    "media body";
  column-gap: 24px;
  row-gap: 18px;
  padding: 0 0 20px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  border: 1px solid oklch(86% 0.01 250);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
  box-sizing: border-box;
}
.sd-cluster:hover {
  border-color: oklch(78% 0.02 250);
  box-shadow: 0 4px 20px oklch(0% 0 0 / 0.06);
}
.sd-cluster:hover .sd-card-title {
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

/* Saat + tarih */
.sd-stamp {
  grid-area: stamp;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-family: var(--font-sans);
  color: var(--ink-3);
  border-bottom: 1px solid oklch(92% 0.008 250);
}
.sd-stamp svg {
  flex-shrink: 0;
  color: var(--ink-3);
}
.sd-stamp-time {
  font-size: 15px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.sd-stamp-date {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.sd-card-media {
  grid-area: media;
  position: relative;
  aspect-ratio: var(--img-ratio-card);
  margin: 0 0 0 18px;
  border-radius: 10px;
  overflow: hidden;
  background: oklch(94% 0.006 250);
  align-self: start;
  min-width: 0;
}
.sd-card-media .photo-slot {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: unset !important;
}
.sd-card-body {
  grid-area: body;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 2px 20px 0 0;
  align-self: start;
}
.sd-card-cat {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.sd-card-title {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.sd-card-sum {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 52em;
  display: block !important;
}

.sd-infeed {
  display: flex;
  justify-content: center;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}
.sd-infeed .ad-slot {
  width: 100%;
  max-width: 970px;
}

.sd-sentinel {
  height: 1px;
}
.sd-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ink-3);
}
.sd-status--end {
  border-top: 1px solid oklch(90% 0.006 250);
  margin-top: 8px;
}
.sd-status-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid oklch(90% 0.006 250);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: sd-spin 0.7s linear infinite;
}
@keyframes sd-spin {
  to { transform: rotate(360deg); }
}

.sd-leaderboard {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  max-width: 100%;
  overflow: hidden;
}

.sd-leaderboard .ad-slot {
  width: 970px;
  max-width: 100%;
  aspect-ratio: 970 / 250;
  height: auto;
}

.sd-billboard {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  max-width: 100%;
  overflow: hidden;
}

@media (max-width: 720px) {
  .sd-wrap {
    padding-top: 16px;
  }
  .sd-head {
    margin-bottom: 20px;
  }
  .sd-head-title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .sd-filter {
    font-size: 11px;
    padding: 8px 14px;
  }
  .sd-feed {
    gap: 22px;
  }
  .sd-cluster {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "stamp"
      "media"
      "body";
    row-gap: 0;
    column-gap: 0;
    padding: 0 0 16px;
    border-radius: 10px;
  }
  .sd-stamp {
    padding: 12px 14px;
    margin-bottom: 0;
    border-bottom: 1px solid oklch(92% 0.008 250);
  }
  .sd-card-media {
    width: auto;
    margin: 14px 14px 0;
    border-radius: 10px;
    aspect-ratio: var(--img-ratio-card);
  }
  .sd-card-body {
    padding: 14px 14px 0;
    gap: 8px;
  }
  .sd-card-title {
    font-size: 17px;
    line-height: 1.32;
  }
  .sd-card-sum {
    font-size: 14px;
    line-height: 1.5;
  }
  .sd-stamp-time {
    font-size: 14px;
  }
  .sd-stamp-date {
    font-size: 13px;
  }
}
