main {
  padding: 30px 20px;
  max-width: 100vw;
  margin: 0 auto;
}

main h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
  color: #cc4d86;
  position: relative;
  padding-bottom: 15px;
}

main h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 3px;
  background-color: #c0a78a;
}

.cats-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.cat-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 4px solid #cc4d86;
  height: 100%;
}

.cat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.cat-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.cat-info {
  padding: 20px;
}

.cat-info p {
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 1.5;
  color: #cc4d86;
}

.cat-info p:first-child {
  font-weight: bold;
  font-size: 18px;
}

@media (max-width: 768px) {
  .cats-container {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .cat-card {
    height: 100%;
    width: 80%;
  }
  .cat-card img {
    width: 100%;
    height: 250px;
  }
}
