.study-tools-section {
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  display: inline-flex;
}

.study-tools-title {
  align-self: stretch;
  text-align: center;
  color: #1a1a1a;
  font-size: 2.5rem;
  font-family: Inter;
  font-weight: 700;
  word-wrap: break-word;
}

.study-tools-cards-wrapper {
  align-self: stretch;
  height: 25rem;
  justify-content: flex-start;
  align-items: center;
  gap: 2.5rem;
  display: inline-flex;
}

.tool-card {
  min-width: 20rem;
  align-self: stretch;
  background: white;
  box-shadow: 0rem 0.3125rem 1.875rem rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 2rem;
  display: inline-flex;
}

.tool-card-content {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  object-position: top;
  border-radius: 0.5rem;
}

.tool-info {
  align-self: stretch;
  max-height: fit-content;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  display: flex;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.tool-title {
  align-self: stretch;
  color: #1a1a1a;
  font-size: 1.25rem;
  font-family: Inter;
  font-weight: 700;
  word-wrap: break-word;
}

.tool-description {
  align-self: stretch;
  color: #7a7a7a;
  font-size: 0.875rem;
  font-family: Inter;
  font-weight: 500;
  line-height: 1.225rem;
  word-wrap: break-word;
}

/* ================== RESPONSIVE FOR STUDY TOOLS SECTION ===================== */

@media screen and (max-width: 768px) {
  .study-tools-section {
    gap: 2.5rem;
  }

  .study-tools-title {
    font-size: 1.75rem;
    font-style: normal;
    text-align: left;
    letter-spacing: -0.0175rem;
  }

  .study-tools-cards-wrapper {
    overflow-x: auto;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .study-tools-cards-wrapper .tool-card:last-child {
    margin-right: 0.5rem;
  }

  .tool-card {
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.06);
  }

  .tool-card-content {
    height: 15rem;
  }
}
