.recommendations-head .lede {
  max-width: none;
}

.recommendations-section {
  padding-bottom: clamp(48px, 7vw, 88px);
}

.t-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.t-grid.masonry-ready {
  position: relative;
  display: block;
}

.t-grid.masonry-ready .t-card {
  position: absolute;
  margin: 0;
}

.t-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
  padding: 28px 30px 25px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--lift-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.t-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lift);
}

.t-card-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: inherit;
}

.t-card-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.t-quote {
  max-width: none;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.62;
}

.t-foot {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.t-avatar {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-tint);
  object-fit: cover;
}

.t-who {
  min-width: 0;
}

.t-name {
  margin: 0;
  color: var(--ink);
  font: 600 1.02rem var(--display);
}

.t-name::after {
  color: var(--primary);
  content: ' \2197';
  font: 600 0.78em var(--mono);
}

.t-role {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.4;
}

@media (max-width: 680px) {
  .t-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .t-card {
    padding: 24px 22px 22px;
  }
}
