/* ===== Breed File Replacements ===== */
.breeds-wrap{ max-width:925px; margin:22px auto 28px; padding:0 16px; }
.breeds-wrap .intro{ text-align:center; max-width:62ch; margin:0 auto 18px; }

/* ===== Breed File Replacements ===== */
.breed-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 30px auto;
  max-width: 900px;
  padding: 0 15px;
}

.breed-list {
  flex: 1 1 380px;
  background: #fcfcfb;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  padding: 20px 25px;
}

.breed-list h3 {
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: #3e2c4d;
  letter-spacing: 1px;
  margin-bottom: 12px;
  text-decoration: underline wavy #9de5d4 2px;
  text-underline-offset: 6px;
}

.breed-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breed-list li {
  margin: 8px 0;
  padding-left: 26px;
  position: relative;
  line-height: 1.5;
}

.breed-list li::before {
  content: "\f1b0"; /* FontAwesome paw icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #9de5d4;
  font-size: 0.9em;
  top: 3px;
}

.breed-list a {
  color: #5ac9b4;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dotted rgba(90,201,180,0.5);
  }

.breed-list a:hover {
  color: #5ac9b4;
  border-bottom-color: rgba(90,201,180,0.9);
}

@media (max-width: 700px) {
  .breed-lists { flex-direction: column; align-items: center; }
}