.labor-overview {
  padding: 76px 0 84px;
  background:
    radial-gradient(circle at 50% 36%, rgba(226, 238, 255, 0.28), transparent 36%),
    #fff;
}

.labor-overview .overview-head {
  max-width: 850px;
}

.labor-overview .eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.labor-overview .sec-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.8px;
}

.labor-overview .lead {
  margin: 14px 0 0;
  color: #526178;
  font-size: 17px;
  line-height: 1.75;
}

.labor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.labor-card {
  --accent: #3d82e3;
  display: grid;
  grid-template-columns: minmax(190px, 46%) minmax(0, 1fr);
  align-items: center;
  min-height: 270px;
  padding: 20px 26px 20px 18px;
  border: 1px solid #e1e7ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.labor-card:nth-child(2) {
  --accent: #85b63d;
}

.labor-card:nth-child(3) {
  --accent: #38b7b1;
}

.labor-card:nth-child(4) {
  --accent: #5c96ea;
}

.labor-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.labor-visual img {
  display: block;
  width: 100%;
  max-width: 230px;
  height: 225px;
  object-fit: contain;
}

.labor-copy {
  min-width: 0;
  padding-left: 14px;
}

.labor-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.labor-copy h2 {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.35;
}

.labor-copy h2::after {
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 10px;
  background: var(--accent);
  content: "";
}

.labor-copy p {
  margin: 18px 0 0;
  color: #526178;
  font-size: 15px;
  line-height: 1.7;
}

.labor-overview .insight-link {
  display: grid;
  grid-template-columns: auto auto auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  margin-top: 30px;
  padding: 14px 26px;
  border: 1px solid #e4ebf5;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(35, 77, 130, 0.1);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.labor-overview .insight-link:hover {
  transform: translateY(-2px);
  border-color: #8bb7f0;
  box-shadow: 0 12px 30px rgba(35, 77, 130, 0.15);
}

.labor-overview .insight-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #438bea;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.labor-overview .insight-label {
  color: #438bea;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
}

.labor-overview .insight-divider {
  width: 1px;
  height: 25px;
  background: #cfd8e6;
}

.labor-overview .insight-title {
  color: #41516a;
  font-size: 15px;
}

.labor-overview .insight-arrow {
  color: #438bea;
  font-size: 30px;
  font-weight: 300;
}

@media (max-width: 900px) {
  .labor-card {
    grid-template-columns: minmax(150px, 42%) minmax(0, 1fr);
    padding: 16px;
  }

  .labor-visual img {
    height: 190px;
  }
}

@media (max-width: 700px) {
  .labor-overview {
    padding: 54px 0 62px;
  }

  .labor-overview .sec-title {
    font-size: 27px;
    letter-spacing: -0.6px;
  }

  .labor-overview .lead {
    font-size: 15px;
  }

  .labor-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }

  .labor-card {
    grid-template-columns: minmax(112px, 40%) minmax(0, 1fr);
    min-height: 190px;
    padding: 12px 14px 12px 8px;
    border-radius: 14px;
  }

  .labor-visual img {
    width: 100%;
    height: auto;
    max-height: 170px;
  }

  .labor-copy {
    padding-left: 10px;
  }

  .labor-num {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .labor-copy h2 {
    margin-top: 7px;
    font-size: 19px;
  }

  .labor-copy h2::after {
    width: 24px;
    margin-top: 7px;
  }

  .labor-copy p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.55;
  }

  .labor-overview .insight-link {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 16px;
  }

  .labor-overview .insight-label,
  .labor-overview .insight-divider {
    display: none;
  }

  .labor-overview .insight-title {
    font-size: 14px;
    line-height: 1.45;
  }
}
