.thoughts-page {
  margin-top: 2.5rem;
}
.thoughts-hero {
  margin-bottom: 2rem;
}
.thoughts-kicker {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #eefcf7;
  color: #15803d;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.thoughts-hero h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.08;
}
.thoughts-copy {
  max-width: 48rem;
  color: #4b5563;
}
.thoughts-empty {
  padding: 1.25rem;
  border-radius: 18px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #86efac;
}
.thoughts-list {
  display: grid;
  gap: 1rem;
}
.thought-card {
  padding: 1.35rem 1.4rem;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: 0 18px 45px rgba(15,23,42,0.05);
}
.thought-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  color: #64748b;
  font-size: 0.92rem;
}
.thought-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.thought-card__tags span {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 0.8rem;
}
.thought-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
  line-height: 1.25;
}
.thought-card__body {
  color: #334155;
}
.thought-card__link {
  display: inline-flex;
  margin-top: 1rem;
  color: #0f766e;
  font-weight: 600;
}
@media (max-width: 720px) {
  .thoughts-page {
    margin-top: 1.5rem;
  }
  .thought-card__meta {
    align-items: flex-start;
    flex-direction: column;
  }
}
