.tenet-sire-listing {
  width: 100%;
}

/* ---- Breed Filter ---- */

.tsl-filter-bar {
  margin-bottom: 32px;
}

.tsl-breed-select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 2px solid #ffb700;
  border-radius: 6px;
  padding: 9px 40px 9px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0a0a0a;
  cursor: pointer;
  min-width: 220px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FFB700' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color 0.18s ease;
}

.tsl-breed-select:focus {
  outline: none;
  border-color: #e6a400;
}

/* ---- Sire Rows ---- */

.tsl-rows {
  width: 100%;
  transition: opacity 0.2s ease;
}

.tsl-row {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 16px;
  border-bottom: 1px solid #e0e0e0;
  text-decoration: none;
  color: #0a0a0a;
  background: white;
  border-radius: 16px;
  transition: border-bottom 0.18s ease;
  margin-bottom: 8px;
}

.tsl-row:hover {
  border-bottom: 1px solid #ffb700;
  text-decoration: none;
  color: #0a0a0a;
}

/* Photo */

.tsl-photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
}

.tsl-photo img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.tsl-photo-placeholder {
  width: 140px;
  height: 140px;
  background: #e0e0e0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

/* Info */

.tsl-info {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: flex-start;
}

.tsl-field {
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.tsl-field--name {
  flex-basis: 100%;
  min-width: 0;
}

.tsl-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffb700;
}

.tsl-value {
  font-size: 1rem;
  color: #0a0a0a;
  font-weight: 400;
}

.tsl-field--name .tsl-value {
  font-size: 1.15rem;
  font-weight: 700;
}

/* Arrow icon */

.tsl-arrow {
  flex-shrink: 0;
  color: #ccc;
  display: flex;
  align-items: center;
  transition: color 0.18s ease;
}

.tsl-row:hover .tsl-arrow {
  color: #ffb700;
}

/* No results */

.tsl-no-results {
  color: #666;
  padding: 24px 0;
  font-style: italic;
}

/* ---- Mobile ---- */

@media (max-width: 600px) {
  .tsl-row {
    flex-wrap: wrap;
    align-items: start;
    gap: 12px;
    padding: 12px;
  }

  .tsl-photo,
  .tsl-photo img,
  .tsl-photo-placeholder {
    width: 80px;
    height: 80px;
  }

  .tsl-info {
    gap: 0;
    flex-direction: column;
  }

  .tsl-label {
    display: none;
  }

  .tsl-value {
    font-size: 0.8rem;
    line-height: 1.75;
  }

  .tsl-field--name .tsl-value {
    font-size: 1rem;
  }

  .tsl-arrow {
    display: none;
  }
}
