.temo-section {
  padding: 84px 0;
}

.temo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.temo-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px 34px 30px;
  box-shadow: var(--sh-sm);
  overflow: hidden;
}

.temo-quote {
  position: absolute;
  top: 6px;
  left: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(242, 138, 92, 0.28);
  pointer-events: none;
}

.temo-card blockquote {
  margin: 0 0 22px;
  border: 0;
  padding: 0;
  color: #4d4552;
  font-size: 1.04rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.temo-card blockquote p {
  margin: 0 0 0.6em;
}

.temo-card blockquote p:last-child {
  margin-bottom: 0;
}

.temo-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.temo-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.temo-author b {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.temo-role {
  display: block;
  color: var(--corail-d);
  font-size: 0.82rem;
  font-weight: 600;
}

@media (max-width: 700px) {
  .temo-grid { grid-template-columns: 1fr; }
  .temo-section { padding: 60px 0; }
}
