/**
 * IRP - Locations page (manufacturing section)
 * Template ref: about-intro (bar + title, prose)
 */

.locations-manufacturing {
  padding: 80px 16px;
  background: #fff;
}

.locations-manufacturing-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.locations-manufacturing-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.locations-manufacturing-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.locations-manufacturing-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.locations-manufacturing-right {
  order: -1;
}

.locations-manufacturing-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.locations-manufacturing-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 280px;
}

.locations-manufacturing-stats {
  background: linear-gradient(to bottom right, #eff6ff, #f8fafc);
  border: 1px solid #e0e7ff;
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 32px;
}

.locations-manufacturing-stat-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.locations-manufacturing-stat-desc {
  font-size: 1rem;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}

.locations-manufacturing-prose {
  max-width: 800px;
}

.locations-manufacturing-prose .about-intro-text {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.75;
  margin: 0 0 1.25em 0;
}

.locations-manufacturing-prose .about-intro-text:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .locations-manufacturing {
    padding: 80px 24px;
  }
  .locations-manufacturing-container {
    padding: 0 24px;
  }
  .locations-manufacturing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
  }
  .locations-manufacturing-right {
    order: 0;
    display: flex;
    min-height: 0;
  }
  .locations-manufacturing-image-wrap {
    height: 100%;
    min-height: 0;
    flex: 1;
  }
  .locations-manufacturing-image-wrap .locations-manufacturing-image {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .locations-manufacturing-stats {
    padding: 28px 32px;
    margin-bottom: 40px;
  }
  .locations-manufacturing-stat-title {
    font-size: 1.5rem;
  }
  .locations-manufacturing-stat-desc {
    font-size: 1.0625rem;
  }
}

@media (max-width: 767px) {
  .locations-manufacturing {
    padding: 48px 16px;
  }
  .locations-manufacturing-head {
    margin-bottom: 24px;
  }
  .locations-manufacturing-image {
    min-height: 240px;
  }
  .locations-manufacturing-stats {
    padding: 20px;
    margin-bottom: 28px;
  }
  .locations-manufacturing-stat-title {
    font-size: 1.25rem;
  }
  .locations-manufacturing-prose .about-intro-text {
    font-size: 1rem;
  }
}
