.tool-article table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 22px 0 30px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(22, 42, 35, 0.045);
  line-height: 1.65;
}

.tool-article thead th {
  background: #eef1e9;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  letter-spacing: 0.02em;
}

.tool-article th,
.tool-article td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.tool-article tbody tr:last-child td {
  border-bottom: 0;
}

.tool-article tbody tr:nth-child(even) td {
  background: rgba(244, 242, 235, 0.48);
}

.tool-article tbody tr:hover td {
  background: #f7faef;
}

.tool-article td:first-child,
.tool-article th:first-child {
  font-weight: 700;
  color: var(--ink);
}

@media (max-width: 640px) {
  .tool-article table {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .tool-article table thead {
    display: none;
  }

  .tool-article table tbody,
  .tool-article table tr,
  .tool-article table td {
    display: block;
    width: 100%;
  }

  .tool-article table tr {
    margin: 0 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 22px rgba(22, 42, 35, 0.04);
    overflow: hidden;
  }

  .tool-article table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .tool-article table td:last-child {
    border-bottom: 0;
  }

  .tool-article table td:first-child {
    background: #eef1e9;
    color: var(--green);
  }
}
