body.page-pet-advice {
  background:
    radial-gradient(circle at top left, rgba(31, 126, 110, 0.22), transparent 26%),
    linear-gradient(180deg, #0f5d4f 0%, #0a4750 100%);
}

body.page-pet-advice main {
  background: transparent;
}

.pet-advice-page {
  padding: 52px 0 64px;
  color: #fff;
}

.pet-advice-hero,
.pet-advice-card,
.pet-advice-feature {
  background: rgba(10, 64, 70, 0.46);
  border: 1px solid rgba(205, 230, 221, 0.2);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(4, 33, 38, 0.18);
}

.pet-advice-hero {
  padding: 36px;
  margin-bottom: 28px;
}

.pet-advice-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(216, 239, 232, 0.12);
  color: #cce6dd;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pet-advice-hero h1 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.pet-advice-hero p {
  max-width: 760px;
  margin: 0;
  color: #d8efe8;
  font-size: 1.05rem;
  line-height: 1.75;
}

.pet-advice-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pet-advice-card {
  padding: 28px;
}

.pet-advice-card h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.45rem;
}

.pet-advice-card p,
.pet-advice-card li {
  color: #d8efe8;
  line-height: 1.75;
}

.pet-advice-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.pet-advice-card li + li {
  margin-top: 8px;
}

.pet-advice-feature {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 24px;
  padding: 20px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.pet-advice-feature img {
  display: block;
  width: 100%;
  max-width: 150px;
  height: 140px;
  object-fit: cover;
  object-position: 54% 50%;
  border-radius: 14px;
}

.pet-advice-feature .pet-advice-eyebrow {
  margin-bottom: 10px;
}

.pet-advice-feature h2 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.pet-advice-feature p {
  color: #d8efe8;
  line-height: 1.75;
  margin: 0;
}

.pet-advice-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.pet-advice-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #0f5d4f;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.pet-advice-button:hover {
  background: #0a4a3f;
  color: #fff;
  transform: translateY(-1px);
}

.pet-advice-button--secondary {
  background: transparent;
  border-color: rgba(216, 239, 232, 0.35);
  color: #d8efe8;
}

.pet-advice-button--secondary:hover {
  background: rgba(216, 239, 232, 0.12);
  border-color: rgba(216, 239, 232, 0.55);
  color: #fff;
}

.puppy-guide {
  margin-top: 30px;
}

.puppy-guide-header {
  max-width: 860px;
  margin-bottom: 20px;
}

.puppy-guide-header h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  margin-bottom: 12px;
}

.puppy-guide-header p {
  color: #d8efe8;
  line-height: 1.75;
  margin: 0;
}

.puppy-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.puppy-stage-card {
  padding: 22px;
  border: 1px solid rgba(205, 230, 221, 0.2);
  border-radius: 18px;
  background: rgba(8, 52, 58, 0.5);
  box-shadow: 0 14px 34px rgba(4, 33, 38, 0.16);
}

.puppy-stage-week {
  display: block;
  color: #a9d8ca;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.puppy-stage-card h3 {
  color: #fff;
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.puppy-stage-card p {
  color: #d8efe8;
  line-height: 1.68;
  margin: 0;
}

.puppy-stage-card p + p {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .pet-advice-grid {
    grid-template-columns: 1fr;
  }

  .puppy-timeline {
    grid-template-columns: 1fr;
  }

  .pet-advice-hero,
  .pet-advice-card,
  .pet-advice-feature {
    padding: 24px;
  }

  .pet-advice-feature {
    grid-template-columns: 1fr;
  }

  .pet-advice-feature img {
    max-width: 100%;
    height: 170px;
  }
}
