.ts-features-v2 {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.ts-features-v2__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.ts-features-v2__subtitle {
  font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin: 0 0 0.5rem;
}

.ts-features-v2__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.2;
}

.ts-features-v2__block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.ts-features-v2__block:last-child {
  margin-bottom: 0;
}

.ts-features-v2__media {
  order: -1;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.ts-features-v2__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform var(--transition-smooth);
}

.ts-features-v2__media:hover .ts-features-v2__img {
  transform: scale(1.03);
}

.ts-features-v2__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ts-features-v2__block-title {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.25;
}

.ts-features-v2__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.ts-features-v2__list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: clamp(0.9375rem, 1.8vw, 1rem);
  line-height: 1.6;
  color: var(--color-text-muted);
}

.ts-features-v2__check {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 0.2em;
}

@media (min-width: 768px) {
  .ts-features-v2__block {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }

  .ts-features-v2__media {
    order: 0;
  }

  .ts-features-v2__block--reverse .ts-features-v2__media {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .ts-features-v2__block {
    gap: 4rem;
    margin-bottom: 5rem;
  }
}
