.testimonies-loadmore {
  text-align: center;
  margin-top: var(--space-3xl);
}

.testimony-submit-section {
  background: var(--color-bg-alt);
}

.testimony-submit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.testimony-submit-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimony-submit-note {
  margin-top: var(--space-md);
}

.testimony-submit-verse {
  background: transparent;
  padding: 0;
  text-align: left;
  margin-top: var(--space-xl);
}

.testimony-submit-verse .verse-text {
  color: var(--verse-color);
  font-size: 1rem;
}

.testimony-submit-verse .verse-ref {
  color: var(--verse-color);
}

.testimony-form-container {
  padding: var(--space-xl);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.testimony-form-container h3 {
  margin-bottom: var(--space-lg);
}

.testimony-textarea {
  min-height: 150px;
  width: 100%;
  padding: var(--space-md);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  resize: vertical;
}

.testimony-bottom-verse {
  margin: 0;
  border-radius: 0;
}

.testimony-cta {
  background: var(--color-primary);
}

.testimony-cta-eyebrow {
  color: var(--color-accent-light);
  text-align: center;
}

.testimony-cta h2 {
  color: white;
}

.testimony-cta p {
  color: rgba(255,255,255,0.85);
}


@media (max-width: 1024px) {
  .testimonies-grid {
    gap: var(--space-lg);
  }
  .testimony-submit-grid {
    gap: var(--space-2xl);
  }
}

@media (max-width: 880px) {
  .testimonies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimony-submit-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .testimony-submit-left {
    text-align: center;
  }
  .testimony-submit-verse {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .testimonies-loadmore {
    margin-top: var(--space-2xl);
  }
  .testimony-submit-left h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .testimonies-grid {
    grid-template-columns: 1fr;
  }
  .testimony-card {
    padding: var(--space-xl);
  }
  .testimony-text {
    font-size: 0.9rem;
  }
  .testimony-form-container {
    padding: var(--space-lg);
  }
  .testimony-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .testimony-cta .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .testimony-card::before {
    font-size: 3rem;
    top: -0.2rem;
    left: 1rem;
  }
  .testimony-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .testimony-author-info strong {
    font-size: 0.85rem;
  }
  .testimony-author-info span {
    font-size: 0.7rem;
  }
  .testimony-submit-verse .verse-text {
    font-size: 0.9rem;
  }
  .testimony-textarea {
    min-height: 120px;
  }
}