.machine-section {
     /* padding-left: 100px; */
     /* padding: 100px; */
}

.machine-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

/* image box */
.machine-img {
 
}

.machine-img img {
  width: 100%;
  display: block;
  background: #fff;
  border-radius: 6px;
}

/* content */
.machine-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.machine-content h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 18px 0 8px;
  color:rgb(119, 119, 119);
}

.machine-content p {
  font-size: 15px;
  color: rgb(119, 119, 119);
  line-height: 1.6;
  margin-bottom: 4px;
}



/* ================= BASE ================= */
.machine-section {
  padding: 80px 0;
}

.machine-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.machine-item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: flex-start;
}

.machine-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .machine-item {
    grid-template-columns: 200px 1fr;
    gap: 25px;
  }

  .machine-content h3 {
    font-size: 18px;
  }

  .machine-content p {
    font-size: 14px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .machine-item {
    grid-template-columns: 1fr;   /* image top, content bottom */
    text-align: left;
  }

  .machine-img {
    max-width: 280px;
    margin: 0 auto;
  }

  .machine-content h3 {
    font-size: 17px;
    text-align: center;
  }

  .machine-content h5 {
    font-size: 14px;
  }

  .machine-content p {
    font-size: 14px;
  }
}
