.company-section {
  background: #f2f7fb;
  padding: 72px 0 86px;
}
.company-label {
  display: inline-flex;
  min-width: 142px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #0e75b5;
  color: #fff;
  font: 700 13px Outfit;
}
.company-title {
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -2.5px;
  line-height: 1.15;
  margin: 15px 0 7px;
}
.company-subtitle {
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 30px;
}
.company-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 70px;
  align-items: center;
}
.timeline {
  position: relative;
  padding-left: 42px;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 11px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: #c7dce9;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 24px;
  padding: 15px 0 25px;
}
.timeline-item:before {
  content: "";
  position: absolute;
  left: -39px;
  top: 24px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #0e75b5;
  box-shadow: 0 0 0 5px #f2f7fb;
}
.timeline-item.orange:before {
  background: #f5a21b;
}
.timeline-item.green:before {
  background: #00a984;
}
.timeline-year {
  font-size: 18px;
  font-weight: 800;
  color: #0e69a7;
}
.timeline-item.orange .timeline-year {
  color: #e99600;
}
.timeline-item.green .timeline-year {
  color: #009b79;
}
.timeline-copy h3 {
  font-size: 23px;
  letter-spacing: -1px;
  margin: 0 0 8px;
}
.timeline-copy p {
  margin: 0;
  color: var(--muted);
}
.company-visual img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: 67% center;
  border-radius: 3px;
}
.company-visual strong {
  display: block;
  text-align: center;
  font-size: 23px;
  margin-top: 12px;
}
.company-statement {
  margin-top: 36px;
  padding: 12px 25px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 850px) {
  .company-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .company-visual {
    order: -1;
  }
  .company-visual img {
    height: 280px;
  }
  .company-section {
    padding: 55px 0 70px;
  }
}
@media (max-width: 540px) {
  .company-subtitle {
    font-size: 16px;
  }
  .timeline {
    padding-left: 32px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 3px;
    padding-bottom: 28px;
  }
  .timeline-item:before {
    left: -29px;
  }
  .timeline-copy h3 {
    font-size: 20px;
  }
  .company-visual img {
    height: 220px;
  }
  .company-statement {
    text-align: left;
    font-size: 16px;
  }
}
