/* ============================================================
   LdF Strategic Design — Thoughts index styles
   assets/css/thoughts.css
   Loaded by thoughts.php only. Depends on ldf-system.css tokens.
   ============================================================ */


/* ── Hero ───────────────────────────────────────────────── */

.thoughts-hero {
  padding-top: 146px;
  padding-bottom: 80px;
}


/* ── Card grid ──────────────────────────────────────────── */

.thoughts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
}

.thought-card {
  display: block;
  text-decoration: none;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.thought-card:hover {
  background: var(--active-bg);
}


/* ── Card image ─────────────────────────────────────────── */

.thought-card__image {
  width: 100%;
  overflow: hidden;
  background: var(--linen);
  display: block;
}

.thought-card__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.thought-card:hover .thought-card__image img {
  transform: scale(1.03);
}


/* ── Card body ──────────────────────────────────────────── */

.thought-card__body {
  padding: 32px 36px 40px;
  border-top: 1px solid var(--divider);
}

.thought-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.thought-card__topic {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.20em;
}

.thought-card__date {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.thought-card__title {
  font-family: 'Libre Baskerville', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.25;
  margin-bottom: 16px;
  text-wrap: pretty;
  transition: color 0.2s;
}

.thought-card:hover .thought-card__title {
  color: var(--orange);
}

.thought-card__excerpt {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.7;
  margin: 0;
  max-width: none;
}


/* ── Empty state ────────────────────────────────────────── */

.thoughts-empty {
  padding: 80px 0;
  color: var(--mid-grey);
}


/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 768px) {
  .thoughts-hero {
    padding-top: 80px;
    padding-bottom: 48px;
  }

  .thoughts-grid {
    grid-template-columns: 1fr;
    gap: 2px;
    margin-top: 40px;
  }

  .thought-card__body {
    padding: 24px var(--outer-pad-mob) 32px;
  }

  .thought-card__title {
    font-size: 19px;
  }
}
