/* ===== Ekonomi — zigzag grid, standart görsel boyutu (16:9 + sabit satır yüksekliği) ===== */
.eko-sect {
  padding: 32px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.eko-sect-head { margin-bottom: 18px; }
.eko-cat-label::after { background: oklch(58% 0.14 65); }

.eko-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* Satır yükseklikleri sabit → tüm kartlar o satırda eşit; görseller 16:9 kırpım */
  grid-template-rows: 212px 212px;
  grid-template-areas:
    "lead1 lead1 u1    u2"
    "u3    u4    lead2 lead2";
  gap: 16px;
  align-items: stretch;
}

.eko-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 48px;
  height: 100%;
  touch-action: manipulation;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow:
    0 1px 2px rgba(15, 20, 35, 0.04),
    0 8px 20px -14px rgba(15, 20, 35, 0.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.eko-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 4px 14px -8px rgba(15, 20, 35, 0.14);
}

/* Görsel alanı: her kartta aynı oran, hücreyi doldurur */
.eko-card-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: var(--bg-3);
}
.eko-card-photo {
  position: absolute !important;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  border-radius: 0;
}
.eko-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s ease;
}
.eko-card:hover .eko-card-photo img { transform: scale(1.03); }

.eko-card-cat {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: oklch(48% 0.12 65);
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
}

.eko-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 26px 12px 12px;
  background: linear-gradient(180deg, transparent 0%, rgba(12, 10, 8, 0.85) 58%, rgba(12, 10, 8, 0.94) 100%);
  pointer-events: none;
}
.eko-card--lead .eko-card-body {
  padding: 32px 16px 14px;
}
.eko-card-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: #fff;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.eko-card--lead .eko-card-title {
  font-size: 15px;
  font-weight: 800;
  -webkit-line-clamp: 2;
}
.eko-card:hover .eko-card-title { opacity: 0.92; }

.eko-card-spot {
  font-family: var(--font-sans);
  font-size: 11.5px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.86);
  margin: 4px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1100px) {
  .eko-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 212px 212px 212px 212px;
    grid-template-areas:
      "lead1 lead1"
      "u1    u2"
      "u3    u4"
      "lead2 lead2";
  }
}

@media (max-width: 720px) {
  .eko-sect { padding: 22px 0; }
  .eko-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
    grid-template-areas:
      "lead1"
      "u1"
      "u2"
      "u3"
      "u4"
      "lead2";
    gap: 12px;
  }
  .eko-card--lead .eko-card-title { font-size: 16px; }
}
