/* ===== BLOG PAGE STYLES ===== */

.blog-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, var(--primary-lighter) 0%, var(--bg) 100%);
  text-align: center;
}
.blog-hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin: 12px 0 16px;
  color: var(--text);
}
.blog-hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* ===== ARTICLE ===== */
.blog-article {
  padding: 60px 0;
}
.article-container {
  max-width: 780px;
  margin: 0 auto;
}
.article-header {
  margin-bottom: 36px;
}
.article-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 12px 0 16px;
  color: var(--text);
}
.article-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--primary-dark);
}
.article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 16px;
}
.article-content ul {
  margin: 12px 0 20px 20px;
  list-style: disc;
}
.article-content ul li {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 8px;
  color: var(--text);
}
.article-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
}

/* Highlight box */
.article-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--primary-lighter);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.article-highlight p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}
.highlight-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Warning box */
.article-warning {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff5f5;
  border-left: 4px solid #e53e3e;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
}
.article-warning strong {
  display: block;
  margin-bottom: 8px;
  color: #c53030;
}
.article-warning ul {
  margin: 0 0 0 16px;
}
.article-warning ul li {
  font-size: 0.9rem;
}
.warning-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Tip box */
.article-tip {
  background: linear-gradient(135deg, var(--primary-lighter), var(--bg-alt));
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.95rem;
  border: 1px solid var(--border-light);
}
.article-tip strong {
  color: var(--primary);
}

/* Tags */
.blog-tag {
  display: inline-block;
  background: var(--primary-lighter);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag-cats {
  background: #fff3e0;
  color: #e65100;
}
.tag-health {
  background: #e3f2fd;
  color: #1565c0;
}

/* Signs grid (cat article) */
.signs-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0 28px;
}
.sign-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: all 0.3s ease;
}
.sign-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.sign-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sign-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.sign-item p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Age table (castration article) */
.age-table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 20px 0 28px;
}
.age-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.3fr;
  gap: 12px;
  padding: 14px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}
.age-row:last-child {
  border-bottom: none;
}
.age-header {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: none;
}
.age-row:not(.age-header):hover {
  background: var(--bg-alt);
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 20px 0 28px;
}
.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.benefit-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}
.benefit-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Divider */
.article-divider {
  padding: 0;
}
.article-divider hr {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 780px;
  margin: 0 auto;
}

/* CTA */
.blog-cta {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--primary-lighter) 100%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .blog-hero {
    padding: 120px 0 40px;
  }
  .blog-hero-title {
    font-size: 2rem;
  }
  .article-title {
    font-size: 1.6rem;
  }
  .article-meta {
    flex-direction: column;
    gap: 6px;
  }
  .age-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 16px;
  }
  .age-header {
    display: none;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .sign-item {
    flex-direction: column;
    gap: 10px;
  }
}

/* ─── SHARE BUTTONS ─── */
.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.share-label {
  font-size: .85rem;
  color: var(--text-muted, #999);
  font-weight: 600;
}
.share-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: transform .3s, box-shadow .3s;
}
.share-btn:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.share-whatsapp { background: #25d366; }
.share-twitter { background: #000; }
.share-facebook { background: #1877f2; }
