.pets-archive h1 {
  margin-bottom: 4rem;
}

.pets-archive {
  padding: 4rem 0rem;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.pets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.pet-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 2px 2px 3px rgba(0, 10, 10, 0.15);
}

.pet-card:hover {
  transform: translateY(-8px);
  transition: all ease-in-out 0.5s;
}

.pet-thumb {
  width: 100%;
  aspect-ratio: 4 / 2;
  overflow: hidden;
}

.pet-thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.pet-title h1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1b75bb;
  color: #fff;
  height: 142px;
  padding: 0px !important;
}

.pet-card h2 {
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .pets-grid {
    grid-template-columns: 1fr;
  }

  .pet-card {
    margin: 0px 0.5rem;
  }

  .breadcrumb-pets {
    margin: 0rem 0.5rem 4rem 0.5rem !important;
  }
}

.breadcrumb-pets {
  font-size: 0.9rem;
  margin: 0rem 0rem 4rem 0rem;
  color: #1b75bb;
}

.breadcrumb-pets a {
  color: #1b75bb;
  text-decoration: none;
}

.breadcrumb-pets a:hover {
  text-decoration: underline;
}

.breadcrumb-pets span {
  color: #000;
  font-weight: bold;
}
