/* ============================================
   Sound Technologies - About: Content
   Mobile-first
   ============================================ */

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

.st-about-content-inner {
  max-width: var(--st-max-width);
  margin: 0 auto;
}

/* --- Content Block (text + image side by side) --- */
.st-about-content-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

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

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

/* --- Highlight Box --- */
.st-about-highlight {
  background: var(--st-light-bg);
  border-left: 3px solid var(--st-green);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin-top: 8px;
}

.st-about-highlight p {
  font-size: 1rem;
  color: var(--st-dark);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Image --- */
.st-about-image {
  border-radius: 6px;
  overflow: hidden;
}

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

/* --- Services (What We Do) --- */
.st-about-services {
  padding: 48px 20px;
  background: var(--st-light-bg);
}

.st-about-services-inner {
  max-width: var(--st-max-width);
  margin: 0 auto;
}

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

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

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

  .st-about-content-block {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  /* Reverse block: image left, text right */
  .st-about-content-block-reverse {
    direction: rtl;
  }

  .st-about-content-block-reverse > * {
    direction: ltr;
  }

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

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