/* ===== Teknoloji — alt metinli kart ızgarası (16:9 standart kırpım) ===== */
.tekno-sect {
  padding: 32px 0;
  background: oklch(97.5% 0.012 240);
  border-top: 1px solid var(--line);
}
.tekno-sect-head { margin-bottom: 18px; }
.tekno-cat-label { font-size: 20px; text-decoration: none; color: inherit; }
.tekno-cat-label:hover { color: oklch(46% 0.14 220); }
.tekno-cat-label::after { background: oklch(56% 0.16 220); }

.tekno-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "l1 r1"
    "l2 r2";
  gap: 16px;
  align-items: stretch;
}

.tekno-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 48px;
  touch-action: manipulation;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid oklch(91% 0.012 240);
  box-shadow:
    0 1px 2px rgba(15, 20, 35, 0.04),
    0 8px 20px -14px rgba(15, 20, 35, 0.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.tekno-card:hover {
  transform: translateY(-2px);
  border-color: oklch(82% 0.04 220);
  box-shadow:
    0 4px 14px -8px rgba(15, 20, 35, 0.12);
}

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

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

.tekno-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 14px 14px;
  flex: 1;
  min-width: 0;
}
.tekno-card--lead .tekno-card-body {
  padding: 14px 16px 16px;
}

.tekno-card-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.32;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .15s ease;
}
.tekno-card--lead .tekno-card-title {
  font-size: 15px;
  font-weight: 800;
  -webkit-line-clamp: 2;
}
.tekno-card:hover .tekno-card-title { color: oklch(46% 0.14 220); }

.tekno-card-summary {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 720px) {
  .tekno-sect { padding: 22px 0; }
  .tekno-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "l1"
      "r1"
      "l2"
      "r2";
    gap: 12px;
  }
  .tekno-card--lead .tekno-card-title { font-size: 16px; }
}
