.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding-top: 20px;
}
/* Tool card */
.tool-item {
  background-color: #ebebee;
  border-radius: 24px;
  padding: 25px 50px 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tool-item:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.tool-image img {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin: 0 auto 15px;
  transform: scale(1.3);
}
/* Typography */
.tool-item h3 {
  color: #00A7B5;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
}
.tool-item p {
  font-size: 13px;
  color: #333F48;
  margin-bottom: 15px;
}
/* Button */
.btn-tool {
  margin-top: auto;
  margin-right: auto;
  margin-left: auto;
  display: inline-block;
  width: 240px;
  padding: 16px 32px;
  background: linear-gradient(to bottom, #00a7b5 0%, #00a7b5 50%, #94193b 50%, #94193b 100%);
  background-size: 100% 200%;
  color: #fff;
  border-radius: 0;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 7px 5px 15px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.btn-tool:hover {
  background-position: 0 100%;
  transform: translateY(-1px);
  color: #fff;
  font-weight: 600;
}
div#space-tools {
  height: 40px;
}
/* Standard BreakPoints */
/* Mobile BreakPoint */
@media screen and (min-width: 1px) and (max-width: 375px) {
  section#content-section4 {
    padding-top: 15px;
  }
  div#space-tools {
    height: 20px;
  }
  .tool-item {
    padding: 15px 30px 30px;
  }
  .tool-item h3 {
    font-size: 24px;
  }
}
/* Large Mobile BreakPoint */
@media screen and (min-width: 376px) and (max-width: 425px) {
  section#content-section4 {
    padding-top: 20px;
  }
  div#space-tools {
    height: 20px;
  }
  .tool-item {
    padding: 15px 30px 30px;
  }
  .tool-item h3 {
    font-size: 24px;
  }
}
/* Tablet BreakPoint */
@media screen and (min-width: 426px) and (max-width: 767px) {
  section#content-section4 {
    padding-top: 25px;
  }
  div#space-tools {
    height: 30px;
  }
  .tool-item {
    padding: 20px 40px 40px;
  }
  .tool-item h3 {
    font-size: 26px;
  }
}
/* Laptop BreakPoint */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  section#content-section4 {
    padding-top: 30px;
  }
}
/* Desktop BreakPoint */
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  section#content-section4 {
    padding-top: 30px;
  }
}
/* Large Desktop BreakPoint */
@media screen and (min-width: 1441px) and (max-width: 2560px) {
  section#content-section4 {
    padding-top: 30px;
  }
}
/* Extra-Large Desktop BreakPoint */
@media screen and (min-width: 2561px) and (max-width: 4000px) {
  section#content-section4 {
    padding-top: 30px;
  }
}
/* Wide Desktop BreakPoint */
@media screen and (min-width: 4001px) {
  section#content-section4 {
    padding-top: 30px;
  }
}