/* ═══ Partners / Alliances List Page ═══ */
.partners-list-page {
  color: #333;
  font-family: 'Ubuntu', 'Open Sans', sans-serif;
  line-height: 1.6;
}

.partners-list-page .pg-intro-body {
  max-width: 960px;
  margin: 0 auto;
}

.pl-container-wide {
  max-width: 1500px;
  width: 80%;
}

/* ── Partners Grid ── */
.pl-partners-section {
  background: #fff;
}

.pl-partners-subtitle {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #636363;
  margin-top: 16px;
}

.pl-partners-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.pl-category-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a212b;
  text-align: center;
  margin: 48px 0 24px;
}

.pl-category-title:first-child {
  margin-top: 0;
}

.pl-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto 16px;
}

.pl-logo-item {
  text-align: center;
  width: calc((100% - 4 * 12px) / 5);
}

.pl-logo-item a {
  display: block;
  text-decoration: none;
  color: #333;
  padding: 16px 8px;
  transition: transform 0.2s;
}

.pl-logo-item a:hover {
  transform: translateY(-3px);
  text-decoration: none;
}

.pl-logo-img {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  max-width: 180px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px;
}

.pl-logo-img img {
  max-height: 65px;
  max-width: 140px;
  object-fit: contain;
}

.pl-logo-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #888;
  color: #555;
  margin: 0;
}

.pl-partners-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── Single Testimonial (horizontal) ── */
.ts-single-section {
  background: #fff;
}

.ts-single-layout {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 0;
}

.ts-single-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 220px;
  padding: 24px 32px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.ts-single-person img {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}

.ts-single-name {
  font-size: 15px;
  font-weight: 700;
  color: #1a212b;
  display: block;
  margin-bottom: 4px;
}

.ts-single-position {
  font-size: 13px;
  color: #888;
  display: block;
}

.ts-single-quote-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  padding-left: 24px;
}

.ts-single-quote-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 28px;
  height: 180px;
  margin-top: 20px;
  padding: 3px 0;
  flex-shrink: 0;
}

.ts-single-quote-icon::before {
  content: '';
  position: absolute;
  top: 0;
  height: 68px;
  min-width: 2px;
  background-color: hsla(0, 0%, 68.7%, 0.2);
}

.ts-single-quote-icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  height: 68px;
  min-width: 2px;
  background-color: hsla(0, 0%, 68.7%, 0.2);
}

.ts-single-quote-icon-img {
  height: 20%;
  min-width: 26px;
  background-image: url('/assets/images/Quote-icon.svg');
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  margin: auto 0;
}

.ts-single-quote-body {
  flex: 1;
  padding-left: 24px;
}

.ts-single-quote-text {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 16px;
}

.ts-single-links a {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .ts-single-layout {
    flex-direction: column;
    text-align: center;
    padding: 32px 0;
  }

  .ts-single-person {
    flex: none;
    width: 100%;
    max-width: 280px;
  }

  .ts-single-quote-wrap {
    padding-left: 0;
    flex-direction: column;
    align-items: center;
  }

  .ts-single-quote-text {
    text-align: left;
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pl-container-wide {
    width: 90%;
  }
}

@media (max-width: 1024px) {
  .pl-logo-item {
    width: calc((100% - 3 * 12px) / 4);
  }
}

@media (max-width: 768px) {
  .pl-category-title {
    font-size: 22px;
    margin-top: 32px;
  }

  .pl-logo-item {
    width: calc((100% - 2 * 12px) / 3);
  }
}