/* ============================================
   BREEDER GUIDELINES PAGE
   ============================================ */

/* ---- Hero ---- */
.bgd-hero {
  position: relative;
  margin: var(--space-8) 0 var(--space-16);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.bgd-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/honestpet-team-vet.webp') center/cover no-repeat;
}
.bgd-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.bgd-hero__content {
  position: relative;
  padding: var(--space-24) var(--space-4);
  text-align: center;
}
.bgd-hero__icon {
  width: 64px;
  height: 64px;
  color: #fff;
  margin-bottom: var(--space-4);
}
.bgd-hero__title {
  font-family: var(--font-heading);
  font-size: 3.375rem;
  font-weight: 550;
  color: #fff;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.bgd-hero__subtitle {
  font-size: 1.25rem;
  color: #e5e7eb;
  line-height: 1.575;
  max-width: 768px;
  margin: 0 auto;
}

/* ---- Intro ---- */
.bgd-intro {
  margin-bottom: var(--space-16);
  padding: var(--space-12);
  border-radius: var(--radius-xl);
  background: linear-gradient(to right bottom, #faf5ff, #fdf2f8, #eff6ff);
}
.bgd-intro__text {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.25rem;
  color: #374151;
  line-height: 1.625;
}

/* ---- What We Monitor ---- */
.bgd-monitor {
  margin: var(--space-20) 0;
  text-align: center;
}
.bgd-section-title {
  font-size: 2.125rem;
  font-weight: 550;
  color: #1f2937;
  line-height: 1.18;
  margin-bottom: var(--space-4);
}
.bgd-section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.bgd-section-desc {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.575;
  max-width: 896px;
  margin: 0 auto var(--space-12);
}
.bgd-monitor__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  max-width: 1152px;
}

/* Monitor card */
.bgd-monitor-card {
  padding: var(--space-6);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-xl);
  background: #fff;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bgd-monitor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.bgd-monitor-card__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.bgd-monitor-card__icon {
  width: 72px;
  height: 72px;
  padding: 16px;
  border: 4px solid #fff;
  border-radius: 9999px;
  background: #dbeafe;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.bgd-monitor-card__icon svg {
  width: 32px;
  height: 32px;
  color: #0066cc;
}
.bgd-monitor-card__title {
  font-size: 1.25rem;
  font-weight: 550;
  color: #333;
  margin-bottom: var(--space-2);
}
.bgd-monitor-card__desc {
  font-size: var(--text-body);
  color: #666;
  line-height: 1.5;
}

/* ---- Partnership Standards ---- */
.bgd-standards {
  margin: var(--space-20) 0;
}
.bgd-standards__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.bgd-standards__header-icon {
  width: 88px;
  height: 88px;
  padding: 16px;
  border: 4px solid #fff;
  border-radius: 9999px;
  background: #dbeafe;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.bgd-standards__header-icon svg {
  width: 48px;
  height: 48px;
  color: #2563eb;
}
.bgd-standards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  max-width: 1152px;
}

/* Requirement card */
.bgd-req-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-xl);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.bgd-req-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid;
}
.bgd-req-card__header--blue {
  background: #f0f9ff;
  border-bottom-color: #e0f2fe;
}
.bgd-req-card__header--purple {
  background: #faf5ff;
  border-bottom-color: #f3e8ff;
}
.bgd-req-card__header--green {
  background: #ecfdf5;
  border-bottom-color: #d1fae5;
}
.bgd-req-card__header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  flex-shrink: 0;
}
.bgd-req-card__header--blue .bgd-req-card__header-icon {
  background: #dbeafe;
}
.bgd-req-card__header--blue .bgd-req-card__header-icon svg {
  color: #2563eb;
}
.bgd-req-card__header--purple .bgd-req-card__header-icon {
  background: #f3e8ff;
}
.bgd-req-card__header--purple .bgd-req-card__header-icon svg {
  color: #7c3aed;
}
.bgd-req-card__header--green .bgd-req-card__header-icon {
  background: #d1fae5;
}
.bgd-req-card__header--green .bgd-req-card__header-icon svg {
  color: #059669;
}
.bgd-req-card__header-icon svg {
  width: 20px;
  height: 20px;
}
.bgd-req-card__header-title {
  font-size: 1.25rem;
  font-weight: var(--weight-semibold);
  color: #1f2937;
  line-height: 1.2;
}
.bgd-req-card__body {
  padding: var(--space-3) var(--space-6) var(--space-5);
  flex: 1;
}

/* Checklist item */
.bgd-check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid #f3f4f6;
}
.bgd-check-item:last-child {
  border-bottom: none;
}
.bgd-check-item__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  flex-shrink: 0;
  margin-top: 2px;
}
.bgd-check-item__circle--blue {
  background: #dbeafe;
}
.bgd-check-item__circle--blue svg {
  color: #2563eb;
}
.bgd-check-item__circle--purple {
  background: #f3e8ff;
}
.bgd-check-item__circle--purple svg {
  color: #7c3aed;
}
.bgd-check-item__circle--green {
  background: #d1fae5;
}
.bgd-check-item__circle--green svg {
  color: #059669;
}
.bgd-check-item__circle svg {
  width: 14px;
  height: 14px;
}
.bgd-check-item__text {
  font-size: 1.0625rem;
  color: #374151;
  line-height: 1.6;
}

/* ---- What This Means for Families ---- */
.bgd-families {
  margin-bottom: var(--space-16);
  padding: var(--space-12);
  border-radius: var(--radius-xl);
  background: linear-gradient(to right bottom, #fff1f2, #fdf2f8, #faf5ff);
}
.bgd-families__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.bgd-families__header-icon {
  width: 88px;
  height: 88px;
  padding: 16px;
  border: 4px solid #fff;
  border-radius: 9999px;
  background: #fce7f3;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}
.bgd-families__header-icon svg {
  width: 48px;
  height: 48px;
  color: #db2777;
}
.bgd-families__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 1024px;
  margin: 0 auto;
}

/* Family benefit card */
.bgd-family-card {
  padding: var(--space-8);
  border: 1px solid #ffebf5;
  border-radius: var(--radius-xl);
  background: #fff;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.bgd-family-card:hover {
  transform: translateY(-4px);
}
.bgd-family-card__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-6);
}
.bgd-family-card__icon {
  width: 88px;
  height: 88px;
  padding: 20px;
  border: 4px solid #fff;
  border-radius: 9999px;
}
.bgd-family-card__icon--pink {
  background: linear-gradient(to right bottom, #ffebf5, #faf5ff);
  box-shadow: 0 5px 15px rgba(236, 72, 153, 0.1);
}
.bgd-family-card__icon--pink svg {
  color: #cc0066;
}
.bgd-family-card__icon--blue {
  background: linear-gradient(to right bottom, #dbeafe, #e0f2fe);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}
.bgd-family-card__icon--blue svg {
  color: #2563eb;
}
.bgd-family-card__icon--purple {
  background: linear-gradient(to right bottom, #f3e8ff, #faf5ff);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.1);
}
.bgd-family-card__icon--purple svg {
  color: #7c3aed;
}
.bgd-family-card__icon svg {
  width: 40px;
  height: 40px;
}
.bgd-family-card__title {
  font-size: 1.375rem;
  font-weight: 550;
  color: #333;
  margin-bottom: var(--space-3);
}
.bgd-family-card__desc {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.65;
}

/* ---- 3-Strike System ---- */
.bgd-strikes {
  margin-bottom: var(--space-16);
  padding: var(--space-12);
  border-radius: var(--radius-xl);
  background: linear-gradient(to right bottom, #f0f9ff, #eff6ff, #ecfeff);
}
.bgd-strikes__inner {
  max-width: 896px;
  margin: 0 auto;
}
.bgd-strikes__title {
  text-align: center;
  margin-bottom: var(--space-12);
}
.bgd-strikes__list {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: var(--space-8);
  padding-left: var(--space-12);
}

/* Vertical dashed line */
.bgd-strikes__list::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: #e5e7eb;
  border-right: 1px dashed #e5e7eb;
}

/* Strike card wrapper */
.bgd-strike {
  position: relative;
}

/* Number circle */
.bgd-strike__number {
  position: absolute;
  left: calc(-1 * var(--space-12) - 24px);
  top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  font-size: 1.5rem;
  font-weight: 550;
  z-index: 10;
}
.bgd-strike__number--yellow {
  background: #fefce8;
  border: 4px solid #fef08a;
  color: #eab308;
}
.bgd-strike__number--orange {
  background: #fff7ed;
  border: 4px solid #fed7aa;
  color: #f97316;
}
.bgd-strike__number--red {
  background: #fef2f2;
  border: 4px solid #fecaca;
  color: #ef4444;
}

/* Strike card */
.bgd-strike__card {
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bgd-strike__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  border-left: 4px solid;
}
.bgd-strike__header--yellow {
  border-left-color: #fef08a;
  background: #fefce8;
}
.bgd-strike__header--yellow svg {
  color: #eab308;
}
.bgd-strike__header--orange {
  border-left-color: #fed7aa;
  background: #fff7ed;
}
.bgd-strike__header--orange svg {
  color: #f97316;
}
.bgd-strike__header--red {
  border-left-color: #fecaca;
  background: #fef2f2;
}
.bgd-strike__header--red svg {
  color: #ef4444;
}
.bgd-strike__header svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.bgd-strike__title {
  font-size: 1.625rem;
  font-weight: 550;
  color: #1f2937;
}
.bgd-strike__body {
  padding: var(--space-6);
}
.bgd-strike__block {
  margin-bottom: var(--space-3);
}
.bgd-strike__block:last-child {
  margin-bottom: 0;
}
.bgd-strike__label {
  font-size: var(--text-body);
  font-weight: 550;
  color: #374151;
  margin-bottom: 4px;
}
.bgd-strike__text {
  font-size: var(--text-body);
  color: #4b5563;
  line-height: 1.575;
}
.bgd-strike__list-items {
  margin: 4px 0 0 var(--space-4);
  padding: 0;
  list-style: disc;
}
.bgd-strike__list-items li {
  font-size: var(--text-body);
  color: #4b5563;
  line-height: 1.575;
  margin-bottom: 4px;
}

/* ---- Additional Information ---- */
.bgd-additional {
  padding: var(--space-10) 0;
  text-align: center;
}
.bgd-additional__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 896px;
  margin: 0 auto;
}

/* Info note card — reuses monitor card icon style */
.bgd-info-card {
  padding: var(--space-6);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-xl);
  background: #fff;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.bgd-info-card:hover {
  transform: translateY(-4px);
}
.bgd-info-card__icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-4);
}
.bgd-info-card__icon {
  width: 72px;
  height: 72px;
  padding: 16px;
  border: 4px solid #fff;
  border-radius: 9999px;
  background: #ebf5ff;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}
.bgd-info-card__icon svg {
  width: 32px;
  height: 32px;
  color: #0066cc;
}
.bgd-info-card__title {
  font-size: 1.375rem;
  font-weight: 550;
  color: #333;
  margin-bottom: var(--space-3);
}
.bgd-info-card__desc {
  font-size: var(--text-body);
  color: #666;
  line-height: 1.65;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .bgd-hero__title {
    font-size: 2.5rem;
  }
  .bgd-monitor__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bgd-section-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .bgd-hero__content {
    padding: var(--space-16) var(--space-4);
  }
  .bgd-hero__title {
    font-size: 2rem;
  }
  .bgd-hero__subtitle {
    font-size: var(--text-body);
  }
  .bgd-monitor__grid {
    grid-template-columns: 1fr 1fr;
  }
  .bgd-standards__grid {
    grid-template-columns: 1fr;
  }
  .bgd-families__grid {
    grid-template-columns: 1fr;
  }
  .bgd-additional__grid {
    grid-template-columns: 1fr;
  }
  .bgd-strikes {
    padding: var(--space-8);
  }
  .bgd-strikes__list {
    padding-left: var(--space-8);
  }
  .bgd-strike__number {
    left: calc(-1 * var(--space-8) - 24px);
  }
  .bgd-strike__title {
    font-size: 1.25rem;
  }
  .bgd-intro {
    padding: var(--space-8);
  }
  .bgd-intro__text {
    font-size: var(--text-body);
  }
}

@media (max-width: 640px) {
  .bgd-hero__title {
    font-size: 1.75rem;
  }
  .bgd-monitor__grid {
    grid-template-columns: 1fr;
  }
}
