.tool-library {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  padding: 90px 0;
  border-top: 1px solid var(--line);
}

.tool-library-intro > p:last-child {
  color: var(--muted);
  font-size: 1.06rem;
}

.tool-list {
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 16px;
}

.tool-list article {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 32px;
}

.tool-list article > div {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.tool-list h3 {
  margin: 70px 0 14px;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.tool-list p {
  margin: 0 0 28px;
  color: var(--muted);
}

.tool-list a {
  margin-top: auto;
}

.tool-featured {
  background: var(--ink);
  color: #fff;
}

.tool-featured p {
  color: #c9d7d0;
}

.tool-featured .button {
  background: var(--lime);
  color: var(--ink);
  box-shadow: none;
}

.tool-secondary {
  background: var(--panel);
}

.tool-index {
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.tool-tag {
  border: 1px solid currentColor;
  border-radius: 99px;
  padding: 6px 10px;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .06em;
  opacity: .7;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .tool-library {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tool-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .tool-list {
    grid-template-columns: 1fr;
  }

  .tool-list article {
    min-height: 330px;
  }

  .tool-list h3 {
    margin-top: 52px;
  }
}
