.animals-h3 {
  font-family: "Lato", sans-serif;
  font-size: 0.9rem;
  color: #343637;
  letter-spacing: 1px;
  text-align: center;
}

.animals-p {
  font-family: "Lato", sans-serif;
  font-size: 0.8rem;
  color: #343637;
  letter-spacing: 1px;
  padding: 5px 10px 5px 10px;
}

.animals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 220px);
  gap: 30px;
  max-width: calc(4 * 220px + 4 * 30px);
  margin: 0 auto;
  justify-content: center;
  padding: 0 10px;
  box-sizing: border-box;
}

.animal-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #dddddf;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(52, 54, 55, 0.2);
}

.animal-card:hover {
  transform: translateY(-4px);
  transition: 0.2s ease;
}

.animal-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.animal-img {
  position: relative;
}

.animal-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  background: radial-gradient(
    circle at center,
    transparent 50%,
    rgba(221, 221, 223, 0.6) 94%
  );
  pointer-events: none;
}
