/* PawOps Breed Page Styles */

:root {
  --accent: #FFBB58;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F8F8FA;
  --text-primary: #1A1A1A;
  --text-secondary: #555555;
  --border: #E8E8EB;
}

/* ===== BREADCRUMBS ===== */
.breed-breadcrumbs {
  max-width: 1200px;
  margin: 90px auto 0;
  padding: 0 20px;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breed-breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}

.breed-breadcrumbs a:hover {
  color: var(--text-primary);
}

.breed-breadcrumbs span {
  margin: 0 10px;
  color: var(--border);
}

/* ===== HERO SECTION ===== */
.breed-hero-individual {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 187, 88, 0.05) 0%, rgba(255, 187, 88, 0.02) 100%);
  border-radius: 12px;
}

.breed-hero-individual h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.breed-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breed-badge-species,
.breed-badge-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent);
  color: #000;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

.breed-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== QUICK STATS GRID ===== */
.breed-stats {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.breed-stat-item {
  padding: 24px;
  background: var(--bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--border);
  text-align: center;
}

.breed-stat-item h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breed-stat-item h3 i {
  color: var(--accent);
}

.breed-stat-item p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

.breed-stat-paws {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
}

.breed-stat-paws i {
  font-size: 18px;
}

/* ===== ABOUT SECTION ===== */
.breed-about {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.breed-about h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.breed-about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.breed-about-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.breed-about-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== SERVICES SECTION ===== */
.breed-services {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.breed-services h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.breed-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.breed-service-tag {
  padding: 10px 16px;
  background: var(--accent);
  color: #000;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* ===== SPECIAL CONSIDERATIONS ===== */
.breed-considerations {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.breed-considerations h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
}

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

.breed-considerations-list li {
  padding: 12px 0 12px 28px;
  position: relative;
  max-width: 600px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.breed-considerations-list li:last-child {
  border-bottom: none;
}

.breed-considerations-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== FAQ SECTION ===== */
.breed-faq-section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.breed-faq-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.breed-faq-accordion {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.breed-faq-item {
  border-bottom: 1px solid var(--border);
}

.breed-faq-item:last-child {
  border-bottom: none;
}

.breed-faq-question {
  width: 100%;
  padding: 20px;
  background: var(--bg-primary);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.breed-faq-question:hover {
  background: var(--bg-secondary);
}

.breed-faq-question i {
  color: var(--accent);
  transition: transform 0.3s;
  min-width: 16px;
}

.breed-faq-question.active i {
  transform: rotate(180deg);
}

.breed-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: var(--bg-secondary);
}

.breed-faq-answer.active {
  max-height: 500px;
}

.breed-faq-answer p {
  padding: 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== RELATED BREEDS SECTION ===== */
.breed-related-section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.breed-related-section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.breed-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.breed-related-card {
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
}

.breed-related-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 187, 88, 0.1);
}

.breed-related-header {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 12px;
}

.breed-related-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.breed-related-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 16px;
}

.breed-related-difficulty {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.breed-related-difficulty i {
  font-size: 16px;
}

/* ===== GROUP PAGE GRID ===== */
.breed-group-grid {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.breed-group-card {
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.breed-group-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 187, 88, 0.1);
}

.breed-group-header {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 12px;
}

.breed-group-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.breed-group-info {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 8px;
}

.breed-group-weight {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.breed-group-difficulty {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.breed-group-difficulty i {
  font-size: 14px;
}

.breed-group-difficulty span {
  font-size: 12px;
  color: var(--text-secondary);
  margin-left: 8px;
}

.breed-group-frequency {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  margin-top: auto;
}

/* ===== CTA SECTION ===== */
.breed-cta-final {
  max-width: 800px;
  margin: 80px auto 0;
  padding: 60px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 187, 88, 0.1) 0%, rgba(255, 187, 88, 0.05) 100%);
  border-radius: 12px;
}

.breed-cta-final h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.breed-cta-final p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.breed-cta-button {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  border: 2px solid var(--accent);
}

.breed-cta-button:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}

/* ===== HERO GROUP PAGE ===== */
.breed-hero-group {
  max-width: 100%;
  margin: 0 0 0 0;
  padding: 80px 20px 60px;
  text-align: center;
  background: linear-gradient(165deg, #1A1A1A 0%, #2a2a2a 50%, #1A1A1A 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  border-radius: 12px;
}

.breed-hero-group h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.02em;
}

.breed-hero-group p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin: 0 auto;
  max-width: 640px;
  line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .breed-hero-individual h1,
  .breed-hero-group h1 {
    font-size: 32px;
  }

  .breed-cta-final h2 {
    font-size: 28px;
  }

  .breed-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .breed-about-content {
    grid-template-columns: 1fr;
  }

  .breed-group-grid,
  .breed-related-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .breed-breadcrumbs {
    margin-top: 70px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .breed-stats {
    grid-template-columns: 1fr;
  }

  .breed-services-grid {
    gap: 8px;
  }

  .breed-service-tag {
    padding: 8px 12px;
    font-size: 13px;
  }

  .breed-cta-button {
    display: block;
    width: 100%;
  }
}

/* ===== BREED GALLERY ===== */
/* Breed Gallery — 3 images or 1 hero */
.breed-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.breed-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    border-radius: 16px;
    overflow: hidden;
}

.breed-gallery-grid.single-image {
    grid-template-columns: 1fr;
}

.breed-gallery-grid img {
    width: 100%;
    height: 360px;
    min-height: 360px;
    object-fit: cover;
    object-position: center top;
    display: block;
    background-color: #1a1a2e;
}

.breed-gallery-grid.single-image img {
    height: 400px;
    min-height: 400px;
    border-radius: 16px;
    background-color: #1a1a2e;
}

/* Fallback image styling for broken/missing images */
.breed-gallery-grid img.breed-image-fallback {
    object-fit: contain;
    padding: 40px;
    background-color: #1a1a2e;
}

.breed-gallery-grid.single-image img.breed-image-fallback {
    object-fit: contain;
    padding: 40px;
}

/* Hide the wrapper divs — just use images directly */
.breed-gallery-main,
.breed-gallery-side {
    display: contents;
}

@media (max-width: 768px) {
    .breed-gallery-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .breed-gallery-grid img {
        height: 200px;
    }
}

/* ==================== FAQ ACCORDION (actual classes) ==================== */
.faq-list {
    max-width: 800px;
}
.faq-item {
    border: 1px solid #e8e8eb;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1A1A1A;
    text-align: left;
    transition: background 0.2s;
}
.faq-question:hover { background: #F8F8FA; }
.faq-question i {
    color: #FFBB58;
    font-size: 12px;
    transition: transform 0.3s;
    flex-shrink: 0;
}
.faq-question.active i { transform: rotate(180deg); }
.faq-answer {
    background: #F8F8FA;
    border-top: 1px solid #e8e8eb;
}
.faq-answer p {
    padding: 16px 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }
    .faq-answer p {
        padding: 14px 16px;
        font-size: 13px;
    }
    .breed-faq-section h2 {
        font-size: 22px;
    }
}

/* ==================== POST-GROOM CARE ==================== */
.breed-care-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}
.breed-care-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.breed-care-section h2 i { color: var(--accent); }
.breed-care-intro {
    color: #888;
    font-size: 15px;
    margin-bottom: 28px;
}
.breed-care-item {
    margin-bottom: 24px;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
}
.breed-care-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.breed-care-item h3 i {
    color: var(--accent);
    font-size: 14px;
}
.breed-care-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}
.breed-care-issues {
    list-style: none;
    padding: 0;
    margin: 0;
}
.breed-care-issues li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}
.breed-care-issues li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

/* ==================== PRICE CALCULATOR ==================== */
.breed-calculator-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
}
.breed-calculator-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.breed-calculator-section h2 i { color: #FFBB58; }
.breed-calculator-subtitle {
    color: #888;
    font-size: 15px;
    margin-bottom: 24px;
}
.calc-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.calc-breed-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}
.calc-breed-name {
    font-size: 17px;
    font-weight: 700;
    color: #1A1A1A;
}
.calc-breed-weight {
    font-size: 13px;
    color: #999;
    background: #F8F8FA;
    padding: 4px 12px;
    border-radius: 20px;
}
.calc-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 10px;
}
.calc-input-wrap {
    position: relative;
    margin-bottom: 16px;
}
.calc-input {
    width: 100%;
    padding: 14px 50px 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.calc-input:focus {
    outline: none;
    border-color: #FFBB58;
    box-shadow: 0 0 0 3px rgba(255,187,88,0.12);
}
.calc-input-suffix {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 14px;
}
.calc-button {
    width: 100%;
    padding: 14px;
    background: #FFBB58;
    color: #1A1A1A;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}
.calc-button:hover { background: #e5a030; }
.calc-tier {
    text-align: center;
    margin-bottom: 20px;
}
.calc-tier-name {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
}
.calc-tier-weight {
    font-size: 14px;
    color: #999;
    margin-left: 8px;
}
.calc-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #F8F8FA;
    border: 1px solid #e8e8eb;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.2s;
}
.calc-service:hover {
    border-color: #FFBB58;
    background: #FFFBF2;
}
.calc-service-featured {
    border-color: #FFBB58;
    background: #FFFBF2;
}
.calc-service-name {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 2px;
}
.calc-service-desc {
    font-size: 12px;
    color: #999;
}
.calc-service-price {
    font-size: 22px;
    font-weight: 800;
    color: #FFBB58;
}
.calc-disclaimer {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    font-style: italic;
    margin: 16px 0;
}
.calc-clear {
    width: 100%;
    padding: 10px;
    background: #F0F0F3;
    color: #888;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
    transition: all 0.2s;
}
.calc-clear:hover { background: #e0e0e0; }
.calc-cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: #1A1A1A;
    color: #FFBB58;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    box-sizing: border-box;
}
.calc-cta:hover { background: #333; }
/* Calculator Modal */
.calc-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.calc-modal-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.calc-modal-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 14px;
}
.calc-modal-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}
.calc-modal-actions {
    display: flex;
    gap: 12px;
}
.calc-modal-cancel, .calc-modal-continue {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border: none;
    transition: all 0.2s;
}
.calc-modal-cancel {
    background: #F0F0F3;
    color: #888;
}
.calc-modal-cancel:hover { background: #e0e0e0; }
.calc-modal-continue {
    background: #FFBB58;
    color: #1A1A1A;
}
.calc-modal-continue:hover { background: #e5a030; }

@media (max-width: 480px) {
    .calc-card { padding: 20px; }
    .calc-breed-info { flex-direction: column; gap: 8px; align-items: flex-start; }
    .calc-service-price { font-size: 18px; }
}

/* ===== TWO-COLUMN LAYOUT (About/Services/Considerations + Sticky Calculator) ===== */
.breed-two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    align-items: start;
}

.breed-two-col-left {
    min-width: 0;
}

.breed-two-col-right {
    position: sticky;
    top: 100px;
}

/* Override standalone calculator styles when in 2-col layout */
.breed-two-col-right .breed-calculator-section {
    max-width: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 900px) {
    .breed-two-col {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .breed-two-col-right {
        position: static;
    }
}

/* ===== BREED VIDEOS SECTION ===== */
.breed-videos-section,
.breed-videos {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
    text-align: center;
}

.breed-videos-section h2,
.breed-videos h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breed-videos-section h2 i {
    color: #FFBB58;
}

.breed-videos-subtitle {
    color: #888;
    font-size: 15px;
    margin-bottom: 24px;
    text-align: center;
}

.breed-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
    justify-content: center;
    max-width: 100%;
    margin: 0;
}

/* Override inline grid styles on breed video containers */
.breed-videos > div[style*="grid"],
.breed-videos-section > div[style*="grid"] {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 100%;
    margin: 0;
}

.breed-video-card {
    background: #fff;
    border: 1px solid #e8e8eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.breed-video-card:hover {
    border-color: #FFBB58;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.breed-video-card iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

.breed-video-info {
    padding: 12px 14px;
}

.breed-video-title {
    font-size: 13px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.breed-video-channel {
    font-size: 11px;
    color: #999;
}

@media (max-width: 768px) {
    .breed-videos-grid {
        grid-template-columns: 1fr;
    }
}
