.spaceSec {  }

.spaceBg {
  background-color: ;
}

/* Layout */

.ts-inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.ts-track {
  width: 100%;
}

/* Slide */

.ts-slide {
  display: none;
  width: 100%;
  gap: 70px; /* changed from 35px to match awards grid */
  align-items: stretch;
}

.ts-slide.ts-active {
  display: flex;
}

/* LEFT: CONTENT (2/3) */

.ts-box {
  flex: 2;
  border-radius: 10px;
  padding: 32px 36px;
  display: flex;
  align-items: center;

  background-color: var(--ts-bg);
  transition: background-color 0.3s ease;
}

.ts-box:hover {
  background-color: var(--ts-bg-hover, var(--ts-bg));
}

/* CONTENT LAYOUT: ICON + TEXT */

.ts-content {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 60px;
  align-items: start;
}

.ts-quote-icon {
  width: 60px;
}

.ts-quote-icon svg {
  width: 160%;
  height: auto;
}

.ts-text {
  line-height: 1.6;
}

/* RIGHT: IMAGE (1/3) */

.ts-img {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  min-height: 260px;
}

.ts-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* DOTS */

.ts-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.ts-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #888888;
  border: none;
  padding: 0;
  appearance: none;
  cursor: pointer;
}

.ts-dot:hover,
.ts-dot:focus,
.ts-dot:active {
  outline: none;
  box-shadow: none;
  background: #bd91ce;
}

.ts-dot.ts-dot-active {
  background: #bd91ce;
  transform: scale(1.2);
}

.ts-dot:focus-visible {
  outline: none;
}

/* Responsive */

@media(max-width:1200px){
  .spaceSec {  }
}

@media(max-width:900px){
  .ts-slide {
    flex-direction: column;
    gap: 50px; /* keep consistent */
  }
}

  .ts-content {
    grid-template-columns: 50px 1fr;
  }
}

@media(max-width:767px){
  .spaceSec {  }
}