/* ====================================================
   Gwynn Logistics — Homepage (front-page.php)
   ==================================================== */

/* Under-hero / Where Gwynn Fits section */
.under-hero {
  padding: var(--section-pad) var(--section-px);
  background: #ffffff;
}

/* Industries section */
.industries {
  padding: var(--section-pad) var(--section-px);
  background: var(--color-bg-section);
}

.industries .section-head {
  max-width: 880px;
  margin-bottom: 36px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.industry-card {
  min-height: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 0;
  border: 1px solid #e1e8f0;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(8,27,47,.08);
}

.industry-photo {
  height: 172px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #e8eef5;
}

.industry-card-body {
  padding: 24px 24px 26px;
}

.industry-card h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--color-text);
}

.industry-card p {
  color: var(--color-text-mid);
  line-height: 1.5;
  margin: 0;
  font-size: 15px;
}

/* Services section */
.services {
  padding: var(--section-pad) var(--section-px);
  background: #ffffff;
}

.services-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 38px;
  align-items: start;
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 18px 16px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #ffffff;
}

.service-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-red);
  margin-top: 3px;
  flex-shrink: 0;
}

.service-row h3 {
  margin: 0 0 5px;
  font-size: 20px;
  color: var(--color-text);
}

.service-row p {
  margin: 0;
  color: var(--color-text-mid);
  line-height: 1.45;
  font-size: 14px;
}

/* Why section (dark) */
.why {
  padding: var(--section-pad) var(--section-px);
  background: var(--color-navy-dark);
  color: #ffffff;
}

.why .section-title {
  color: #ffffff;
}

.why .section-text {
  color: var(--color-text-on-dark);
}

/* Responsive */
@media (max-width: 1100px) {
  .services-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .industry-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}
