/* ============================================
   Sound Technologies - Home: About Strip
   Mobile-first
   ============================================ */

.st-home-about {
  padding: 48px 20px;
  background: var(--st-white);
}

.st-home-about-inner {
  max-width: var(--st-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}

/* --- Text column --- */
.st-home-about-text h2 {
  font-family: var(--st-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--st-navy);
  margin-bottom: 20px;
}

.st-home-about-text p {
  font-size: 1rem;
  color: var(--st-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.st-home-about-text .st-btn {
  margin-top: 8px;
}

/* --- Side column (image + testimonial) --- */
.st-home-about-image {
  border-radius: 6px;
  overflow: hidden;
}

.st-home-about-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: #ddd;
}

.st-home-about-testimonial {
  background: var(--st-light-bg);
  border-left: 3px solid var(--st-green);
  border-radius: 0 6px 6px 0;
  padding: 20px 24px;
  margin-top: 16px;
}

.st-home-about-quote {
  font-size: 0.95rem;
  color: var(--st-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 10px;
}

.st-home-about-source {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--st-navy);
  font-style: normal;
}

/* Tablet */
@media (min-width: 600px) {
  .st-home-about {
    padding: 60px 30px;
  }

  .st-home-about-image img {
    height: 280px;
  }
}

/* Desktop */
@media (min-width: 960px) {
  .st-home-about {
    padding: 80px 30px;
  }

  .st-home-about-inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }

  .st-home-about-text h2 {
    font-size: 1.75rem;
  }

  .st-home-about-image img {
    height: 300px;
  }
}
