.Home-YouTube-Tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
  padding: 10px;
}

.tool-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: #D72877;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.tool-button i {
  font-size: 16px;
  margin-bottom: 10px;
}

.tool-button:hover {
  background: #F54C2D;
  transform: translateY(-3px);
}

.fas {
  width: 30px;
  height: 30px;
  margin-bottom: 5px;
}

.tool-button h3 {
  font-weight: 400;
  margin: 0;
  font-size: clamp(14px, 2vw, 18px);
  text-align: center;
}

@media (max-width:600px) {
  .Home-YouTube-Tools {
    grid-template-columns: 1fr;
  }
  .tool-button {
    padding: 10px;
  }
}
