/* =========================
   ABOUT HERO BANNER
========================= */

.robotics-about-hero {
  padding: 20px;
}

/* banner card */
.robotics-about-hero-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #f3f3f3;
  width: 100%;
  height: 500px;
}

/* background image */
.robotics-about-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 0.35;
}

/* overlay */
.robotics-about-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* label */
.robotics-about-hero-label {
  font-family: "f3";
  color: #ff5a3c;
  font-size: 26px;
  margin-bottom: 10px;
}

/* title */
.robotics-about-hero-title {
  font-family: "f4";
  font-size: 38px;
  max-width: 700px;
  line-height: 1.2;
}

/* description bubble */
.robotics-about-hero-desc {
  font-family: "f1";
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 20px;
  max-width: 520px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {


  .robotics-about-hero-title {
    font-size: 26px;
  }

  .robotics-about-hero-desc {
    font-size: 14px;
  }
}


/* =========================
   ABOUT INFO SECTION
========================= */

.robotics-about-info {
  padding: 70px 0;
}

/* chip */
.robotics-about-info-chip span {
  font-family: "f3";
  background: #ededed;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
}

/* title */
.robotics-about-info-title {
  font-family: "f4";
  font-size: 44px;
  max-width: 600px;
  margin: 20px 0;
  line-height: 1.2;
}

/* description */
.robotics-about-info-text {
  font-family: "f1";
  color: #7a7a7a;
  max-width: 500px;
  margin-bottom: 40px;
}

/* image */
.robotics-about-info-image img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

/* responsive */
@media (max-width: 768px) {
  .robotics-about-info-title {
    font-size: 28px;
  }

  .robotics-about-info-text {
    font-size: 14px;
  }
}


/* =========================
   STORY / VISION / MISSION
========================= */

.robotics-story-section {
  padding: 10px 0;
}

.robotics-story-row {
  margin-bottom: 80px;
}

/* chip */
.robotics-story-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ededed;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: "f3";
  margin-bottom: 14px;
}

.robotics-story-chip i {
  color: #ff5a3c;
}

/* title */
.robotics-story-title {
  font-family: "f4";
  font-size: 32px;
  margin-bottom: 14px;
}

/* text */
.robotics-story-text {
  font-family: "f1";
  color: #7a7a7a;
  width: 100%;
}

/* list */
.robotics-story-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.robotics-story-list li {
  font-family: "f1";
  margin-bottom: 10px;
  position: relative;
}



/* illustration */
.robotics-story-illustration {
  width: 70%;
  opacity: 0.6;
}

/* responsive */
@media (max-width: 992px) {
  .robotics-story-row {
    text-align: center;
  }

  .robotics-story-text {
    margin: auto;
  }

  .robotics-story-illustration {
    width: 60%;
    margin-top: 20px;
  }
}


.robotics-story-section-title {
  font-family: "f4";
  font-size: 26px;
  margin: 6px 0 12px;
}