/* Keep the verified white COSMO mark visible on the white logo grid. */
.logo-grid .logo-cell > img[src$="official-64e99dce88.png"] {
  aspect-ratio: 4 / 1;
  height: auto;
  background-color: #2268de;
}

/* Native customer-feedback copy; chat images are supplementary and never upscaled. */
.training-count-value {
  display: inline-grid;
  grid-template-areas: "count";
  font-variant-numeric: tabular-nums;
}
.training-count-final,
.training-count-current {
  grid-area: count;
  text-align: right;
  white-space: nowrap;
}
.training-count-final { visibility: hidden; }

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: start;
  gap: clamp(24px, 4vw, 64px);
}
.feedback-quotes {
  display: grid;
  gap: clamp(14px, 2vw, 26px);
}
.feedback-quote {
  margin: 0;
  padding: clamp(22px, 3vw, 40px);
  border-radius: 12px;
  background: #eef4ff;
  color: #172740;
}
.feedback-quote p {
  margin: 0;
  font-size: clamp(21px, 2.7vw, 36px);
  line-height: 1.5;
  letter-spacing: -.025em;
}
.feedback-quote cite {
  display: block;
  margin-top: 16px;
  color: #5a6e85;
  font-size: 14px;
  font-style: normal;
}
.feedback-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.feedback-chat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
}
.feedback-chat {
  min-width: 0;
  margin: 0;
}
.feedback-chat .media {
  display: grid;
  place-items: center;
  background: transparent;
}
.feedback-chat .media button {
  width: 100%;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}
.feedback-chat .media img {
  display: block;
  width: auto;
  max-width: min(100%, 302px);
  height: auto;
  max-height: 78svh;
  margin-inline: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #0b0d13;
}
.feedback-chat figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.lightbox-image > img[src*="/feedback/chat-"] {
  width: auto;
  max-width: min(100%, 302px);
  height: auto;
  max-height: 78svh;
  object-fit: contain;
}
@media (max-width: 900px) {
  .feedback-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .feedback-chat-grid { grid-template-columns: 1fr; gap: 16px; }
  .feedback-chat .media img { max-height: 78svh; }
  .feedback-note { font-size: 14px; }
}

/* The full-profile page uses the same native copy and only redacted screenshots. */
.client-feedback-page { background: #fcfdff; }
.client-feedback-page .page-heading { top: 12%; }
.client-feedback-page .page-heading h2 { font-size: 4.1cqw; }
.client-feedback-page .client-feedback-layout {
  position: absolute;
  inset: 28% 4.4% 9%;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr);
  align-items: center;
  gap: 3%;
}
.client-feedback-page .client-feedback-quotes {
  display: grid;
  gap: 1.35cqw;
}
.client-feedback-page .client-feedback-quote {
  margin: 0;
  padding: 1.7cqw;
  border-radius: .9cqw;
  background: #eef4ff;
  color: #172740;
}
.client-feedback-page .client-feedback-quote p {
  margin: 0;
  font-size: 2.05cqw;
  line-height: 1.45;
}
.client-feedback-page .client-feedback-quote cite {
  display: block;
  margin-top: .9cqw;
  color: #5a6e85;
  font-size: 1.08cqw;
  font-style: normal;
}
.client-feedback-page .client-feedback-note {
  margin: .25cqw 0 0;
  color: #5a6e85;
  font-size: 1.03cqw;
  line-height: 1.55;
}
.client-feedback-page .client-feedback-chats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 1.2cqw;
}
.client-feedback-page .client-feedback-chat { min-width: 0; margin: 0; }
.client-feedback-page .client-feedback-chat img {
  display: block;
  width: auto;
  max-width: min(100%, 302px);
  max-height: 36cqw;
  height: auto;
  margin-inline: auto;
  object-fit: contain;
  border-radius: .7cqw;
  background: #0b0d13;
}
.client-feedback-page .client-feedback-chat figcaption {
  margin-top: .7cqw;
  color: #5a6e85;
  font-size: 1cqw;
  text-align: center;
}
@media (max-width: 600px) {
  .client-feedback-page .client-feedback-layout {
    inset: 28% 4.4% 8%;
    gap: 2cqw;
  }
  .client-feedback-page .client-feedback-chats { gap: .8cqw; }
  .client-feedback-page .client-feedback-chat img { max-height: 36cqw; }
}
