/* =============================================
   PETITION DETAIL PAGE
============================================= */

.pet-page {
  background: #F4F6FA;
  min-height: 80vh;
  padding: 48px 0 80px;
}

.pet-page-inner {
  max-width: 820px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1B2A6B;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.back-link:hover { color: #C8102E; }

/* Page header */
.pet-page-header {
  margin-bottom: 36px;
}
.pet-page-header .pet-tag {
  margin-bottom: 10px;
}
.pet-page-id {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pet-page-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #1B2A6B;
  line-height: 1.2;
  margin-bottom: 8px;
}
.pet-page-type {
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* Summary box */
.pet-summary-box {
  background: #1B2A6B;
  color: #fff;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 32px;
}
.pet-summary-box h2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
}
.pet-summary-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #fff;
}
.pet-summary-box strong {
  color: #fff;
  background: rgba(200,16,46,0.3);
  padding: 1px 4px;
  border-radius: 3px;
}

/* Content sections */
.pet-section {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e4e8f0;
  padding: 24px 28px;
  margin-bottom: 18px;
}
.pet-section h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #1B2A6B;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #F4F6FA;
}
.pet-section p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}
.pet-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pet-section ul li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.65;
  padding: 6px 0 6px 20px;
  position: relative;
  border-bottom: 1px solid #f0f2f7;
}
.pet-section ul li:last-child { border-bottom: none; }
.pet-section ul li::before {
  content: '›';
  position: absolute;
  left: 4px;
  color: #C8102E;
  font-weight: 700;
  font-size: 1.1rem;
}
.pet-section strong { color: #1B2A6B; }

/* CTA row */
.pet-page-cta {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Simple footer */
.footer-simple {
  background: #1B2A6B;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
}

/* Mobile */
@media (max-width: 640px) {
  .pet-page { padding: 32px 0 60px; }
  .pet-summary-box { padding: 22px 20px; }
  .pet-section { padding: 20px; }
  .pet-page-cta { flex-direction: column; }
  .pet-page-cta .btn { text-align: center; }
}
