.th-grid {
  display: grid;
  gap: var(--block-gap);
}

@media (min-width: 640px) {
  .th-grid { grid-template-columns: repeat(2, 1fr); }
}

.sh-hero-visual,
.bh-hero-visual {
  border-radius: var(--radius-card);
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
}

.th-animal-section {
  margin: 0;
}

.th-card {
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.th-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(33, 41, 38, 0.08);
}

.th-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-display-md);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.th-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1;
}

.th-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-chip);
  background: rgba(45, 75, 50, 0.08);
  color: var(--moss);
  margin-bottom: 0.35rem;
}

.claim-banner {
  padding: var(--block-gap) 1.1rem;
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 230, 184, 0.35) 100%);
  border: 1px solid rgba(199, 148, 46, 0.22);
  box-shadow: var(--shadow-card);
  font-size: 0.9375rem;
  color: var(--ink);
  margin: 0;
}

.claim-banner a { color: var(--forest); font-weight: 600; }

.th-card--feature {
  border-color: var(--border-moss);
}

.th-badge--now {
  background: rgba(45, 75, 50, 0.1);
  color: var(--forest);
}

.th-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.35rem;
  font-weight: 650;
  font-size: 0.875rem;
  color: var(--moss);
  text-decoration: none;
}

.th-link:hover { text-decoration: underline; }

section + section {
  margin-top: 0;
}
