/* =========================================================
   TRUSTWORK - About Section
   Row class: about-trustwork
   ========================================================= */

.about-trustwork {
  margin: 24px 0 36px;
  padding: 22px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid #eef0f3;
  border-radius: 18px;
}

/* Section title */
.about-trustwork h2 {
  text-align: left;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 22px;
  line-height: 1.15;
  letter-spacing: -0.3px;
  position: relative;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
}

.about-trustwork h2::after {
  content: "";
  display: block;
  width: 78px;
  height: 4px;
  margin-top: 10px;
  background: #d71920;
  border-radius: 999px;
}

/* Constrain text width for readability */
.about-trustwork .field,
.about-trustwork .text-content,
.about-trustwork .clearfix,
.about-trustwork .field__item,
.about-trustwork .content {
  max-width: 980px;
}

/* Paragraph styling */
.about-trustwork p {
  color: #374151;
  font-size: 1.04rem;
  line-height: 1.8;
  margin: 0 0 22px;
}

/* Lead paragraph */
.about-trustwork p:first-of-type {
  font-size: 1.12rem;
  line-height: 1.85;
  color: #1f2937;
}

/* Strong text */
.about-trustwork strong {
  color: #111827;
  font-weight: 700;
}

/* Highlight the philosophy line */
.about-trustwork p:has(strong) {
  background: #fff8f8;
  border-left: 4px solid #d71920;
  padding: 14px 16px;
  border-radius: 10px;
}

/* Better spacing on mobile */
@media (max-width: 767px) {
  .about-trustwork {
    padding: 16px 14px;
    margin: 16px 0 24px;
    border-radius: 14px;
  }

  .about-trustwork p {
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }

  .about-trustwork p:first-of-type {
    font-size: 1.03rem;
  }
}