/* =============================================
   Our History — ACE Design System
   Full-width section with quotes and collage image
   Padding and max-width are controlled by parent section-container.
   ============================================= */

.our-history {
  /* No vertical padding here — section-container controls spacing */
}

/* Text content wrapper — spans full width, no centering */
.our-history__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* --- Eyebrow --- */
.our-history__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0056A6;
}

/* --- Title --- */
.our-history__title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.our-history__title--blue {
  color: #0056A6;
}

.our-history__title--dark {
  color: #1a1a1a;
}

.our-history__title--orange {
  color: #E87722;
}

/* --- Body --- */
.our-history__body {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
}

.our-history__body::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e5e7eb;
  margin-bottom: 1.5rem;
}

/* --- Quote styling inside body --- */
.our-history__body em,
.our-history__body i {
  font-style: italic;
  color: #1a1a1a;
}

.our-history__body p {
  margin: 0 0 1rem;
}

.our-history__body p:last-child {
  margin-bottom: 0;
}

/* --- Media (full width) --- */
.our-history__media {
  width: 100%;
  margin-top: 2rem;
}

.our-history__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* =============================================
   Responsive — Tablet & Desktop
   ============================================= */

@media (min-width: 768px) {
  .our-history__title {
    font-size: 2.5rem;
  }

  .our-history__body {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  .our-history__title {
    font-size: 3rem;
  }
}
