

/* ===== Whole Section ===== */

.semiconductor-processing-section {
  width: 100%;
  margin: 45px auto;
  box-sizing: border-box;
}


/* ===== Title ===== */

.semiconductor-processing-heading {
  text-align: center;
  margin-bottom: 30px;
}

.semiconductor-processing-heading h2 {
  margin: 0 0 12px 0;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
  color: #1a1a1a;
}

.semiconductor-processing-heading p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #666666;
}


/* ===== Table Container ===== */

.semiconductor-table-wrap {
  width: 100%;
  overflow-x: auto;
}


/* ===== Table ===== */

.semiconductor-processing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  background: #ffffff;
  font-family: inherit;
  font-size: 15px;
  color: #444444;
}


/* Column Width */

.semiconductor-processing-table th:nth-child(1),
.semiconductor-processing-table td:nth-child(1) {
  width: 25%;
}

.semiconductor-processing-table th:nth-child(2),
.semiconductor-processing-table td:nth-child(2) {
  width: 33%;
}

.semiconductor-processing-table th:nth-child(3),
.semiconductor-processing-table td:nth-child(3) {
  width: 42%;
}


/* ===== Header ===== */

.semiconductor-processing-table th {
  background: #19558e;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  font-weight: 600;
  padding: 16px 18px;
  border: 1px solid #d7e0e8;
}


/* ===== Table Cells ===== */

.semiconductor-processing-table td {
  text-align: center;
  vertical-align: middle;
  padding: 16px 18px;
  line-height: 1.7;
  border: 1px solid #d7e0e8;
}


/* Alternate Row Background */

.semiconductor-processing-table tbody tr:nth-child(even) {
  background: #f6f8fa;
}

.semiconductor-processing-table tbody tr:nth-child(odd) {
  background: #ffffff;
}


/* Hover */

.semiconductor-processing-table tbody tr:hover {
  background: #f0f5f9;
}


/* ===== Mobile ===== */

@media (max-width: 768px) {

  .semiconductor-processing-section {
    margin: 35px auto;
  }

  .semiconductor-processing-heading {
    margin-bottom: 22px;
    padding: 0 15px;
  }

  .semiconductor-processing-heading h2 {
    font-size: 25px;
  }

  .semiconductor-processing-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .semiconductor-processing-table {
    min-width: 720px;
    font-size: 14px;
  }

  .semiconductor-processing-table th,
  .semiconductor-processing-table td {
    padding: 13px 12px;
  }

}

