/*!
Theme Name: PawsomeScout - Kadence Child
Description: Custom child theme for PawsomeScout based on Kadence theme
Author: PawsomeScout Team
Template: kadence
Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../kadence/style.css");

/* ==========================================================================
   PawsomeScout Brand & Design Tokens
   ========================================================================== */

:root {
  /* Brand Colors */
  --brand: #176E5B;
  --accent: #F2B705;
  --text: #222;
  --muted: #F7F7F7;
  
  /* Override Kadence color palette */
  --global-palette1: var(--brand);
  --global-palette2: var(--accent);
  --global-palette3: var(--text);
  --global-palette7: var(--muted);
  --global-palette9: #ffffff;
  
  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-lg: 16px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   Global Typography
   ========================================================================== */

body {
  font-family: var(--font-family);
  color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 700;
  color: var(--text);
}

/* ==========================================================================
   Header Customizations
   ========================================================================== */

.site-header {
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.site-branding .custom-logo {
  max-height: 40px;
}

.main-navigation a {
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

.main-navigation a:hover {
  color: var(--brand);
}

/* Header CTA Button - Enhanced UX */
.header-cta-wrapper {
  display: none;
}

/* CTA Banner below navigation */
.pawsome-cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, #1a8068 100%);
  color: #fff;
  position: relative;
  z-index: 5;
}
.pawsome-cta-banner .container {
  padding: var(--space-md) var(--space-xl);
}
.pawsome-cta-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.2px;
}
.pawsome-cta-banner .banner-icon { font-size: 1rem; }
.pawsome-cta-banner .banner-arrow { font-size: 1rem; transition: transform 0.2s ease; }
.pawsome-cta-banner-link:hover .banner-arrow { transform: translateX(4px); }

@media (max-width: 768px) {
  .pawsome-cta-banner .container { padding: var(--space-sm) var(--space-lg); }
}

/* Fix header layout to prevent overlap */
.site-header {
  position: relative;
  z-index: 999;
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Ensure header content is properly spaced */
.header-desktop-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Fix the header button positioning */
.site-header .header-button {
  margin-left: var(--space-lg);
}

/* Prevent header overlap with hero */
.pawsome-hero {
  margin-top: 0;
  position: relative;
  z-index: 1;
}

/* Header Logo Styles */
.site-branding {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.header-logo-wrapper {
  display: inline-flex;
  align-items: center;
  order: -1; /* Place before site title */
}

.header-logo-emoji {
  font-size: 1.3rem;
  background: var(--accent);
  padding: 4px 6px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  line-height: 1;
  animation: pulse 2s infinite;
  box-shadow: 0 2px 8px rgba(242, 183, 5, 0.3);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.header-logo-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(23, 110, 91, 0.2);
}

/* ==========================================================================
   Home Page Hero Section
   ========================================================================== */

.pawsome-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, var(--muted) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pawsome-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23176E5B" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>');
  pointer-events: none;
}

.pawsome-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

/* Hero logo styles - emoji version */
.hero-title-with-logo[data-logo-type="emoji"]::before {
  content: '🐾';
  font-size: 0.8em;
  background: var(--accent);
  padding: 10px 14px;
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(242, 183, 5, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
  line-height: 1;
}

/* Hero logo styles - image version */
.hero-title-with-logo[data-logo-type="image"]::before {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-image: var(--hero-logo-image, none);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: float 3s ease-in-out infinite;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(23, 110, 91, 0.2);
}

/* Hero logo styles - no logo */
.hero-title-with-logo[data-logo-type="none"]::before {
  display: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.pawsome-hero .subhead {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  line-height: 1.5;
}

.pawsome-hero-ctas {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.cta-primary {
  background: var(--brand);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(23, 110, 91, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cta-primary:hover::before {
  left: 100%;
}

.cta-primary:hover {
  background: #145a4a;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(23, 110, 91, 0.4);
}

.cta-secondary {
  background: transparent;
  color: var(--brand);
  padding: 16px 32px;
  border: 2px solid var(--brand);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.cta-secondary:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(23, 110, 91, 0.2);
}

/* ==========================================================================
   Featured Picks Section
   ========================================================================== */

.featured-picks {
  padding: var(--space-4xl) 0;
  background: white;
  position: relative;
}

.featured-picks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  border-radius: 2px;
}

.featured-picks h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
  position: relative;
}

.featured-picks h2::after {
  content: '🏆';
  position: absolute;
  top: -10px;
  right: -50px;
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   Card Component
   ========================================================================== */

.pawsome-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  border: 1px solid transparent;
}

.pawsome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.pawsome-card::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: white;
  border-radius: 10px;
  z-index: -1;
}

.pawsome-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  text-decoration: none;
  color: inherit;
}

.pawsome-card:hover::before {
  opacity: 1;
}

.pawsome-card:hover .pawsome-card-eyebrow {
  background: white;
  color: var(--brand);
}

.pawsome-card-image {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}

.pawsome-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pawsome-card-eyebrow {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background: var(--accent);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(242, 183, 5, 0.3);
}

.pawsome-card-content {
  padding: var(--space-xl);
}

.pawsome-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.pawsome-card-excerpt {
  color: #666;
  line-height: 1.5;
  margin-bottom: var(--space-lg);
}

.pawsome-card-cta {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pawsome-card-cta::after {
  content: '→';
  transition: transform 0.2s ease;
}

.pawsome-card:hover .pawsome-card-cta::after {
  transform: translateX(4px);
}

/* ==========================================================================
   Category Portals
   ========================================================================== */

.category-portals {
  padding: var(--space-4xl) 0;
  background: var(--muted);
}

.portals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.category-portal {
  background: white;
  padding: var(--space-3xl);
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.category-portal:hover {
  transform: translateY(-6px);
  text-decoration: none;
  color: inherit;
}

.category-portal h3 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
}

.category-portal p {
  color: #666;
  margin-bottom: var(--space-xl);
  font-size: 1.1rem;
}

.portal-cta {
  background: var(--brand);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

.portal-cta:hover {
  background: #145a4a;
  color: white;
}

/* ==========================================================================
   Lead Magnet Section
   ========================================================================== */

.lead-magnet {
  background: linear-gradient(135deg, var(--accent) 0%, #f5c842 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lead-magnet::before {
  content: '📧';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  opacity: 0.1;
}

.lead-magnet::after {
  content: '🎁';
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.1;
}

.lead-magnet h2 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--text);
}

.lead-magnet p {
  font-size: 1.1rem;
  margin-bottom: var(--space-2xl);
  color: var(--text);
}

.newsletter-form {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 280px;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.newsletter-form button {
  background: var(--brand);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.newsletter-form button:hover {
  background: #145a4a;
}

/* ==========================================================================
   Sticky CTA Bar (for money pages)
   ========================================================================== */

.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: var(--space-lg);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-content {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  align-items: center;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta-bar .cta-primary,
.sticky-cta-bar .cta-secondary {
  flex: 1;
  text-align: center;
  padding: 14px 24px;
  font-size: 1rem;
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */

.comparison-table {
  overflow-x: auto;
  margin: var(--space-2xl) 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.comparison-table th {
  background: var(--muted);
  padding: var(--space-lg);
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid #ddd;
}

.comparison-table td {
  padding: var(--space-lg);
  border-bottom: 1px solid #eee;
}

.comparison-table tr:hover {
  background: #f9f9f9;
}

/* ==========================================================================
   Deal Button Component
   ========================================================================== */

.deal-button {
  background: var(--brand);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.deal-button:hover {
  background: #145a4a;
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.deal-button::after {
  content: '↗';
  font-size: 1.1em;
}

/* Deals page */
.deals-groups {
  display: grid;
  gap: var(--space-3xl);
  margin: var(--space-3xl) 0;
}
.deals-group h2 { text-align: left; margin-bottom: var(--space-xl); }
.deals-list { display: grid; gap: var(--space-lg); }
.deal-row {
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.deal-title { font-weight: 700; font-size: 1.1rem; }
.deal-desc { color: #666; margin-top: 4px; }

@media (max-width: 768px) {
  .deal-row { flex-direction: column; align-items: stretch; gap: var(--space-lg); }
}

/* ==========================================================================
   Disclosure Component
   ========================================================================== */

.disclosure {
  background: #f0f8f5;
  border-left: 4px solid var(--brand);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: #2c5f52;
}

.disclosure strong {
  color: var(--brand);
}

/* ==========================================================================
   Pros/Cons Component
   ========================================================================== */

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin: var(--space-2xl) 0;
}

/* FAQ */
.pawsome-faq {
  margin: var(--space-2xl) 0;
}
.pawsome-faq .faq-item {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: var(--space-lg);
  overflow: hidden;
}
.pawsome-faq .faq-q {
  margin: 0;
  padding: var(--space-lg) var(--space-xl);
  background: var(--muted);
}
.pawsome-faq .faq-a {
  padding: var(--space-lg) var(--space-xl);
}

.pros, .cons {
  background: white;
  padding: var(--space-xl);
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.pros h4 {
  color: #16a34a;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pros h4::before {
  content: '✓';
  background: #16a34a;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.cons h4 {
  color: #dc2626;
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cons h4::before {
  content: '×';
  background: #dc2626;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros li, .cons li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.pros li:last-child, .cons li:last-child {
  border-bottom: none;
}

/* ==========================================================================
   Reviewer Badge
   ========================================================================== */

.reviewer-badge {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--muted);
  border-radius: 8px;
  margin: var(--space-2xl) 0;
}

.reviewer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info h5 {
  margin: 0 0 4px 0;
  font-size: 1.1rem;
}

.reviewer-credential {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.review-date {
  color: #888;
  font-size: 0.9rem;
}

/* ==========================================================================
   Trust Section & Additional Components
   ========================================================================== */

.trust-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, white 50%, var(--muted) 100%);
  position: relative;
}

.trust-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-3xl);
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.trust-pillar {
  text-align: center;
  padding: var(--space-2xl);
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.trust-pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
}

.trust-pillar:hover {
  transform: translateY(-5px);
}

.trust-icon {
  font-size: 3.5rem;
  margin-bottom: var(--space-lg);
  display: inline-block;
  transition: transform 0.3s ease;
}

.trust-pillar:hover .trust-icon {
  transform: scale(1.1);
}

.trust-pillar h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--brand);
}

.trust-pillar p {
  color: #666;
  line-height: 1.6;
}

.reviewer-intro {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  background: var(--muted);
  padding: var(--space-xl);
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
}

.reviewer-intro .reviewer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-intro h4 {
  margin: 0 0 4px 0;
  font-size: 1.25rem;
}

.reviewer-intro .reviewer-credential {
  color: #666;
  margin-bottom: 8px;
}

.reviewer-link {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
}

.reviewer-link:hover {
  text-decoration: underline;
}

/* Latest Guides Section */
.latest-guides {
  padding: var(--space-4xl) 0;
  background: white;
}

.latest-guides h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-3xl);
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
}

/* Footer CTA Section */
.footer-cta {
  padding: var(--space-4xl) 0;
  background: var(--brand);
  color: white;
  text-align: center;
}

.footer-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: var(--space-lg);
}

.footer-cta p {
  font-size: 1.25rem;
  margin-bottom: var(--space-2xl);
  color: rgba(255,255,255,0.9);
}

.footer-cta .cta-primary {
  background: var(--accent);
  color: var(--text);
}

.footer-cta .cta-primary:hover {
  background: #e6a500;
  color: var(--text);
}

/* Money Page Specific Styles */
.money-page-article {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.money-page-article .entry-content {
  max-width: 800px;
  margin: 0 auto;
}

.entry-header {
  margin-bottom: var(--space-3xl);
  text-align: center;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, var(--muted) 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.entry-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23176E5B" fill-opacity="0.03"><circle cx="20" cy="20" r="1.5"/></g></g></svg>');
  pointer-events: none;
}

.entry-title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.entry-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
  font-size: 0.95rem;
  color: #666;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.entry-meta .posted-on {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.entry-meta .posted-on::before {
  content: '📅';
  font-size: 1rem;
}

.breadcrumbs-wrapper {
  margin-bottom: var(--space-xl);
}

/* Breadcrumbs Styling */
.breadcrumbs {
  margin-bottom: var(--space-xl);
  padding: var(--space-lg) 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb-item {
  margin: 0;
}

.breadcrumb-item a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #145a4a;
  text-decoration: underline;
}

.breadcrumb-item span {
  color: #666;
  font-weight: 500;
}

.breadcrumb-separator {
  margin: 0 var(--space-sm);
  color: #ccc;
  font-weight: normal;
}

.top-picks-section {
  background: linear-gradient(135deg, var(--accent) 0%, #f5c842 100%);
  padding: var(--space-3xl);
  border-radius: 20px;
  margin: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(242, 183, 5, 0.3);
}

.top-picks-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23176E5B" fill-opacity="0.05"><circle cx="25" cy="25" r="2"/></g></g></svg>');
  pointer-events: none;
}

.top-picks-section h2 {
  position: relative;
  z-index: 1;
  color: var(--text);
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.top-picks-section p {
  position: relative;
  z-index: 1;
  color: var(--text);
  font-weight: 500;
}

.related-posts {
  margin-top: var(--space-4xl);
  padding-top: var(--space-4xl);
  border-top: 2px solid var(--muted);
}

.related-posts h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: var(--space-2xl);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

.article-newsletter-cta {
  background: linear-gradient(135deg, var(--brand) 0%, #1a8068 100%);
  padding: var(--space-4xl);
  border-radius: 20px;
  text-align: center;
  margin: var(--space-4xl) 0;
  position: relative;
  overflow: hidden;
  color: white;
  box-shadow: 0 10px 40px rgba(23, 110, 91, 0.3);
}

.article-newsletter-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="2"/></g></g></svg>');
  pointer-events: none;
}

.newsletter-cta-content h3 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: white;
  position: relative;
  z-index: 1;
}

.newsletter-cta-content p {
  font-size: 1.1rem;
  margin-bottom: var(--space-2xl);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

/* Announcement Strip */
.announcement-strip {
  background: var(--brand);
  color: white;
  padding: var(--space-sm) 0;
  text-align: center;
  position: relative;
}

.announcement-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
}

.announcement-strip p {
  margin: 0;
  font-size: 0.95rem;
}

.dismiss-announcement {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.dismiss-announcement:hover {
  background: rgba(255,255,255,0.2);
}

/* Newsletter Message Styles */
.newsletter-message {
  padding: var(--space-lg);
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
}

.newsletter-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.newsletter-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Container utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* Loading state for buttons */
.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.loading::after {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Fade in animation for images */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Lazy loading placeholder */
img.lazy {
  background: var(--muted);
  min-height: 200px;
}

/* ==========================================================================
   Comparison Page Styles
   ========================================================================== */

.compare-page-article {
  max-width: 1000px;
  margin: 0 auto;
}

.quick-verdict {
  background: var(--accent);
  padding: var(--space-2xl);
  border-radius: 12px;
  margin: var(--space-2xl) 0;
}

.quick-verdict h2 {
  margin-bottom: var(--space-lg);
  color: var(--text);
}

.quick-verdict p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text);
}

.comparison-hero {
  margin: var(--space-3xl) 0;
}

.comparison-products {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-2xl);
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.product-card {
  background: white;
  padding: var(--space-2xl);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--brand);
}

.vs-divider {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--muted);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive comparison layout */
@media (max-width: 768px) {
  .comparison-products {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .vs-divider {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
  .pawsome-hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-primary, .cta-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .picks-grid {
    grid-template-columns: 1fr;
  }
  
  .portals-grid {
    grid-template-columns: 1fr;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input[type="email"] {
    min-width: auto;
  }
  
  .pros-cons {
    grid-template-columns: 1fr;
  }
  
  .sticky-cta-content {
    flex-direction: column;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
}

/* ==========================================================================
   Content Enhancement Styles
   ========================================================================== */

.size-guide-callout {
  background: linear-gradient(135deg, #e8f5f3 0%, #f0f8f5 100%);
  border-left: 4px solid var(--brand);
  padding: var(--space-xl);
  margin: var(--space-2xl) 0;
  border-radius: 0 12px 12px 0;
  position: relative;
}

.size-guide-callout::before {
  content: '📏';
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-size: 2rem;
}

.benefits-callout {
  background: var(--muted);
  padding: var(--space-2xl);
  border-radius: 12px;
  margin: var(--space-2xl) 0;
}

.benefits-callout ul {
  list-style: none;
  padding: 0;
}

.benefits-callout li {
  padding: var(--space-sm) 0;
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.benefits-callout li::before {
  content: '✅';
  font-size: 1.2rem;
}

.tips-callout {
  background: white;
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: var(--space-2xl);
  margin: var(--space-3xl) 0;
  position: relative;
}

.tips-callout::before {
  content: '💡 Pro Tips';
  position: absolute;
  top: -12px;
  left: var(--space-xl);
  background: var(--accent);
  color: var(--text);
  padding: 4px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta-section {
  background: var(--muted);
  padding: var(--space-2xl);
  border-radius: 16px;
  text-align: center;
  margin: var(--space-3xl) 0;
  border: 2px dashed var(--brand);
}

.cta-section h3 {
  color: var(--brand);
  margin-bottom: var(--space-lg);
}

/* Page loading animation */
.page-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.page-loading.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--muted);
  border-top: 4px solid var(--brand);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-spinner::after {
  content: '🐾';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  z-index: 1001;
  transition: width 0.1s ease;
}

/* ==========================================================================
   Performance & Accessibility
   ========================================================================== */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus styles for accessibility */
.cta-primary:focus,
.cta-secondary:focus,
.deal-button:focus,
.newsletter-form button:focus {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999999;
  padding: 8px 16px;
  background: var(--brand);
  color: white;
  text-decoration: none;
}

.skip-link:focus {
  left: 6px;
  top: 7px;
}

/* ==========================================================================
   Deals Page Styles
   ========================================================================== */

.deals-page-article {
  max-width: 1000px;
  margin: 0 auto;
}

.deals-page-content {
  margin-top: var(--space-3xl);
}

.deals-intro {
  background: linear-gradient(135deg, var(--muted) 0%, #f0f8f5 100%);
  padding: var(--space-3xl);
  border-radius: 20px;
  margin: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.deals-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23176E5B" fill-opacity="0.03"><circle cx="25" cy="25" r="2"/></g></g></svg>');
  pointer-events: none;
}

.deals-intro h2 {
  position: relative;
  z-index: 1;
  color: var(--brand);
  margin-bottom: var(--space-lg);
}

.deals-intro p {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
  color: #666;
}

.deals-groups {
  display: grid;
  gap: var(--space-4xl);
  margin: var(--space-4xl) 0;
}

.deals-group {
  background: white;
  padding: var(--space-3xl);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--brand);
}

.deals-group::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23176E5B" fill-opacity="0.02"><circle cx="30" cy="30" r="2"/></g></g></svg>');
  pointer-events: none;
}

.deals-group h2 {
  font-size: 2.2rem;
  color: var(--brand);
  margin-bottom: var(--space-lg);
  text-align: center;
  position: relative;
  z-index: 1;
}

.deals-group-desc {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.deals-list {
  position: relative;
  z-index: 1;
}

.deal-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  background: var(--muted);
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent);
}

.deal-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.deal-info h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: var(--space-sm);
}

.deal-info p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.deal-tips {
  background: linear-gradient(135deg, var(--brand) 0%, #1a8068 100%);
  padding: var(--space-4xl);
  border-radius: 20px;
  margin: var(--space-4xl) 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.deal-tips::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="70" height="70" viewBox="0 0 70 70" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="35" cy="35" r="2"/></g></g></svg>');
  pointer-events: none;
}

.deal-tips h2 {
  text-align: center;
  color: white;
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.tip-card {
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-2xl);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tip-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-lg);
  color: white;
}

.tip-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   Footer Navigation
   ========================================================================== */

.pawsome-footer-nav-wrapper {
  background: var(--brand);
  padding: var(--space-2xl) 0;
  margin-top: var(--space-4xl);
  position: relative;
}

.pawsome-footer-nav-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="80" height="80" viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="40" cy="40" r="2"/></g></g></svg>');
  pointer-events: none;
}

.pawsome-footer-nav {
  position: relative;
  z-index: 1;
}

.footer-nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav-menu li {
  margin: 0;
}

.footer-nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding: var(--space-sm) var(--space-md);
  border-radius: 6px;
  position: relative;
}

.footer-nav-menu a:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-nav-menu a:hover::after {
  width: 80%;
}

/* Footer nav responsive */
@media (max-width: 768px) {
  .footer-nav-menu {
    gap: var(--space-lg);
    font-size: 0.9rem;
  }
  
  .footer-nav-menu a {
    padding: var(--space-xs) var(--space-sm);
  }
}

/* ==========================================================================
   Category Page Enhancements
   ========================================================================== */

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-2xl);
  margin: var(--space-3xl) 0;
}

.category-card {
  background: white;
  padding: var(--space-2xl);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  border-top: 4px solid var(--brand);
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--brand);
}

.category-card p {
  color: #666;
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.guides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-2xl);
  margin: var(--space-3xl) 0;
}

.guide-category {
  background: linear-gradient(135deg, var(--muted) 0%, #f0f8f5 100%);
  padding: var(--space-2xl);
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-left: 4px solid var(--accent);
}

.guide-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23176E5B" fill-opacity="0.03"><circle cx="25" cy="25" r="2"/></g></g></svg>');
  pointer-events: none;
}

.guide-category h3 {
  font-size: 1.4rem;
  margin-bottom: var(--space-lg);
  color: var(--brand);
  position: relative;
  z-index: 1;
}

.guide-category p {
  color: #666;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.reviews-intro,
.guides-intro {
  background: linear-gradient(135deg, var(--muted) 0%, #f0f8f5 100%);
  padding: var(--space-3xl);
  border-radius: 20px;
  text-align: center;
  margin: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.reviews-intro::before,
.guides-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23176E5B" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></g></svg>');
  pointer-events: none;
}

.reviews-intro h2,
.guides-intro h2 {
  color: var(--brand);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.reviews-intro p,
.guides-intro p {
  font-size: 1.1rem;
  color: #666;
  position: relative;
  z-index: 1;
}

/* No Posts Message Styling */
.no-posts-message {
  text-align: center;
  padding: var(--space-4xl);
  background: linear-gradient(135deg, var(--muted) 0%, #f0f8f5 100%);
  border-radius: 20px;
  margin: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.no-posts-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23176E5B" fill-opacity="0.03"><circle cx="25" cy="25" r="2"/></g></g></svg>');
  pointer-events: none;
}

.no-posts-message h3 {
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}

.no-posts-message p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: var(--space-2xl);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

/* Guide Categories Section */
.guide-categories-section {
  margin: var(--space-4xl) 0;
}

.guide-categories-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-3xl);
  color: var(--brand);
}

/* Mobile refinements for articles */
@media (max-width: 768px) {
  .entry-header { padding: var(--space-2xl) 0; }
  .top-picks-section { padding: var(--space-2xl); margin: var(--space-2xl) 0; }
  .money-page-article { padding: 0 var(--space-lg); }
  .money-page-article .entry-content { max-width: 100%; }
}

@media (max-width: 480px) {
  .entry-title { font-size: 1.9rem; }
  .pawsome-card h3 { font-size: 1.1rem; }
  .pawsome-card-excerpt { font-size: 0.95rem; }
  .picks-grid, .guides-grid, .related-posts-grid { grid-template-columns: 1fr; }
  .breadcrumb-list { flex-wrap: wrap; row-gap: 4px; }
}
