/* ===== Yeni kategori görünüm alternatifleri (liste+spot, üçlü hero, yığın, galeri) ===== */
.home-alt-sect {
  padding: 28px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.home-alt-head {
  margin-bottom: 20px;
  border-bottom: 1px solid #2b6cb0;
  padding-bottom: 10px;
}

.home-alt-cat-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  color: #1a5fb4;
  text-decoration: none;
  line-height: 1.15;
}

.home-alt-cat-label:hover {
  color: #0d47a1;
}

/* Liste + spot */
.home-alt-list-spot {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.home-alt-list-spot__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--line);
  padding-right: 24px;
}

.home-alt-list-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.home-alt-list-row__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
}

.home-alt-list-row__photo,
.home-alt-list-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-alt-list-row__title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 6px;
}

.home-alt-list-row__spot {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home-alt-spot-card {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.home-alt-spot-card__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 16px;
  background: var(--bg-2);
}

.home-alt-spot-card__photo,
.home-alt-spot-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-alt-spot-card__title {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 12px;
  color: var(--ink);
}

.home-alt-spot-card__spot {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  max-width: 92%;
  align-self: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* Hero kart (ortak) */
.home-alt-hero-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.home-alt-hero-card__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 12px;
  background: var(--bg-2);
}

.home-alt-hero-card__photo,
.home-alt-hero-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-alt-hero-card__title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--ink);
}

.home-alt-hero-card__spot {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-2);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* Üçlü hero + rail */
.home-alt-triple-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-alt-triple-rail__rail {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.home-alt-rail-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
}

.home-alt-rail-row:last-child {
  border-bottom: none;
}

.home-alt-rail-row__title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--ink);
}

.home-alt-rail-row__spot {
  font-size: 12px;
  line-height: 1.4;
  color: var(--ink-2);
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.home-alt-rail-row__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-2);
}

.home-alt-rail-row__photo,
.home-alt-rail-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Yığın + çift hero */
.home-alt-stack-dual {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.05fr) minmax(0, 1.05fr);
  gap: 24px;
}

.home-alt-stack-dual__stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-right: 1px solid var(--line);
  padding-right: 20px;
}

.home-alt-stack-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--line);
}

.home-alt-stack-row:last-child {
  border-bottom: none;
}

.home-alt-stack-row__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
}

.home-alt-stack-row__photo,
.home-alt-stack-row__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-alt-stack-row__title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 6px;
  color: var(--ink);
}

.home-alt-stack-row__spot {
  font-size: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--ink-2);
  margin: 0;
}

/* Galeri şeridi */
.home-alt-gallery-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.home-alt-gallery-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  padding: 0 14px;
  border-right: 1px solid var(--line);
}

.home-alt-gallery-card:first-child {
  padding-left: 0;
}

.home-alt-gallery-card:last-child {
  border-right: none;
  padding-right: 0;
}

.home-alt-gallery-card__media {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin-bottom: 10px;
  background: var(--bg-2);
}

.home-alt-gallery-card__photo,
.home-alt-gallery-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-alt-gallery-card__title {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .home-alt-list-spot,
  .home-alt-triple-rail,
  .home-alt-stack-dual {
    grid-template-columns: 1fr;
  }

  .home-alt-list-spot__list {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }

  .home-alt-triple-rail__rail {
    border-left: none;
    padding-left: 0;
  }

  .home-alt-stack-dual__stack {
    border-right: none;
    padding-right: 0;
  }

  .home-alt-gallery-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .home-alt-gallery-card {
    border-right: none;
    padding: 0;
  }
}

@media (max-width: 640px) {
  .home-alt-gallery-strip {
    grid-template-columns: 1fr;
  }

  .home-alt-list-row,
  .home-alt-stack-row {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}
