/* ============================================================
   TÜM SAYILAR SAYFASI — sayilar.css
   ============================================================ */

/* ── HEADER ─────────────────────────────────────────── */
.ts-header {
  padding: 100px 0 0;
}

.ts-header__inner {
  padding-bottom: 24px;
  border-bottom: 1px solid #e6e6e6;
}

.ts-header__title {
  font-family: 'Barlow', sans-serif;
  display: inline-block;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #1a1a1a;
  background: #ffed00;
  padding: 20px 25px 5px 25px;
  line-height: 1.2;

}

.ts-header__desc {
  font-size: 16px;
  color: #000000;
  margin: 0;
}

/* ── GRID SECTION ────────────────────────────────────── */
.ts-grid-section {
  padding: 40px 0 80px;
}

/* ── KART ────────────────────────────────────────────── */
.ts-card {
  display: block;
  text-decoration: none !important;
  color: inherit;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 28px;
  transition: box-shadow 0.2s;
}

.ts-card:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.14);
}

.ts-card__cover {
  position: relative;
  padding-bottom: 138%;   /* portre / dergi kapağı oranı */
  overflow: hidden;
  background: #f0f0f0;
}

.ts-card__cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ts-card:hover .ts-card__cover img { transform: scale(1.04); }

.ts-card__cover-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddd;
  font-size: 1.6rem;
  font-weight: 900;
  color: #aaa;
  letter-spacing: 0.1em;
}

.ts-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 25px;
}

.ts-card__label {
  font-size: 17px;
  font-weight: 400;
  color: #000;
  line-height: 1.3; 
  font-family: 'Barlow', sans-serif;
}

.ts-card__arrow {
  flex-shrink: 0;
  color: #bbb;
  transition: color 0.18s;
}

.ts-card:hover .ts-card__arrow { color: #000; }

/* Boş durum */
.ts-empty {
  padding: 56px 0;
  font-size: 0.95rem;
  color: #666;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 959px) {
  .ts-header { padding-top: 48px; }
  .ts-header__inner { flex-direction: column; gap: 14px; }
  .ts-grid-section { padding: 32px 0 56px; }
}

@media (max-width: 959px) {
  .ts-card { padding: 18px; }
}

@media (max-width: 639px) {
  .ts-header { padding-top: 32px; }
  .ts-header__title { font-size: 1.35rem; padding: 12px 16px 4px; }
  .ts-header__desc  { font-size: 0.875rem; }
  .ts-grid-section  { padding: 24px 0 40px; }
  .ts-card { padding: 12px; }
  .ts-card__footer { padding-top: 14px; gap: 6px; }
  .ts-card__label { font-size: 13px; line-height: 1.25; }
  .ts-card__arrow svg {
    width: 18px !important;
    height: 18px !important;
  }
}
