@charset "UTF-8";
/* Maneuverable Testimonials — cards + panel read more
   Source: assets/scss/testimonials.scss — compile with:
   npx sass assets/scss/testimonials.scss assets/css/testimonials.css --style=expanded
*/
.t-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  width: 100%;
}
@media (min-width: 640px) {
  .t-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .t-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.t-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.75rem;
  min-height: 100%;
  margin: 0;
  padding: 1.75rem 1.5rem;
  border-radius: 10px;
  background: #000;
  color: #fff;
  cursor: pointer;
  text-align: left;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.t-card:hover, .t-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  outline: none;
}
.t-card:focus-visible {
  box-shadow: 0 0 0 2px #e8943a, 0 8px 24px rgba(0, 0, 0, 0.35);
}

.t-card__quote {
  margin: 0;
  flex: 1 1 auto;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.t-card__quote::before {
  content: "“";
}
.t-card__quote::after {
  content: "”";
}

.t-card__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}

.t-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #2a2a2a;
  color: #e8943a;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
}

.t-card__who {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.t-card__name {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}

.t-card__role {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.3;
  color: #888;
  white-space: pre-line;
}

/* Hidden CPT panels — Breakdance aside can reveal / clone by slug */
.t-testimonial-panels {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.t-testimonial-panel {
  color: inherit;
}

.t-testimonial-panel__header {
  margin: 0 0 1rem;
}

.t-testimonial-panel__title {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.t-testimonial-panel__cred {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #888;
  white-space: pre-line;
}

/* Read more (modal / aside body) */
.t-readmore {
  position: relative;
}

.t-readmore__content {
  overflow: hidden;
}

.t-readmore.is-collapsed .t-readmore__content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--t-readmore-lines, 8);
  overflow: hidden;
}

.t-readmore__toggle {
  display: inline-flex;
  margin-top: 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  color: #e8943a;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.t-readmore__toggle:hover, .t-readmore__toggle:focus-visible {
  color: #f0a95a;
  outline: none;
}
.t-readmore__toggle[hidden] {
  display: none !important;
}

/* Plugin-owned modal */
body.t-modal-open {
  overflow: hidden;
}

.t-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.t-modal[hidden] {
  display: none !important;
}

.t-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.t-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  column-gap: 1rem;
  row-gap: 1.25rem;
  width: min(52rem, 100%);
  max-height: min(85vh, 36rem);
  padding: 2.25rem 1.5rem 1.5rem;
  border-radius: 4px;
  background: #fff;
  color: #1a1a1a;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.t-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222;
  cursor: pointer;
}
.t-modal__close:hover, .t-modal__close:focus-visible {
  color: #000;
  outline: none;
}

.t-modal__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid #d0d0d0;
  border-radius: 50%;
  background: #fff;
  color: #222;
  cursor: pointer;
  align-self: center;
}
.t-modal__nav:hover, .t-modal__nav:focus-visible {
  border-color: #999;
  outline: none;
}
.t-modal__nav--prev {
  grid-column: 1;
  grid-row: 1/span 2;
}
.t-modal__nav--next {
  grid-column: 3;
  grid-row: 1/span 2;
}

.t-modal__body {
  grid-column: 2;
  grid-row: 1/span 2;
  min-width: 0;
  max-height: min(60vh, 24rem);
  overflow: auto;
  padding: 0 0.25rem;
}
.t-modal__body .t-testimonial-panel__header {
  margin: 0 0 1rem;
}
.t-modal__body .t-testimonial-panel__title {
  margin: 0;
  padding-right: 1.5rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0b1c2c;
}
.t-modal__body .t-testimonial-panel__cred {
  display: none;
}
.t-modal__body .t-readmore__content {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #2a2a2a;
}
.t-modal__body .t-readmore__content p {
  margin: 0 0 1em;
}
.t-modal__body .t-readmore__content p:last-child {
  margin-bottom: 0;
}
.t-modal__body .t-readmore__toggle {
  color: #0b1c2c;
}
.t-modal__body .t-readmore__toggle:hover, .t-modal__body .t-readmore__toggle:focus-visible {
  color: #000;
}

.t-modal__counter {
  grid-column: 1/-1;
  grid-row: 3;
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 0.95rem;
  line-height: 1;
  text-align: center;
  color: #9a9a9a;
}

@media (max-width: 639px) {
  .t-modal__dialog {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 0.75rem;
    row-gap: 1rem;
    padding: 2.5rem 1.1rem 1.1rem;
  }
  .t-modal__body {
    grid-column: 1/-1;
    grid-row: 1;
    max-height: 55vh;
  }
  .t-modal__nav--prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
  .t-modal__nav--next {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }
  .t-modal__counter {
    grid-column: 1/-1;
    grid-row: 3;
  }
}

/*# sourceMappingURL=testimonials.css.map */
