.home-preview-strip {
  margin: 28px 0 16px;
}

.home-preview-strip__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.home-preview-strip__header h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.home-preview-strip__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.home-preview-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-preview-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.home-preview-card__thumb {
  position: relative;
  width: 100%;
  min-height: 200px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #0a1115;
  background-image:
    linear-gradient(90deg, rgba(4, 10, 13, 0.18), rgba(4, 10, 13, 0.42)),
    var(--preview-template-image);
  background-size: auto 100%;
  background-position: var(--preview-list-position);
  background-repeat: no-repeat;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.home-preview-card__logos {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.home-preview-card__logos img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.4));
}

.home-preview-card__logos span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-preview-card__date {
  position: absolute;
  right: 10px;
  bottom: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.home-preview-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-preview-card__meta {
  order: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 12px;
}

.home-preview-card__meta span:first-child {
  color: #dc2626;
  font-weight: 700;
}

.home-preview-card__meta span:last-child {
  color: #64748b;
}

.home-preview-card h3 {
  order: 1;
  margin: 0 0 10px;
  color: var(--text-primary);
  font-size: 19px;
  line-height: 1.18;
  font-weight: 800;
}

.home-preview-card p {
  order: 2;
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.home-preview-card:hover h3 {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  .home-preview-strip__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  /* ── Header ─────────────────────────────────────── */
  .home-preview-strip {
    margin: 20px 0 10px;
  }

  .home-preview-strip__header h2 {
    font-size: 22px;
  }

  /* ── TODAY cards — full-width stacked, open layout ── */
  .home-preview-strip__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-preview-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    /* Breathing space: card does NOT go edge-to-edge */
    margin: 0 12px;
    /* No card-level rounding, shadow or box */
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
  }

  .home-preview-card__thumb {
    width: 100%;
    min-height: 185px;
    /* Only round the TOP corners of the thumbnail */
    border-radius: 12px 12px 0 0;
    background-position: var(--preview-list-mobile-position);
  }

  .home-preview-card__logos {
    gap: 12px;
  }

  .home-preview-card__logos img {
    width: 52px;
    height: 52px;
  }

  .home-preview-card__logos span {
    font-size: 13px;
  }

  /* Body: open typography, NO border, NO rounded corners, NO background box */
  .home-preview-card__body {
    display: block;
    padding: 14px 2px 0;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .home-preview-card__meta {
    order: 0;
    display: flex;
    gap: 6px;
    margin-top: 0;
    margin-bottom: 7px;
    font-size: 11px;
  }

  .home-preview-card h3 {
    order: 0;
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .home-preview-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary, #64748b);
  }

  /* ── FUTURE cards — horizontal rows with breathing space ── */
  .home-preview-strip__future-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
    /* Breathing space matches today cards */
    margin-left: 12px;
    margin-right: 12px;
  }

  .home-preview-card-small {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color, #e2e8f0);
  }

  .home-preview-card-small__thumb {
    min-height: 85px;
    border-radius: 10px;
    background-position: var(--preview-list-mobile-position);
  }

  .home-preview-card-small__logos img {
    width: 26px;
    height: 26px;
  }

  .home-preview-card-small__logos span {
    font-size: 10px;
  }

  .home-preview-card-small h3 {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .home-preview-card-small__meta {
    font-size: 11px;
    gap: 4px;
  }
}

/* =========================================================
   FUTURE PREVIEWS (SMALLER, HORIZONTAL LIST ON DESKTOP)
   ========================================================= */
.home-preview-strip__future-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.home-preview-card-small {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 0;
  text-decoration: none;
  color: inherit;
}

.home-preview-card-small__thumb {
  position: relative;
  min-height: 90px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #0a1115;
  background-image:
    linear-gradient(90deg, rgba(4, 10, 13, 0.2), rgba(4, 10, 13, 0.6)),
    var(--preview-template-image);
  background-size: auto 100%;
  background-position: var(--preview-list-position);
  background-repeat: no-repeat;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}

.home-preview-card-small__logos {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-preview-card-small__logos img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.home-preview-card-small__logos span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-preview-card-small__date {
  position: absolute;
  right: 6px;
  bottom: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.home-preview-card-small__body {
  min-width: 0;
}

.home-preview-card-small h3 {
  margin: 0 0 6px;
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 700;
}

.home-preview-card-small h3:hover {
  text-decoration: underline;
}

.home-preview-card-small__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}

.home-preview-card-small__meta span:first-child {
  color: #dc2626;
  font-weight: 700;
}

.home-preview-card-small__meta span:last-child {
  color: #64748b;
}

@media (max-width: 980px) {
  .home-preview-strip__future-grid {
    grid-template-columns: 1fr;
  }
}
