.content-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.content-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 calc(33.333% - 1rem);
  height: 100px;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  color: white;
}

.content-button-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  z-index: 1;
}

.content-button:hover .content-button-bg {
  transform: scale(1.1);
}

.content-button-title {
  width: 100%;
  text-align: center;
  background: rgba(77, 77, 77, 0.2);
  padding: 0.5rem;
  font-size: clamp(0.9rem, 1.7vw, 1.5rem);
  z-index: 2;
}
