/* =============================================
   OCS Testimonies Shortcode
   ============================================= */

.ocs-testimonies {
  display: grid;
  grid-template-columns: repeat(var(--testimony-columns, 2), 1fr);
  gap: 2rem;
  width: 77rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .ocs-testimonies {
    grid-template-columns: 1fr;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Card */
.ocs-testimony-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* Header : stars + quote */
.ocs-testimony-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.ocs-testimony-card__stars {
  display: flex;
  gap: 0.15rem;
}

.ocs-testimony-star {
  font-size: 1.25rem;
  color: #d1d5db;
  line-height: 1;
}

.ocs-testimony-star--filled {
  color: #F4A623;
}

.ocs-testimony-card__quote {
  font-size: 2.5rem;
  line-height: 1;
  color: #d1d5db;
  font-family: Georgia, serif;
}

/* Content */
.ocs-testimony-card__content p {
  font-style: italic;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}

/* Footer : author + role */
.ocs-testimony-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
}

.ocs-testimony-card__author {
  font-weight: 700;
  color: #0A4D0A;
  font-size: 0.95rem;
}

.ocs-testimony-card__role {
  color: #6b7280;
  font-size: 0.85rem;
}
