.custom-pets-shell {
  width: min(100%, 1040px);
  padding-top: 26px;
  padding-bottom: 86px;
}

.custom-pets-heading {
  margin-bottom: 16px;
}

.custom-pets-heading .eyebrow {
  margin: 0 0 6px;
}

.custom-pets-heading h1 {
  margin: 0;
  color: #fff7d8;
  font-family: 'Cinzel', serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.custom-pets-list {
  display: grid;
  gap: 14px;
}

.custom-pet-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 20px;
  align-items: center;
  min-height: 164px;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(255, 196, 77, 0.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 50%, rgba(255, 45, 164, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(20, 12, 35, 0.96), rgba(9, 6, 18, 0.98));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
}

.custom-pet-details h2 {
  margin: 0;
  color: #fff7d8;
  font-family: 'Cinzel', serif;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.custom-pet-effects {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.custom-pet-effect {
  max-width: 560px;
  padding: 13px 14px;
  border: 1px solid rgba(201, 153, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.custom-pet-effect-primary {
  border-color: rgba(255, 212, 107, 0.34);
  background:
    radial-gradient(circle at top left, rgba(255, 212, 107, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.035);
}

.custom-pet-effect span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.custom-pet-effect strong {
  display: block;
  color: #fff7d8;
  font-family: 'Cinzel', serif;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.custom-pet-effect-primary strong {
  color: #ffe45f;
}

.custom-pet-effect p {
  margin: 6px 0 0;
  color: #d8c9e8;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.38;
}

.custom-pet-image {
  justify-self: end;
  width: min(210px, 100%);
  max-height: 142px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.45));
}

@media (max-width: 760px) {
  .custom-pets-shell {
    padding-top: 18px;
  }

  .custom-pet-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .custom-pet-image {
    justify-self: center;
    width: min(210px, 70vw);
    max-height: 140px;
  }
}
