/**
 * State Parks Pillar Page - Premium Masterclass Styles
 * 
 * A stunning, modern design with:
 * - Immersive parallax hero
 * - Animated statistics with counters
 * - Premium glassmorphism cards
 * - Smooth micro-interactions
 * - Dark nature-inspired color palette
 */

/* ============================================
   CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
    /* Primary Colors - Deep Forest */
    --color-primary-900: #0d1f13;
    --color-primary-800: #1a3c28;
    --color-primary-700: #275a3d;
    --color-primary-600: #347852;
    --color-primary-500: #419667;
    --color-primary-400: #5fb584;
    --color-primary-300: #8cd4a8;
    --color-primary-200: #b8e8c9;
    --color-primary-100: #e4f7eb;

    /* Accent Colors - Sunset Gold */
    --color-accent-500: #f59e0b;
    --color-accent-400: #fbbf24;
    --color-accent-300: #fcd34d;

    /* Neutrals */
    --color-neutral-900: #111827;
    --color-neutral-800: #1f2937;
    --color-neutral-700: #374151;
    --color-neutral-600: #4b5563;
    --color-neutral-500: #6b7280;
    --color-neutral-400: #9ca3af;
    --color-neutral-300: #d1d5db;
    --color-neutral-200: #e5e7eb;
    --color-neutral-100: #f3f4f6;
    --color-neutral-50: #f9fafb;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, rgba(13, 31, 19, 0.92) 0%, rgba(26, 60, 40, 0.88) 50%, rgba(39, 90, 61, 0.85) 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    --gradient-cta: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-primary-500) 50%, var(--color-accent-500) 100%);

    /* Typography */
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(65, 150, 103, 0.3);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* ============================================
   Astra Theme Override - Full Width for Pillar Pages
   ============================================ */
/* Override narrow container setting from Astra theme */
.ast-narrow-container .site-content>.ast-container,
.state-pillar-page .ast-container,
.state-pillar-page .site-content .ast-container {
    max-width: 1400px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Ensure main content area is not constrained */
.state-pillar-page #primary,
.state-pillar-page .content-area {
    max-width: 100%;
    width: 100%;
}

/* ============================================
   Base Styles
   ============================================ */

/* Prevent horizontal scrolling globally while allowing full-bleed elements */
body.tax-us_state {
    overflow-x: hidden;
}

.state-pillar-page {
    font-family: var(--font-body);
    color: var(--color-neutral-800);
    line-height: 1.7;
    /* Note: overflow-x hidden removed to allow full-bleed hero section */
}

/* Override Astra Theme Container for Wide Layout */
.sp-wide-layout .ast-container,
.sp-wide-layout.state-pillar-page,
.sp-wide-layout .state-pillar-page {
    max-width: none !important;
    width: 100% !important;
}

@media (min-width: 1600px) {
    .sp-wide-layout .ast-container {
        max-width: 1800px !important;
        margin: 0 auto;
    }
}

@media (min-width: 1920px) {
    .sp-wide-layout .ast-container {
        max-width: 2200px !important;
    }
}

@media (min-width: 2400px) {
    .sp-wide-layout .ast-container {
        max-width: 95vw !important;
    }
}

.state-pillar-page *,
.state-pillar-page *::before,
.state-pillar-page *::after {
    box-sizing: border-box;
}

/* Container - Wider for better readability */
.sp-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .sp-container {
        padding: 0 48px;
    }
}

@media (min-width: 1200px) {
    .sp-container {
        padding: 0 64px;
    }
}

/* ============================================
   Hero Section - Immersive Experience
   ============================================ */
.sp-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: var(--color-primary-800);

    /* Full-bleed: Break out of container to span full viewport width */
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}


.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.sp-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--color-neutral-50) 0%, transparent 100%);
    z-index: 2;
}

.sp-hero-content {
    position: relative;
    z-index: 3;
    text-align: left !important;
    padding: 80px 24px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sp-hero-content {
        padding: 80px 48px;
    }
}

@media (min-width: 1200px) {
    .sp-hero-content {
        padding: 80px 64px;
    }
}

.sp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.sp-hero-badge svg {
    width: 18px;
    height: 18px;
}

.sp-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 24px 0;
    text-align: left !important;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.sp-hero-title span {
    background: linear-gradient(135deg, var(--color-accent-400) 0%, var(--color-accent-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin: 0 0 40px 0;
    font-weight: 400;
    text-align: left !important;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.sp-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-primary-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.sp-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    background: #ffffff;
}

.sp-hero-cta svg {
    width: 20px;
    height: 20px;
    transition: transform var(--transition-fast);
}

.sp-hero-cta:hover svg {
    transform: translateX(4px);
}

/* Scroll indicator */
.sp-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: bounce 2s infinite;
}

.sp-scroll-indicator svg {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Statistics Section - Animated Counters
   ============================================ */
.sp-stats {
    position: relative;
    margin-top: -80px;
    z-index: 10;
    padding: 0 20px;
}

.sp-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sp-stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

.sp-stat-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.sp-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.sp-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-100) 0%, var(--color-primary-200) 100%);
    border-radius: var(--radius-md);
    color: var(--color-primary-600);
}

.sp-stat-icon svg {
    width: 24px;
    height: 24px;
}

.sp-stat-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-primary-700);
    line-height: 1;
    margin-bottom: 8px;
}

.sp-stat-label {
    font-size: 0.875rem;
    color: var(--color-neutral-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Content Sections
   ============================================ */
.sp-section {
    padding: 80px 0;
}

.sp-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.sp-section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary-500);
    margin-bottom: 12px;
}

.sp-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-neutral-900);
    margin: 0 0 16px 0;
}

.sp-section-description {
    font-size: 1.125rem;
    color: var(--color-neutral-500);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Featured Parks - Premium Cards
   ============================================ */
.sp-featured {
    background: linear-gradient(180deg, var(--color-neutral-50) 0%, #ffffff 100%);
}

.sp-featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .sp-featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sp-featured-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sp-park-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.sp-park-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
}

.sp-park-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.sp-park-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.sp-park-card:hover .sp-park-card-image img {
    transform: scale(1.08);
}

.sp-park-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.sp-park-card:hover .sp-park-card-overlay {
    opacity: 1;
}

.sp-park-card-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sp-badge {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary-700);
}

.sp-badge--featured {
    background: var(--gradient-cta);
    color: #ffffff;
}

/* Feature Badges (Top Right) */
.sp-park-card-feature-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.sp-feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 193, 7, 0.95);
    /* Yellow with slight transparency */
    color: #1a1a1a;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(4px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.sp-park-card:hover .sp-feature-badge {
    transform: translateY(-2px);
    background: rgba(255, 193, 7, 1);
}

.sp-feature-badge svg {
    width: 16px;
    height: 16px;
    stroke-width: 1.8;
}


.sp-park-card-content {
    padding: 24px;
}

.sp-park-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin: 0 0 8px 0;
}

.sp-park-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.sp-park-card-title a:hover {
    color: var(--color-primary-600);
}

.sp-park-card-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--color-neutral-500);
    margin-bottom: 16px;
}

.sp-park-card-location svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary-500);
}

.sp-park-card-activities {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.sp-activity-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--color-primary-100);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary-700);
    transition: all var(--transition-fast);
}

.sp-activity-tag:hover {
    background: var(--color-primary-200);
    color: var(--color-primary-800);
}

.sp-activity-tag-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.sp-activity-tag-icon svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary-600);
}

.sp-activity-tag-name {
    line-height: 1;
}

.sp-park-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid var(--color-neutral-100);
}

.sp-park-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-600);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.sp-park-card-link:hover {
    color: var(--color-primary-700);
}

.sp-park-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.sp-park-card-link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   All Parks Grid
   ============================================ */
.sp-parks-section {
    background: var(--color-neutral-50);
}

.sp-parks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
    overflow: hidden;
}

@media (min-width: 640px) {
    .sp-parks-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: Use auto-fit with min-width to ensure park names are readable */
@media (min-width: 900px) {
    .sp-parks-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Larger screens: Increase minimum width for better readability */
@media (min-width: 1200px) {
    .sp-parks-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 18px;
    }
}

/* Extra wide screens: Maintain readable widths */
@media (min-width: 1600px) {
    .sp-parks-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 20px;
    }
}

.sp-park-item {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.875rem;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-decoration: none;
    min-width: 0;
    max-width: 100%;
    border: 1px solid transparent;
}

.sp-park-item:hover {
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.15);
    transform: translateY(-4px);
    border-color: var(--color-primary-300);
}

/* Thumbnail - Compact size for better space usage */
.sp-park-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sp-park-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-park-item-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-200) 0%, var(--color-primary-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-600);
}

.sp-park-item-placeholder svg {
    width: 24px;
    height: 24px;
}

/* Content - Next to thumbnail */
.sp-park-item-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.sp-park-item-title {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
}

/* State Row - With arrow */
.sp-park-item-state {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8125rem;
    color: var(--color-neutral-500);
}

.sp-park-item-state svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--color-primary-500);
}

.sp-park-item-state span {
    color: var(--color-neutral-600);
}

/* Arrow in state row - right aligned */
.sp-park-item-state .sp-park-item-arrow {
    margin-left: auto;
    color: var(--color-neutral-300);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
}

.sp-park-item-state .sp-park-item-arrow svg {
    width: 16px;
    height: 16px;
}

.sp-park-item:hover .sp-park-item-arrow {
    color: var(--color-primary-500);
    transform: translateX(4px);
}

/* Activities Row - Full width below thumbnail */
.sp-park-item-activities-row {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-top: 0.5rem;
    margin-top: 0.25rem;
    border-top: 1px solid var(--color-neutral-100);
    flex-wrap: wrap;
}

.sp-park-item-activities-row .sp-activity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 6px;
    color: var(--color-primary-600);
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sp-park-item-activities-row .sp-activity-icon svg {
    width: 16px;
    height: 16px;
}

/* Highlighted state for selected activity filter */
.sp-park-item-activities-row .sp-activity-icon.sp-activity-highlighted,
.sp-activity-icon.sp-activity-highlighted {
    background: linear-gradient(135deg, #166534 0%, #14532d 100%) !important;
    color: white !important;
    box-shadow: 0 2px 6px rgba(22, 101, 52, 0.35) !important;
}

.sp-park-item:hover .sp-activity-icon.sp-activity-highlighted {
    background: linear-gradient(135deg, #14532d 0%, #022c22 100%);
    transform: scale(1.1);
}

/* Activity Icon Tooltip */
.sp-park-item-activities-row .sp-activity-icon::after {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: linear-gradient(135deg, #14532d 0%, #166534 100%);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(20, 83, 45, 0.3);
}

.sp-park-item-activities-row .sp-activity-icon::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #14532d;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.sp-park-item-activities-row .sp-activity-icon:hover::after,
.sp-park-item-activities-row .sp-activity-icon:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sp-park-item-activities-row .sp-activity-icon:hover::before {
    transform: translateX(-50%);
}

/* +X Tooltip - Higher z-index to appear above all elements */
.sp-activity-more-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    background: var(--color-primary-200);
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary-700);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.sp-activity-more-tooltip:hover {
    background: var(--color-primary-500);
    color: white;
}

/* ============================================
   Main Content Area
   ============================================ */
.sp-content-section {
    background: #ffffff;
}

.sp-content-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .sp-content-wrapper {
        grid-template-columns: 2fr 1fr;
    }
}

.sp-main-content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.sp-main-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-neutral-900);
    margin: 48px 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--color-primary-400);
}

.sp-main-content h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-neutral-800);
    margin: 32px 0 16px 0;
}

.sp-main-content p {
    margin: 0 0 20px 0;
    color: var(--color-neutral-600);
}

.sp-main-content a {
    color: var(--color-primary-600);
    text-decoration: underline;
    text-decoration-color: var(--color-primary-300);
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

.sp-main-content a:hover {
    color: var(--color-primary-700);
    text-decoration-color: var(--color-primary-500);
}

/* Sidebar - Sticky with TOC */
.sp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1024px) {
    .sp-sidebar {
        position: sticky;
        top: 24px;
        align-self: start;
        max-height: calc(100vh - 48px);
        overflow-y: auto;
    }
}

.sp-sidebar-card {
    background: var(--color-neutral-50);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1px solid var(--color-neutral-200);
}

.sp-sidebar-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-primary-300);
}

.sp-sidebar-title svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-500);
}

/* Table of Contents */
.sp-toc {
    background: linear-gradient(135deg, var(--color-primary-100) 0%, var(--color-neutral-50) 100%);
    border: 1px solid var(--color-primary-200);
}

.sp-toc-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sp-toc-list li {
    margin-bottom: 8px;
}

.sp-toc-list li.sp-toc-sub {
    padding-left: 16px;
}

.sp-toc-list a {
    display: block;
    padding: 8px 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-neutral-600);
    text-decoration: none;
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: all var(--transition-fast);
}

.sp-toc-list a:hover {
    color: var(--color-primary-700);
    background: rgba(65, 150, 103, 0.1);
    border-left-color: var(--color-primary-400);
}

.sp-toc-list a.sp-toc-active {
    color: var(--color-primary-700);
    background: rgba(65, 150, 103, 0.15);
    border-left-color: var(--color-primary-500);
    font-weight: 600;
}

.sp-toc-sub a {
    font-size: 0.8125rem;
    padding: 6px 12px;
}

/* Reading Progress Bar */
.sp-toc-progress {
    margin-top: 16px;
    height: 4px;
    background: var(--color-neutral-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.sp-toc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary-500) 0%, var(--color-accent-400) 100%);
    width: 0%;
    transition: width 100ms ease-out;
}

/* Quick Links */
.sp-quick-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sp-quick-links li {
    margin-bottom: 10px;
}

.sp-quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--color-primary-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.sp-quick-links a:hover {
    background: var(--color-primary-100);
    color: var(--color-primary-700);
}

.sp-quick-links svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Activity Tags */
.sp-activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================
   CTA Section
   ============================================ */
.sp-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary-800) 0%, var(--color-primary-700) 50%, var(--color-primary-600) 100%);
    position: relative;
    overflow: hidden;
}

.sp-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.sp-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.sp-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.sp-cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 32px 0;
}

.sp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #ffffff;
    color: var(--color-primary-700);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.sp-cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.sp-cta-button svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Empty State
   ============================================ */
.sp-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-neutral-50);
    border-radius: var(--radius-xl);
}

.sp-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-100);
    border-radius: 50%;
    color: var(--color-primary-500);
}

.sp-empty-icon svg {
    width: 40px;
    height: 40px;
}

.sp-empty-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-neutral-800);
    margin: 0 0 12px 0;
}

.sp-empty-text {
    color: var(--color-neutral-500);
    margin: 0;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-12px);
    }

    60% {
        transform: translateX(-50%) translateY(-6px);
    }
}

/* Scroll-triggered animations - with fallback for visibility */
.sp-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Fallback: show content if JS hasn't run after 1.5s */
@media (prefers-reduced-motion: no-preference) {
    .sp-animate {
        animation: revealFallback 0.6s ease-out 1.5s forwards;
    }
}

@keyframes revealFallback {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sp-animate.sp-visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
    /* Cancel fallback when JS works */
}

/* Reduced motion: show immediately */
@media (prefers-reduced-motion: reduce) {
    .sp-animate {
        opacity: 1;
        transform: translateY(0);
        transition: none;
        animation: none;
    }
}

.sp-animate-delay-1 {
    transition-delay: 0.1s;
}

.sp-animate-delay-2 {
    transition-delay: 0.2s;
}

.sp-animate-delay-3 {
    transition-delay: 0.3s;
}

.sp-animate-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 768px) {
    .sp-hero {
        min-height: 70vh;
        background-attachment: scroll;
    }

    .sp-hero-content {
        padding: 60px 20px;
    }

    .sp-scroll-indicator {
        display: none;
    }

    .sp-section {
        padding: 60px 0;
    }
}

/* Print styles */
@media print {
    .sp-hero {
        min-height: auto;
        background: var(--color-primary-700) !important;
    }

    .sp-stats {
        margin-top: 0;
    }
}

/* ============================================
   Multi-Select Filter Bar
   ============================================ */
.sp-filter-bar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
}

.sp-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.sp-filter-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-neutral-600);
}

.sp-filter-label svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-500);
}

.sp-filter-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sp-active-filters {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-primary-600);
    text-transform: capitalize;
}

.sp-filter-clear {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--color-neutral-100);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-neutral-500);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sp-filter-clear:hover {
    background: var(--color-accent-100);
    color: var(--color-accent-700);
}

.sp-filter-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    overflow: hidden;
}

.sp-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.sp-filter-buttons.sp-expanded {
    flex-wrap: wrap;
}

.sp-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--color-neutral-100);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-neutral-600);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.sp-filter-btn:hover {
    background: var(--color-primary-100);
    color: var(--color-primary-700);
    border-color: var(--color-primary-200);
}

.sp-filter-btn.active {
    background: var(--color-primary-500);
    color: #ffffff;
    border-color: var(--color-primary-600);
}

.sp-filter-btn.active:hover {
    background: var(--color-primary-600);
    border-color: var(--color-primary-700);
}

.sp-filter-btn.sp-btn-hidden {
    display: none !important;
}

.sp-filter-btn.sp-filter-all {
    background: var(--color-neutral-200);
    font-weight: 600;
}

.sp-filter-btn.sp-filter-all.active {
    background: var(--color-primary-600);
}

.sp-filter-btn .sp-filter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.sp-filter-btn .sp-filter-icon svg {
    width: 16px;
    height: 16px;
    max-width: 16px;
    max-height: 16px;
}

.sp-filter-btn .sp-filter-name {
    display: inline;
}

.sp-filter-btn .sp-filter-count-badge {
    display: none;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 700;
}

.sp-filter-btn.active .sp-filter-count-badge {
    background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 1024px) {
    .sp-filter-btn .sp-filter-count-badge {
        display: inline-block;
    }
}

/* More button */
.sp-filter-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    background: var(--color-accent-100);
    border: 2px solid var(--color-accent-200);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent-700);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.sp-filter-more:hover {
    background: var(--color-accent-200);
    border-color: var(--color-accent-300);
}

.sp-filter-more .sp-more-count {
    font-weight: 700;
}

/* Filter Sections */
.sp-filter-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--color-neutral-200);
}

.sp-filter-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.sp-filter-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature-specific button styling (blue instead of green) */
.sp-filter-btn.sp-filter-feature {
    background: var(--color-neutral-100);
}

.sp-filter-btn.sp-filter-feature:hover {
    background: #dbeafe;
    color: #1e40af;
    border-color: #93c5fd;
}

.sp-filter-btn.sp-filter-feature.active {
    background: #3b82f6;
    color: #ffffff;
    border-color: #2563eb;
}

.sp-filter-btn.sp-filter-feature.active:hover {
    background: #2563eb;
    border-color: #1d4ed8;
}

/* Results count */
.sp-filter-results {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-600);
    padding: 8px 16px;
    background: var(--color-primary-100);
    border-radius: var(--radius-full);
    align-self: flex-start;
}

.sp-filter-results span {
    font-weight: 700;
}

/* ============================================
   Activity Icons on Park Cards
   ============================================ */
.sp-park-item-activities {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 0.5rem;
    flex-wrap: nowrap;
    overflow: hidden;
}

.sp-activity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
    background: var(--color-primary-100);
    border-radius: var(--radius-sm);
    color: var(--color-primary-600);
    transition: all var(--transition-fast);
    flex-shrink: 0;
    overflow: hidden;
}

.sp-activity-icon svg {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    min-height: 16px !important;
    max-height: 16px !important;
    flex-shrink: 0;
}

.sp-park-item:hover .sp-activity-icon {
    background: var(--color-primary-200);
    color: var(--color-primary-700);
}

.sp-activity-more-tooltip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    background: var(--color-primary-200);
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-primary-700);
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.sp-activity-more-tooltip:hover {
    background: var(--color-primary-500);
    color: white;
}

/* Tooltip on hover - Forest Green theme for visual consistency */
.sp-activity-more-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: linear-gradient(135deg, #14532d 0%, #166534 100%);
    color: white;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: normal;
    max-width: 280px;
    text-align: center;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999999;
    box-shadow: 0 8px 24px rgba(20, 83, 45, 0.35);
    pointer-events: none;
}

/* Tooltip arrow - Forest Green */
.sp-activity-more-tooltip::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 2px);
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-top-color: #14532d;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 999999;
}

.sp-activity-more-tooltip:hover::after,
.sp-activity-more-tooltip:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sp-activity-more-tooltip:hover::before {
    transform: translateX(-50%);
}

/* Global SVG size fix for filter and activity icons */
.sp-filter-bar svg,
.sp-filter-btn svg,
.sp-filter-icon svg,
.sp-filter-label svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
}

/* Filter - Hidden Parks */
.sp-park-item.sp-hidden {
    display: none !important;
}

/* Filter active animation */
.sp-parks-grid.sp-filtering .sp-park-item {
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sp-parks-grid.sp-filtering .sp-park-item.sp-hidden {
    opacity: 0;
    transform: scale(0.9);
}

/* ============================================
   Park Finder Shortcode Styles
   ============================================ */
.sp-park-finder {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: var(--font-body, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
}

/* Statistics Row */
.sp-finder-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--gradient-card, linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%));
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sp-finder-stat {
    text-align: center;
}

.sp-finder-stat-number {
    display: block;
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary-700, #275a3d);
}

.sp-finder-stat-label {
    font-size: 0.875rem;
    color: var(--color-neutral-500, #6b7280);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Filter Bar */
.sp-finder-filters {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-neutral-200, #e5e7eb);
}

.sp-finder-filter-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sp-finder-filter-row:last-child {
    margin-bottom: 0;
}

.sp-finder-filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.sp-finder-filter-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: var(--color-neutral-600, #4b5563);
    white-space: nowrap;
}

.sp-finder-filter-label svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-500, #419667);
}

/* Activity Buttons */
.sp-finder-activity-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sp-finder-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--color-neutral-100, #f3f4f6);
    border: 1px solid var(--color-neutral-200, #e5e7eb);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-neutral-700, #374151);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sp-finder-btn:hover {
    background: var(--color-primary-100, #e4f7eb);
    border-color: var(--color-primary-300, #8cd4a8);
    color: var(--color-primary-700, #275a3d);
}

.sp-finder-btn.active {
    background: var(--color-primary-600, #347852);
    border-color: var(--color-primary-600, #347852);
    color: #fff;
}

.sp-finder-btn-count {
    font-size: 0.75rem;
    padding: 2px 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.sp-finder-btn.active .sp-finder-btn-count {
    background: rgba(255, 255, 255, 0.25);
}

/* State Dropdown */
.sp-finder-state-select {
    padding: 10px 36px 10px 14px;
    border: 1px solid var(--color-neutral-300, #d1d5db);
    border-radius: 8px;
    background-size: 16px;
    font-size: 0.95rem;
    cursor: pointer;
    appearance: none;
    min-width: 200px;
}

.sp-finder-state-select:focus {
    outline: none;
    border-color: var(--color-primary-500, #419667);
    box-shadow: 0 0 0 3px rgba(65, 150, 103, 0.15);
}

/* Results Counter */
.sp-finder-results {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--color-neutral-600, #4b5563);
}

.sp-finder-count {
    font-weight: 700;
    color: var(--color-primary-700, #275a3d);
}

.sp-finder-clear {
    padding: 6px 12px;
    background: var(--color-neutral-100, #f3f4f6);
    border: 1px solid var(--color-neutral-300, #d1d5db);
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s;
}

.sp-finder-clear:hover {
    background: #fee2e2;
    border-color: #fecaca;
    color: #dc2626;
}

/* Parks Grid */
.sp-finder-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 40px;
}

.sp-finder-grid-2col {
    grid-template-columns: repeat(2, 1fr);
}

.sp-finder-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

.sp-finder-grid-4col {
    grid-template-columns: repeat(4, 1fr);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .sp-finder-grid-4col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .sp-finder-grid-3col,
    .sp-finder-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .sp-finder-stats {
        gap: 20px;
        padding: 16px;
    }

    .sp-finder-stat-number {
        font-size: 1.5rem;
    }

    .sp-finder-filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .sp-finder-results {
        margin-left: 0;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {

    .sp-finder-grid-2col,
    .sp-finder-grid-3col,
    .sp-finder-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* Park Card */
.sp-finder-park {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--color-neutral-200, #e5e7eb);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.sp-finder-park:hover {
    border-color: var(--color-primary-300, #8cd4a8);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.sp-finder-park-image {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.sp-finder-park-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sp-finder-park-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-200, #b8e8c9) 0%, var(--color-primary-300, #8cd4a8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-600, #347852);
}

.sp-finder-park-info {
    flex: 1;
    min-width: 0;
}

.sp-finder-park-title {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-neutral-900, #111827);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sp-finder-park-state {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--color-neutral-500, #6b7280);
    margin-bottom: 6px;
}

.sp-finder-park-state svg {
    width: 12px;
    height: 12px;
}

.sp-finder-park-activities {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.sp-finder-activity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--color-primary-100, #e4f7eb);
    border-radius: 4px;
    color: var(--color-primary-600, #347852);
}

.sp-finder-activity-icon svg {
    width: 14px;
    height: 14px;
}

/* Browse by State Section */
.sp-finder-states {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, var(--color-primary-800, #1a3c28) 0%, var(--color-primary-700, #275a3d) 100%);
    border-radius: 16px;
}

.sp-finder-states-title {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin: 0 0 24px 0;
}

.sp-finder-states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.sp-finder-state-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.sp-finder-state-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.sp-finder-state-count {
    font-size: 0.75rem;
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

/* Empty State */
.sp-finder-empty {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-neutral-50, #f9fafb);
    border-radius: 12px;
    color: var(--color-neutral-500, #6b7280);
}

/* ============================================
   Wide Layout Mode (for Search/Directory Pages)
   ============================================ */
.sp-wide-layout .sp-container {
    max-width: 1600px;
    padding: 0 40px;
}

/* Progressive Width Expansion for Large Monitors */
@media (min-width: 1600px) {
    .sp-wide-layout .sp-container {
        max-width: 1800px;
        padding: 0 48px;
    }
}

@media (min-width: 1920px) {
    .sp-wide-layout .sp-container {
        max-width: 2200px;
        padding: 0 60px;
    }
}

@media (min-width: 2400px) {
    .sp-wide-layout .sp-container {
        max-width: 95vw;
        padding: 0 80px;
    }
}

/* Progressive Grid Columns for Large Screens */
@media (min-width: 1400px) {
    .sp-wide-layout .sp-parks-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1800px) {
    .sp-wide-layout .sp-parks-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }
}

@media (min-width: 2400px) {
    .sp-wide-layout .sp-parks-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 28px;
    }
}

/* ============================================
   Marketing & USP Styles
   ============================================ */

/* USP Badge */
.sp-usp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out;
}

.sp-usp-badge svg {
    width: 18px;
    height: 18px;
}

/* Trust Signals Bar */
.sp-trust-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.sp-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent-400, #fbbf24);
}

/* Value Proposition Cards */
/* Value Proposition Cards - positioned below hero with proper spacing */
.sp-value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 60px 20px 40px 20px;
    position: relative;
    z-index: 15;
    background: linear-gradient(180deg, #f0f5f1 0%, #f8fafc 100%);
}

.sp-value-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.sp-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.sp-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-100) 0%, var(--color-primary-200) 100%);
    border-radius: 12px;
    color: var(--color-primary-600);
    font-size: 1.5rem;
}

.sp-value-content h4 {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-neutral-900);
    margin: 0 0 6px 0;
}

.sp-value-content p {
    font-size: 0.9rem;
    color: var(--color-neutral-500);
    margin: 0;
    line-height: 1.5;
}

/* Enhanced Filter Labels */
.sp-filter-question {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-neutral-800);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-filter-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary-500);
}

/* Results Counter Enhancement */
.sp-filter-results-enhanced {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-primary-700);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--color-primary-100) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 30px;
}

.sp-filter-results-enhanced .sp-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary-600);
}

/* Updated Badge */
.sp-updated-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-neutral-500);
    padding: 4px 10px;
    background: var(--color-neutral-100);
    border-radius: 20px;
}

.sp-updated-badge svg {
    width: 12px;
    height: 12px;
}

/* CTA Enhancement */
.sp-hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
    color: var(--color-primary-700);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.sp-hero-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sp-hero-cta-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.sp-hero-cta-primary:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .sp-value-props {
        grid-template-columns: 1fr;
        padding: 24px 16px;
    }

    .sp-trust-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .sp-trust-item {
        justify-content: center;
    }
}

/* Stats Section - proper spacing below value props */
.sp-stats {
    padding: 40px 0 60px 0;
    margin-top: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* WordPress Content Styling (below stats) */
.sp-section.sp-featured {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #ffffff;
}

.sp-section.sp-featured .entry-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sp-section.sp-featured .entry-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-neutral-600, #4b5563);
    margin-bottom: 1rem;
}

.sp-section.sp-featured .entry-content p:first-child {
    font-size: 1.15rem;
    color: var(--color-neutral-700, #374151);
}

/* ============================================
   Enhanced Mobile Responsive Rules
   ============================================ */

/* Tablet Portrait - Content stays readable */
@media (max-width: 1023px) {
    .sp-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .sp-sidebar {
        position: static;
        max-height: none;
        overflow: visible;
        order: 2;
        /* Sidebar appears after main content */
    }

    .sp-main-content {
        order: 1;
    }
}

/* Small tablets and large phones */
@media (max-width: 768px) {

    /* Hero Section */
    .sp-hero {
        min-height: 60vh;
    }

    .sp-hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .sp-hero-subtitle {
        font-size: 1rem;
    }

    .sp-hero-cta {
        padding: 14px 28px;
        font-size: 0.9375rem;
    }

    /* Statistics Section */
    .sp-stats {
        margin-top: -50px;
        padding: 0 16px;
    }

    .sp-stat-card {
        padding: 20px 16px;
    }

    .sp-stat-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .sp-stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .sp-stat-number {
        font-size: 1.5rem !important;
    }

    .sp-stat-label {
        font-size: 0.75rem;
    }

    /* Container / Content Area */
    .sp-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .sp-section {
        padding: 48px 0;
    }

    .sp-section-title {
        font-size: 1.5rem;
    }

    .sp-section-description {
        font-size: 0.9375rem;
    }

    /* Featured Parks Grid */
    .sp-featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Sidebar Cards */
    .sp-sidebar-card {
        padding: 16px;
    }

    .sp-sidebar-title {
        font-size: 0.9375rem;
    }

    /* CTA Section */
    .sp-cta-section {
        padding: 60px 0;
    }

    .sp-cta-button {
        padding: 14px 32px;
        font-size: 0.9375rem;
    }
}

/* Phones - Compact Layout */
@media (max-width: 640px) {

    /* Hero */
    .sp-hero {
        min-height: 50vh;
    }

    .sp-hero-content {
        padding: 40px 16px;
    }

    .sp-hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    /* Stats - Horizontal scroll on mobile */
    .sp-stats-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .sp-stat-card {
        flex: 0 0 auto !important;
        min-width: 130px;
        padding: 16px 12px;
        scroll-snap-align: start;
    }

    .sp-stat-number {
        font-size: 1.25rem !important;
    }

    /* Main Content Typography */
    .sp-main-content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .sp-main-content h2 {
        font-size: 1.375rem;
        margin: 32px 0 16px 0;
    }

    .sp-main-content h3 {
        font-size: 1.125rem;
        margin: 24px 0 12px 0;
    }

    /* Content wrapper - ensure single column on mobile */
    .sp-content-wrapper {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .sp-main-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Fix text overflow in lists */
    .sp-main-content ul,
    .sp-main-content ol {
        padding-left: 20px !important;
        padding-right: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        overflow-wrap: break-word !important;
    }

    .sp-main-content li {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
        hyphens: auto;
        max-width: 100%;
    }

    /* Parks Grid - Single Column */
    .sp-parks-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sp-park-item {
        padding: 12px;
        gap: 10px;
    }

    .sp-park-item-image {
        width: 64px;
        height: 64px;
    }

    .sp-park-item-title {
        font-size: 0.875rem;
    }

    /* Filter Bar */
    .sp-filter-bar {
        padding: 16px;
        gap: 12px;
    }

    .sp-filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Activity Tags */
    .sp-activity-tag {
        padding: 4px 10px;
        font-size: 0.6875rem;
    }

    /* TOC - Hide on small phones */
    .sp-toc {
        display: none;
    }

    /* Map Container */
    .sp-map-container {
        border-radius: var(--radius-md);
    }
}

/* ==========================================================================
   Additional Mobile Layout Fixes (640px and below)
   ========================================================================== */

@media (max-width: 640px) {

    /* Prevent horizontal overflow on page */
    .state-pillar-page .sp-main-content,
    .state-pillar-page .sp-section {
        overflow-x: hidden;
    }

    /* Better container padding on mobile */
    .sp-container {
        padding: 0 16px !important;
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Extra small phones - additional refinements */
@media (max-width: 480px) {
    .sp-hero-title {
        font-size: 1.5rem;
    }

    .sp-section-header {
        text-align: left;
    }

    .sp-section-title {
        font-size: 1.25rem;
    }

    .sp-filter-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sp-stat-card {
        min-width: 120px;
        padding: 12px 10px;
    }
}
/* Arrow replacement (removed SVGs to reduce DOM size) */
.sp-park-item-arrow::after {
    content: "→";
    font-size: 1.2rem;
    font-weight: 500;
}

/* Park type chips on cards (finder list + state hub cards) */
.sp-park-item-type {
    display: inline-block;
    margin: 2px 0 6px;
    padding: 2px 9px;
    border: 1px solid rgba(26, 61, 26, 0.25);
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #4a6b4a;
}
.sp-card-type-chip {
    display: inline-block;
    background: rgba(255, 255, 255, 0.92);
    color: #1a3d1a;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.4;
}

/**
 * AJAX Live Search Dropdown Styles
 */

/* Wrapper for positioning */
.asp-live-search-wrapper {
    position: relative;
    width: 100%;
}

/* Dropdown container */
.asp-live-search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 8px;
    max-height: 70vh;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
}

/* Section styling */
.asp-live-search-section {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.asp-live-search-section:last-of-type {
    border-bottom: none;
}

.asp-live-search-section-title {
    padding: 8px 16px 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

/* Search item base */
.asp-live-search-item {
    transition: background 0.15s ease;
}

.asp-live-search-item a {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    text-decoration: none;
    color: inherit;
}

.asp-live-search-item:hover,
.asp-live-search-item.selected {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(139, 195, 74, 0.1));
}

/* Park result item */
.asp-live-search-park-image {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px;
}

.asp-live-search-park-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asp-live-search-park-info {
    flex: 1;
    min-width: 0;
}

.asp-live-search-park-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a5a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.asp-live-search-park-title mark {
    background: rgba(76, 175, 80, 0.25);
    color: inherit;
    padding: 0 2px;
    border-radius: 2px;
}

.asp-live-search-park-state {
    font-size: 0.8rem;
    color: #666;
    margin-top: 2px;
}

.asp-live-search-park-activities {
    font-size: 0.75rem;
    color: #888;
    margin-top: 2px;
}

/* State result item */
.asp-live-search-state a {
    justify-content: space-between;
}

.asp-live-search-state-name {
    font-weight: 500;
    color: #333;
}

.asp-live-search-state-name mark {
    background: rgba(76, 175, 80, 0.25);
    color: inherit;
    padding: 0 2px;
    border-radius: 2px;
}

.asp-live-search-state-count {
    font-size: 0.8rem;
    color: #888;
    background: #f5f5f5;
    padding: 2px 10px;
    border-radius: 12px;
}

/* Loading state */
.asp-live-search-loading {
    padding: 24px;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.asp-live-search-loading .spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #e0e0e0;
    border-top-color: #4CAF50;
    border-radius: 50%;
    animation: asp-spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes asp-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Empty state */
.asp-live-search-empty {
    padding: 32px 24px;
    text-align: center;
}

.asp-live-search-empty-icon {
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 8px;
}

.asp-live-search-empty-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 4px;
}

.asp-live-search-empty-hint {
    font-size: 0.8rem;
    color: #888;
}

/* Footer with View All */
.asp-live-search-footer {
    padding: 8px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
    border-radius: 0 0 12px 12px;
}

.asp-live-search-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a5a1a;
    text-decoration: none;
    transition: background 0.2s ease;
}

.asp-live-search-view-all:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #1a5a1a;
}

.asp-live-search-view-all svg {
    width: 16px;
    height: 16px;
}

/* Error state */
.asp-live-search-error {
    padding: 24px;
    text-align: center;
    color: #dc3545;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .asp-live-search-dropdown {
        /* Keep position absolute to stay under search input */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 60vh;
        border-radius: 12px;
        margin-top: 8px;
    }

    .asp-live-search-park-image {
        width: 40px;
        height: 40px;
    }

    .asp-live-search-popular-tags {
        gap: 6px;
    }

    .asp-live-search-popular-tag {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* ==========================================================================
   POPULAR SEARCHES
   ========================================================================== */

.asp-live-search-popular {
    padding: 16px;
}

.asp-live-search-popular-header {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.asp-live-search-popular-section {
    margin-bottom: 16px;
}

.asp-live-search-popular-section:last-child {
    margin-bottom: 0;
}

.asp-live-search-popular-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 8px;
}

/* Tag-based layout for states and activities */
.asp-live-search-popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.asp-live-search-popular-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* State tags - dark green */
.asp-popular-state {
    background: linear-gradient(135deg, rgba(26, 90, 26, 0.1), rgba(45, 125, 45, 0.08));
    color: #1a5a1a;
    border: 1px solid rgba(26, 90, 26, 0.15);
}

.asp-popular-state:hover {
    background: #1a5a1a;
    color: white;
    transform: translateY(-1px);
}

.asp-popular-state .tag-count {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-left: 2px;
}

/* Activity tags - lighter green */
.asp-popular-activity {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(139, 195, 74, 0.08));
    color: #2d7d2d;
    border: 1px solid rgba(76, 175, 80, 0.15);
}

.asp-popular-activity:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-1px);
}

/* Featured park links */
.asp-live-search-popular-park {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    margin-bottom: 4px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.asp-live-search-popular-park:hover {
    background: rgba(76, 175, 80, 0.08);
}

.popular-park-name {
    font-weight: 500;
    color: #1a5a1a;
    font-size: 0.9rem;
}

.popular-park-state {
    font-size: 0.8rem;
    color: #666;
}

/* ==========================================================================
   SEARCH HISTORY
   ========================================================================== */

.asp-history-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.asp-clear-history {
    background: none;
    border: none;
    font-size: 0.7rem;
    color: #888;
    cursor: pointer;
    padding: 2px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.asp-clear-history:hover {
    background: #fee;
    color: #c00;
}

.asp-live-search-history {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.asp-history-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #555;
    transition: background 0.15s ease;
}

.asp-history-item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #1a5a1a;
}

.history-icon {
    font-size: 0.9rem;
    opacity: 0.5;
}

.history-term {
    flex: 1;
    font-size: 0.9rem;
}

/* ==========================================================================
   DID YOU MEAN SUGGESTIONS
   ========================================================================== */

.asp-live-search-suggestions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed #e0e0e0;
}

.asp-suggestions-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.asp-suggestions-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.asp-suggestion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(139, 195, 74, 0.05));
    border-radius: 8px;
    text-decoration: none;
    color: #1a5a1a;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.asp-suggestion-item:hover {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(139, 195, 74, 0.1));
    transform: translateX(4px);
    color: #1a5a1a;
}

.suggestion-icon {
    font-size: 1rem;
}

.suggestion-term {
    font-size: 0.9rem;
}
/* ===== 🐾 Pet-Box (Pets&Wildlife Phase 3, 2026-07-16) — Profile + State-Hubs ===== */
.sp-pet-box{background:#eef5ec;border-radius:12px;padding:28px 30px;margin:2.2rem 0}
.sp-pet-box-title{margin:0 0 1rem;font-size:1.45rem}
.sp-pet-box-park-note{margin:0 0 1rem}
.sp-pet-box-rules{margin:0 0 1.2rem;display:grid;gap:.55rem}
.sp-pet-box-row{display:grid;grid-template-columns:200px 1fr;gap:.4rem 1rem;padding:.55rem 0;border-bottom:1px solid #dfe8dc}
.sp-pet-box-row:last-child{border-bottom:none}
.sp-pet-box-row dt{font-weight:600;color:#1a3d1a}
.sp-pet-box-row dd{margin:0}
.sp-pet-box-row--park dt{color:#b45309}
.sp-pet-box-scope{display:inline-block;font-size:.72rem;font-weight:600;text-transform:uppercase;letter-spacing:.03em;color:#5a6e5a;background:#fff;border-radius:6px;padding:1px 7px;vertical-align:middle}
.sp-pet-box-faq{margin:0 0 .9rem}
.sp-pet-box-source{margin:0;font-size:.9rem;color:#5a6e5a}
.sp-pet-box--state{max-width:900px;margin:1.5rem auto 0}
@media(max-width:640px){.sp-pet-box{padding:20px 18px}.sp-pet-box-row{grid-template-columns:1fr}}
/* Wildlife-Box (amber Akzent) */
.sp-wildlife-box{background:#fdf3e3}
.sp-wildlife-box .sp-pet-box-title{margin-bottom:.9rem}
.sp-wildlife-watch{margin:0 0 .9rem}
.sp-wildlife-caution{margin:0 0 .9rem}

.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media(max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media(max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}﻿.wp-block-uagb-table-of-contents .uagb-toc__wrap{display:inline-block;max-width:-moz-available;max-width:-webkit-fill-available;max-width:fill-available}.wp-block-uagb-table-of-contents li.uagb-toc__list{padding-top:10px}.wp-block-uagb-table-of-contents ul.uagb-toc__list,.wp-block-uagb-table-of-contents ol.uagb-toc__list{list-style-position:inside;padding-left:0;margin-bottom:0;margin-left:2.2em}.wp-block-uagb-table-of-contents ul.uagb-toc__list li,.wp-block-uagb-table-of-contents ol.uagb-toc__list li{margin:0}.wp-block-uagb-table-of-contents ul li:empty{display:none}.wp-block-uagb-table-of-contents .uagb-toc__title-wrap{display:flex;align-items:center}.wp-block-uagb-table-of-contents .uagb-toc__title{display:flex;align-items:center}.wp-block-uagb-table-of-contents .uagb-toc__is-collapsible.uagb-toc__title-wrap{cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap svg{width:20px;height:20px}.wp-block-uagb-table-of-contents svg{width:20px;height:20px;display:inline-block;margin-left:10px;cursor:pointer}.wp-block-uagb-table-of-contents .uag-toc__collapsible-wrap{display:flex;margin-left:10px;cursor:pointer}.wp-block-uagb-table-of-contents.uagb-toc__collapse .uagb-toc__list-wrap{display:none}.wp-block-uagb-table-of-contents.uagb-toc__collapse--list ul.uagb-toc__list,.wp-block-uagb-table-of-contents.uagb-toc__collapse--list ol.uagb-toc__list{padding-left:2px}ol.uagb-toc__list li.uagb-toc__list ul,ol.uagb-toc__list ul.uagb-toc__list ul{list-style-type:circle}ol.uagb-toc__list>ul,ol.uagb-toc__list>li{list-style-type:disc}.uagb-toc__scroll-top{position:fixed;right:50px;bottom:50px;display:none;padding:10px;background:#ccd0d4;cursor:pointer;font-size:1rem;line-height:1.8571428571}.uagb-toc__scroll-top svg{width:1.6em;height:.6em;margin-left:0;transform:translate(0, -20%) rotate(180deg);fill:currentColor}.uagb-toc__scroll-top.uagb-toc__show-scroll{display:inline-table}body[class*=astra] .uagb-toc__list{line-height:normal}.uagb-toc__list{margin-top:0}.wp-block-uagb-table-of-contents ol.uagb-toc__list li.uagb-toc__list.uagb-toc__list--expandable{list-style-type:none !important}ul.uagb-toc__list--child-of-closed-list{padding-top:0 !important}ul.uagb-toc__list--hidden-child{display:none !important}.list-open::before,.list-collapsed::before{content:"▼"/"";transition:transform .3s ease;transform:scale(0.7) translateX(-50%);display:inline-block}.list-collapsed::before{transform:scale(0.7) rotate(-90deg) translate(-84%, 6%)}span.list-open,span.list-collapsed{cursor:pointer;outline:none !important}.uagb-toc__list.transition{transition:max-height 300ms ease-in-out,padding-top 300ms ease-in-out}.uagb-toc__loader{border:2px solid #f3f3f3;border-top:2px solid #0073aa;border-radius:50%;width:20px;height:20px;animation:spin 1.1s linear infinite;display:block;position:absolute;margin-top:5px}.uagb-toc__list-hidden{opacity:0}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}[dir=rtl] .list-open::before{transform:scale(0.7) translateX(50%)}[dir=rtl] .list-collapsed::before{transform:scale(0.7) rotate(90deg) translate(84%, 6%)}[dir=rtl] .wp-block-uagb-table-of-contents.uagb-toc__collapse--list ul.uagb-toc__list,[dir=rtl] .wp-block-uagb-table-of-contents.uagb-toc__collapse--list ol.uagb-toc__list{padding-left:0;padding-right:2px;margin-left:0;margin-right:2.2em}.uagb-block-676e2c44.wp-block-uagb-table-of-contents{text-align: left;}.uagb-block-676e2c44 .uagb-toc__list-wrap li a:hover{color: #176125;}.uagb-block-676e2c44 .uagb-toc__list-wrap li a{color: #54595F;}.uagb-block-676e2c44 .uagb-toc__wrap .uagb-toc__title-wrap{justify-content: left;margin-bottom: 17px;}.uagb-block-676e2c44 .uagb-toc__wrap .uagb-toc__title{justify-content: space-between;margin-bottom: 17px;cursor: pointer;}.uagb-block-676e2c44 .uagb-toc__wrap{border-top-width: 1px;border-left-width: 1px;border-right-width: 1px;border-bottom-width: 1px;border-top-left-radius: 0px;border-top-right-radius: 0px;border-bottom-left-radius: 0px;border-bottom-right-radius: 0px;border-color: #333;border-style: none;padding-left: 30px;padding-right: 30px;padding-top: 30px;padding-bottom: 30px;background: #fff;width: 100%;}.uagb-block-676e2c44 .uagb-toc__list-wrap{column-count: 1;overflow: hidden;text-align: left;}.uagb-block-676e2c44 .uagb-toc__list-wrap > ul.uagb-toc__list > li:first-child{padding-top: 0;}.uagb-block-676e2c44 .uagb-toc__list-wrap ul.uagb-toc__list:last-child > li:last-child{padding-bottom: 0;}.uagb-block-676e2c44 .uag-toc__collapsible-wrap svg{width: 138px;height: 138px;}.uagb-block-676e2c44 svg{width: 138px;height: 138px;}.uagb-block-676e2c44 .uagb-toc__list{list-style-type: none !important;}.uagb-block-676e2c44 .uagb-toc__list .uagb-toc__list{list-style-type: none !important;}.uagb-block-676e2c44 .uagb-toc__title{font-weight: Default;font-size: 20px;}.uagb-block-676e2c44 .uagb-toc__list-wrap ol li a{text-decoration: underline;}@media only screen and (max-width: 976px) {.uagb-block-676e2c44 .uagb-toc__wrap{border-style: none;}.uagb-block-676e2c44 .uagb-toc__list-wrap{column-count: 1;overflow: hidden;text-align: left;}.uagb-block-676e2c44 .uagb-toc__list-wrap > ul.uagb-toc__list > li:first-child{padding-top: 0;}.uagb-block-676e2c44 .uagb-toc__list-wrap ul.uagb-toc__list:last-child > li:last-child{padding-bottom: 0;}}@media only screen and (max-width: 767px) {.uagb-block-676e2c44 .uagb-toc__wrap{border-style: none;}.uagb-block-676e2c44 .uagb-toc__list-wrap{column-count: 1;overflow: hidden;text-align: left;}.uagb-block-676e2c44 .uagb-toc__list-wrap > ul.uagb-toc__list > li:first-child{padding-top: 0;}.uagb-block-676e2c44 .uagb-toc__list-wrap ul.uagb-toc__list:last-child > li:last-child{padding-bottom: 0;}}
/**
Theme Name: Astra
Theme URI: https://wpastra.com/
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Version: 4.13.10
Requires at least: 5.3
WC requires at least: 3.0
WC tested up to: 11.0.1
Tested up to: 7.1
Requires PHP: 5.3
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra
Domain Path: /languages
Tags: custom-menu, custom-logo, entertainment, one-column, two-columns, left-sidebar, e-commerce, right-sidebar, custom-colors, editor-style, featured-images, full-width-template, microformats, post-formats, rtl-language-support, theme-options, threaded-comments, translation-ready, blog
AMP: true

Astra WordPress Theme, Copyright 2020 WPAstra.
Astra is distributed under the terms of the GNU GPL.

Astra is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of.
Nicolas Gallagher and Jonathan Neal https://necolas.github.com/normalize.css/

Astra icon font is based on IcoMoon-Free vector icon by Keyamoon.
IcoMoon-Free vector icon distributed under terms of CC BY 4.0 or GPL. (https://creativecommons.org/licenses/by/4.0/ or https://www.gnu.org/licenses/gpl.html)
Source: http://keyamoon.com/

Flexibility is a JavaScript polyfill for Flexbox By Jonathan Neal, 10up. (https://github.com/jonathantneal/flexibility)
Licensed under MIT ( https://github.com/jonathantneal/flexibility/blob/master/LICENSE.md )

Screenshot image is a collage of actual sites created using the Astra WordPress Theme.

Icons used in the Screenshot image are all licensed under Creative Commons ( CC BY 4.0 ) License ( https://fontawesome.com/license/free )
https://fontawesome.com/v5.15/icons/store?style=solid
https://fontawesome.com/v5.15/icons/shopping-cart?style=solid
https://fontawesome.com/v5.15/icons/pen-square?style=solid
https://fontawesome.com/v5.15/icons/user-tie?style=solid
https://fontawesome.com/v5.15/icons/user-tie?style=solid

Illustrations used in the Screenshot images are all licensed under Creative Commons ( CC0 ) License ( https://gumroad.com/l/humaaans )
https://websitedemos.net/web-design-agency-08/wp-content/uploads/sites/796/2021/05/standing-24.png
https://websitedemos.net/web-design-agency-08/wp-content/uploads/sites/796/2021/05/sitting-2.png

Hand-drawn illustrations used are created by Brainstorm Force and released under Creative Commons ( CC0 ) License.
https://websitedemos.net/web-design-agency-08/wp-content/uploads/sites/796/2021/05/girl-with-image-container.png
https://websitedemos.net/web-design-agency-08/wp-content/uploads/sites/796/2021/05/boy-with-code-container.png
https://websitedemos.net/web-design-agency-08/wp-content/uploads/sites/796/2021/05/web-browser.png

The same site as screenshot can be imported from here https://websitedemos.net/web-design-agency-08/.

For more information, refer to this document on how to create a page like in the screenshot - https://wpastra.com/docs/replicating-the-screenshot/.

Astra default breadcrumb is based on Breadcrumb Trail by Justin Tadlock. (https://github.com/justintadlock/breadcrumb-trail)
Breadcrumb Trail is distributed under the terms of the GNU GPL v2 or later.

Astra local fonts feature is based on Webfonts Loader by WordPress Themes Team (WPTT). (https://github.com/WPTT/webfont-loader)
Licensed under MIT ( https://github.com/WPTT/webfont-loader/blob/master/LICENSE )

/* Note: The CSS files are loaded from assets/css/ folder. */

/*
 Theme Name: Astra Child - State Parks
 Theme URI: https://americasstateparks.org
 Description: Child theme for Astra with full-width Gutenberg support
 Author: State Parks Team
 Template: astra
 Version: 1.0.1
 Text Domain: astra-child
*/
/* ==========================================================================
   Full-Width Gutenberg Overrides
   ========================================================================== */

/* Ensure Gutenberg blocks use full width */
.entry-content>* {
    max-width: 100%;
}

/* Full-width support for aligned blocks */
.alignwide,
.alignfull {
    max-width: 100%;
    width: 100%;
}

/* Group blocks with full/wide alignment */
.wp-block-group.alignfull,
.wp-block-group.alignwide {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.wp-block-group.alignfull>.wp-block-group__inner-container,
.wp-block-group.alignwide>.wp-block-group__inner-container {
    max-width: 100%;
    padding-left: var(--wp--preset--spacing--30, 2rem);
    padding-right: var(--wp--preset--spacing--30, 2rem);
}

/* Cover blocks */
.wp-block-cover.alignfull,
.wp-block-cover.alignwide {
    max-width: 100%;
}

/* Columns */
.wp-block-columns.alignfull,
.wp-block-columns.alignwide {
    max-width: 100%;
}

/* ==========================================================================
   Mobile Header Fix - Prevent text breaking vertically
   ========================================================================== */

/* Prevent site title from breaking into vertical letters */
.site-title,
.ast-site-title-wrap,
.site-branding,
.ast-site-identity {
    min-width: max-content;
    white-space: nowrap;
}

/* Fix mobile logo squishing aspect ratio */
.site-logo-img img,
.custom-logo-link img {
    height: auto !important;
    max-width: 100%;
    object-fit: contain;
}

/* On very small screens, allow horizontal scroll instead of breaking */
@media (max-width: 544px) {
    .ast-header-break-point .site-branding {
        max-width: 50%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ast-header-break-point .site-title {
        font-size: 16px !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .ast-header-break-point .site-description {
        display: none;
    }
}

/* ==========================================================================
   Blog Post Styling - Modern Article Design
   ========================================================================== */

/* Hide double TOC if using Rank Math, EZ-TOC, or LuckyWP */
.single-post .rank-math-toc-container,
.single-post .ez-toc-container,
.single-post .lwptoc {
    display: none !important;
}

/* Article container */
.single-post .entry-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #334155;
}

/* Article headings */
.single-post .entry-content h2 {
    font-size: 1.625rem;
    font-weight: 700;
    color: #166534;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dcfce7;
}

.single-post .entry-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 2rem 0 0.75rem;
}

.single-post .entry-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #475569;
    margin: 1.5rem 0 0.5rem;
}

/* Lists - Basic styling */
.single-post .entry-content ul,
.single-post .entry-content ol {
    margin: 1rem 0 1.5rem;
    padding-left: 0;
}

.single-post .entry-content li {
    margin-bottom: 0.5rem;
    padding-left: 1.75rem;
    position: relative;
    list-style: none;
}

.single-post .entry-content ul>li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.single-post .entry-content ol {
    counter-reset: ol-counter;
}

.single-post .entry-content ol>li {
    counter-increment: ol-counter;
}

.single-post .entry-content ol>li::before {
    content: counter(ol-counter) ".";
    position: absolute;
    left: 0;
    font-weight: 600;
    color: #166534;
}

/* Checklist styling - Convert ☐ to styled checkboxes */
.single-post .entry-content li:has(> :first-child:contains("☐")) {
    padding-left: 2rem;
}

/* Paragraphs */
.single-post .entry-content p {
    margin: 0 0 1.25rem;
}

/* Strong text */
.single-post .entry-content strong {
    color: #1e293b;
    font-weight: 600;
}

/* Links */
.single-post .entry-content a {
    color: #166534;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.single-post .entry-content a:hover {
    color: #15803d;
}

/* Post title */
.single-post .entry-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Post meta / date */
.single-post .entry-meta {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

/* Featured image */
.single-post .post-thumb-img-content {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Blockquotes */
.single-post .entry-content blockquote {
    border-left: 4px solid #22c55e;
    background: #f0fdf4;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #166534;
}

/* Pro Tip / Note boxes - detect by content or use wp-blocks */
.single-post .entry-content p:has(strong:first-child:contains("Pro Tip")),
.single-post .entry-content p:has(strong:first-child:contains("Note")),
.single-post .entry-content p:has(strong:first-child:contains("Important")) {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    border-left: 4px solid #22c55e;
    margin: 1.5rem 0;
}

/* Sidebar full opacity for Mediavine ad viewability */
.single-post aside.widget-area {
    opacity: 1;
}

/* Hide ads in sidebar for cleaner look (optional) */
.single-post .widget_block:has(figure) {
    border-radius: 8px;
    overflow: hidden;
}

/* ==========================================================================
   Checklist Styling - Make ☐ look professional
   ========================================================================== */

/* Target list items containing checkbox emoji */
.single-post .entry-content li {
    transition: background 0.15s;
}

/* Checklist hover effect */
.single-post .entry-content li:hover {
    background: #f8fafc;
    margin-left: -0.5rem;
    padding-left: 2.25rem;
    border-radius: 4px;
}

/* ==========================================================================
   Responsive Blog Styling
   ========================================================================== */

@media (max-width: 768px) {
    .single-post .entry-title {
        font-size: 1.75rem;
    }

    .single-post .entry-content h2 {
        font-size: 1.375rem;
    }

    .single-post .entry-content h3 {
        font-size: 1.125rem;
    }

    .single-post .entry-content {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Header Search Field - Position Adjustment
   ========================================================================== */

/* Move search icon away from far right edge */
.ast-header-search,
.ast-search-menu-icon,
.astra-search-icon {
    margin-right: 20px !important;
}

/* On desktop, add more spacing */
@media (min-width: 921px) {

    .ast-header-search,
    .ast-search-menu-icon {
        margin-right: 40px !important;
    }

    /* If search is in a separate column, adjust the column */
    .ast-builder-layout-element.ast-header-search {
        padding-right: 30px;
    }
}

/* Search icon styling for better visibility */
.ast-search-menu-icon .astra-search-icon {
    opacity: 0.9;
}

.ast-search-menu-icon:hover .astra-search-icon {
    opacity: 1;
}

/* ==========================================================================
   Full-Width Site Layout
   ========================================================================== */

/* Remove Astra container width restrictions */
.ast-container,
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-comment-list li.depth-1,
.ast-separate-container .comment-respond,
.single .post-navigation,
.site-content>.ast-container {
    max-width: 100% !important;
    width: 100% !important;
}

/* Full-width primary content */
/* Full-width primary content - REMOVED FOR SIDEBAR SUPPORT */
/* #primary,
#secondary,
.site-main,
.content-area {
    max-width: 100%;
    width: 100%;
} */

/* Header full-width */
.ast-primary-header-bar,
.ast-mobile-header-wrap,
.site-header,
.main-header-bar,
.ast-primary-header {
    max-width: 100% !important;
    width: 100% !important;
}

/* Footer full-width */
.site-footer,
.ast-footer-overlay,
.ast-small-footer {
    max-width: 100% !important;
    width: 100% !important;
}

/* Remove side padding on main containers for edge-to-edge content */
/* Scoped: only blog posts and pages — NOT taxonomy archives, header, footer */
.single-post .site-content > .ast-container,
.page .site-content > .ast-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Keep some padding inside content for readability */
.site-main>article,
.entry-content {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Hero and full-width sections should have NO inner padding restriction */
.entry-content>.alignfull,
.entry-content>.wp-block-cover,
.entry-content>.wp-block-group.alignfull {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
    width: 100vw !important;
    max-width: 100vw !important;
}

/* Homepage specific - remove restrictions */
.home .site-main,
.home .entry-content {
    padding-left: 0;
    padding-right: 0;
}

/* Shortcode content should be full-width */
.home .entry-content>[class*="asp-"],
.home .entry-content>.wp-block-shortcode {
    width: 100%;
    max-width: 100%;
}

/* ==========================================================================
   WP Die Error-Page Override - Neutralize incorrect body#error-page styles
   Some pages receive body id="error-page" from a wp_die() call in a plugin,
   which injects max-width: 700px. Override to restore normal layout.
   ========================================================================== */

body#error-page {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background: #fff !important;
    font-family: inherit !important;
    color: inherit !important;
}

/* ==========================================================================
   Header Z-Index Fix - Prevent Hero from covering header
   ========================================================================== */

header,
.site-header,
.ast-header-app,
.ast-primary-header-bar,
.ast-mobile-header-wrap {
    z-index: 101 !important;
    position: relative;
}

/* ==========================================================================
   Sidebar Layout Fix - Fixed Sidebar, Flexible Content
   ========================================================================== */

/* Apply only on blog posts and pages with sidebar (NOT taxonomy archives, homepage, etc.) */
@media (min-width: 922px) {

    /* Use flexbox for desktop layout — scoped to posts/pages only */
    .single-post .site-content > .ast-container,
    .page:not(.home) .site-content > .ast-container {
        display: flex;
        flex-wrap: nowrap;
        gap: 2rem;
        /* Consistent spacing between content and sidebar */
        align-items: flex-start;
        /* Prevent sidebar stretching full height */
    }

    /* Fixed Sidebar Width - 336px (optimized for 336x280 + 300x250 Mediavine ads) */
    #secondary.widget-area {
        width: 336px !important;
        min-width: 336px !important;
        max-width: 336px !important;
        flex: 0 0 336px !important;
        margin: 0 !important;
        /* Reset any margins, handled by gap */
    }

    /* Flexible Main Content Area */
    #primary.content-area {
        width: auto !important;
        max-width: calc(100% - 336px - 2rem) !important;
        /* Ensure it fits with gap */
        flex: 1 1 auto !important;
        margin: 0 !important;
    }

    /* Left Sidebar Support */
    .ast-left-sidebar-layout .ast-container {
        flex-direction: row-reverse;
    }

    /* Right Sidebar Support (Default) */
    .ast-right-sidebar-layout .ast-container {
        flex-direction: row;
    }
}

/* ==========================================================================
   Premium Styled Tables — At-a-Glance inspired design
   Used in blog posts (Pillar Pages, Guides, etc.)
   ========================================================================== */

/* Table container — card-style */
.entry-content .sp-styled-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.8em 0;
    font-size: 0.95rem;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

/* Header — clean, subtle green accent bar */
.entry-content .sp-styled-table thead th {
    background: #fafbfa;
    color: #5a5a5a;
    font-weight: 600;
    text-align: left;
    padding: 14px 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-bottom: 2px solid #2e7d32;
}

/* First header — accent icon spacing */
.entry-content .sp-styled-table thead th:first-child {
    color: #2e7d32;
}

/* Data cells */
.entry-content .sp-styled-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    color: #333;
    line-height: 1.6;
}

/* Label column (first column) — At-a-Glance style */
.entry-content .sp-styled-table td:first-child {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #888;
    white-space: nowrap;
    width: 1%;
    padding-right: 24px;
}

/* Value column (second column) — bold and clean */
.entry-content .sp-styled-table td:nth-child(2) {
    font-weight: 500;
    color: #222;
}

/* Last row — no bottom border */
.entry-content .sp-styled-table tbody tr:last-child td {
    border-bottom: none;
}

/* Subtle hover */
.entry-content .sp-styled-table tbody tr:hover {
    background-color: #fafef9;
    transition: background-color 0.15s ease;
}

/* Links — brand color without heavy underlines */
.entry-content .sp-styled-table a {
    color: #2e7d32;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.entry-content .sp-styled-table a:hover {
    color: #1b5e20;
    border-bottom-color: #2e7d32;
}

/* Emoji icons in first column — larger, spaced */
.entry-content .sp-styled-table td:first-child .emoji,
.entry-content .sp-styled-table td:first-child img.emoji {
    width: 1.1em;
    height: 1.1em;
    margin-right: 6px;
    vertical-align: -0.1em;
}

/* ---- Multi-column tables (3+ columns, like Timeline) ---- */
.entry-content .sp-styled-table th:nth-child(n+3),
.entry-content .sp-styled-table td:nth-child(n+3) {
    text-align: center;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .entry-content .sp-styled-table {
        font-size: 0.88rem;
        border-radius: 8px;
    }

    .entry-content .sp-styled-table thead th,
    .entry-content .sp-styled-table td {
        padding: 11px 14px;
    }

    .entry-content .sp-styled-table td:first-child {
        white-space: normal;
        font-size: 0.72rem;
    }
}

/* ==========================================================================
   Global Premium Card Grid (Search & Archive Pages)
   ========================================================================== */

/* Grid Container */
.sp-premium-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .sp-premium-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Card Container */
.sp-premium-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.sp-premium-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Image Container (16:10 Ratio) */
.sp-premium-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.sp-premium-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.sp-premium-card:hover .sp-premium-card-image-wrap img {
    transform: scale(1.05);
}

/* Floating Activity Badges */
.sp-premium-card-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.sp-premium-card-badge {
    background: #fcd34d;
    /* Warm yellow */
    color: #92400e;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border: 2px solid #fff;
}

.sp-premium-card-badge-more {
    background: #ffffff;
    color: #475569;
    font-weight: 700;
    font-size: 11px;
}

/* State Location Tag */
.sp-premium-card-state-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Card Information Area */
.sp-premium-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.sp-premium-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.sp-premium-card:hover .sp-premium-card-title {
    color: #166534;
}

.sp-premium-card-excerpt {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Rating / Meta Line */
.sp-premium-card-meta {
    margin-top: auto;
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
}

.sp-premium-card-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    /* Star Color */
}

/* ==========================================================================
   Premium Mobile Navigation (Glassmorphism)
   ========================================================================== */

@media (max-width: 921px) {

    /* The main wrapper for the mobile dropdown menu */
    .ast-builder-menu-mobile .main-header-menu,
    .ast-mobile-header-wrap .ast-mobile-header-content,
    .ast-mobile-popup-inner {
        background: rgba(17, 34, 17, 0.95) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Ensure popup overlay (if used) is matching */
    .ast-mobile-popup-drawer.active .ast-mobile-popup-overlay {
        background-color: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(4px);
    }

    /* Target the list items */
    .ast-builder-menu-mobile .main-header-menu>.menu-item,
    .ast-mobile-header-wrap .main-header-menu>.menu-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        background: transparent !important;
    }

    /* Remove border from last item */
    .ast-mobile-header-wrap .main-header-menu>.menu-item:last-child {
        border-bottom: none !important;
    }

    /* Target the links */
    .ast-builder-menu-mobile .main-header-menu .menu-item>a,
    .ast-mobile-header-wrap .main-header-menu .menu-item>a {
        background: transparent !important;
        color: #f8fafc !important;
        font-weight: 500 !important;
        letter-spacing: 0.5px;
        padding-top: 18px !important;
        padding-bottom: 18px !important;
        transition: all 0.3s ease !important;
        border-left: 3px solid transparent !important;
    }

    /* Hover & Active States */
    .ast-builder-menu-mobile .main-header-menu .menu-item:hover>a,
    .ast-mobile-header-wrap .main-header-menu .menu-item:hover>a,
    .ast-builder-menu-mobile .main-header-menu .current-menu-item>a,
    .ast-mobile-header-wrap .main-header-menu .current-menu-item>a {
        background: rgba(255, 255, 255, 0.05) !important;
        color: #ffffff !important;
        border-left: 3px solid #22c55e !important;
        padding-left: 25px !important;
        /* Slight indent on hover/active */
    }

    /* Submenu styling */
    .ast-builder-menu-mobile .main-header-menu .sub-menu {
        background: rgba(0, 0, 0, 0.2) !important;
    }

    /* Make sure close button or toggle in dark mode is visible */
    .ast-mobile-popup-close {
        color: #ffffff !important;
    }
}

/* ==========================================================================
   WCAG AA Contrast Fix — Header Menu Links & Above Header
   
   Problem: Astra Customizer sets green link colors (#54b435, #388e3c)
   that fail WCAG AA contrast ratio (need ≥4.5:1 on white background).
   Fix: Override with #2e7d32 (ratio ~5.8:1) — still clearly green.
   ========================================================================== */

/* Desktop header menu links */
.ast-desktop .main-header-menu>.menu-item>.menu-link,
.ast-desktop .main-header-menu .menu-item>.menu-link,
.main-header-bar-navigation .menu-item>.menu-link {
    color: #2e7d32 !important;
}

.ast-desktop .main-header-menu>.menu-item:hover>.menu-link,
.ast-desktop .main-header-menu .menu-item:hover>.menu-link {
    color: #1b5e20 !important;
}

/* Above header bar links */
.ast-above-header-bar a,
.ast-above-header-section a,
.ast-above-header .menu-link {
    color: #2e7d32 !important;
}

.ast-above-header-bar a:hover,
.ast-above-header-section a:hover {
    color: #1b5e20 !important;
}

/* Site title link */
.site-title a,
.ast-site-identity a {
    color: #2e7d32 !important;
}

.site-title a:hover,
.ast-site-identity a:hover {
    color: #1b5e20 !important;
}

/* Homepage residuals: keep controls and form hints at WCAG AA contrast.
   Content components already use --asp-forest (#166534). */
body.home .skip-link,
body.page-id-11 .skip-link,
body.home .menu-toggle,
body.page-id-11 .menu-toggle {
    color: #2e7d32 !important;
}

body.home .asp-newsletter-form input::placeholder,
body.page-id-11 .asp-newsletter-form input::placeholder {
    color: #475569;
    opacity: 1;
}

/* ==========================================================================
   Custom Table Headers for Park Info Pages
   ========================================================================== */

.entry-content .sp-trails-table thead th {
    background: #2e7d32;
    color: white;
}

.entry-content .sp-activity-table thead th {
    background: #0277bd;
    color: white;
}

.entry-content .sp-camping-table thead th {
    background: #d84315;
    color: white;
}

.entry-content .sp-season-table thead th {
    background: #455a64;
    color: white;
}

/* ==========================================================================
   Mediavine Sticky Sidebar Ad Optimization
   ========================================================================== */

/* Ensure sidebar containers never block Mediavine's sticky ad script */
#secondary,
#secondary.widget-area,
.single-post aside.widget-area {
    overflow: visible !important;
}

/* Mediavine ad containers — full width within sidebar */
.mv-ad-box,
[data-adunit],
div[id^="div-gpt-ad"] {
    width: 100% !important;
    max-width: 336px;
    margin: 0 auto;
}

/* Prevent CLS from sidebar ad insertion */
.mv-ad-box {
    min-height: 250px;
}

/* Ensure sidebar is NOT manually sticky — Mediavine controls stickiness */
.single-post #secondary.widget-area {
    position: relative !important;
    top: auto !important;
}

/* Mediavine target containers — zero visual footprint until filled */
#sidebar_atf_target,
#sidebar_btf_target {
    width: 100%;
    min-height: 0;
}

/* When Mediavine fills the BTF target, give it breathing room */
#sidebar_btf_target:not(:empty) {
    margin-top: 1.5rem;
    min-height: 250px;
}
/* ==========================================================================
   2026-Modernisierung (2026-07-04): Blogpost-Layout, Archive, Homepage-Cards
   ========================================================================== */

/* Blogpost-Grid: tote TOC-Spalte entfernt -> 2 Spalten (Content + Aside) */
@media (min-width: 977px) {
  .uagb-block-24e52612.uagb-layout-grid {
    grid-template-columns: minmax(0, 1fr) minmax(270px, 350px) !important;
  }
}
/* Sidebar-Kurven-Shape (Altlast) ausblenden */
.uagb-block-90e49065 .uagb-container__shape { display: none !important; }

/* Inhalte nie durch Scroll-Reveal verstecken (Ad-JS verzoegert Trigger) */
.ast-fade-up { opacity: 1 !important; transform: none !important; animation: none !important; }

/* --- Archiv-Header als moderne dunkelgruene Karte --- */
.archive .ast-archive-description {
  background: #1a3d1a;
  border-radius: 14px;
  padding: 2.5rem 1.75rem;
  margin: 0.75rem 0 2rem;
  text-align: center;
  color: #c9e0c9;
}
.archive .ast-archive-description .page-title {
  color: #fff;
  font-weight: 800;
}
.archive .ast-archive-description p { color: #c9e0c9; margin-bottom: 0; }
.archive .ast-archive-description a { color: #ffd700; text-decoration: none; }
.archive .ast-archive-description a:hover { color: #ffe566; }
.archive .ast-archive-description .trail-items li,
.archive .ast-archive-description .trail-items span { color: #c9e0c9; }

/* --- Kategorie-Filter: dezente Chips statt Button-Wand --- */
.ast-post-filter { margin-bottom: 1.75rem; }
.ast-post-filter-single.ast-button {
  background: transparent;
  color: #2e5d2e;
  border: 1.5px solid #b9d0b9;
  border-radius: 999px;
  padding: 0.35em 1.1em;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  transition: all .15s ease;
}
.ast-post-filter-single.ast-button:hover,
.ast-post-filter-single.ast-button.active,
.ast-post-filter-single.ast-button[aria-current]:not([aria-current="false"]) {
  background: #1a3d1a;
  color: #fff;
  border-color: #1a3d1a;
}

/* --- Archiv-Cards: Radius, Schatten, Hover, keine Unterstreichung --- */
.ast-archive-post .ast-article-inner {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 61, 26, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ast-archive-post .ast-article-inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 61, 26, 0.14);
}
.ast-archive-post .entry-title a { text-decoration: none; color: #1d2b1d; }
.ast-archive-post .entry-title a:hover { color: #2e7d32; }

/* --- Homepage-Cards: saubere Umbrueche, keine Unterstreichungen --- */
.asp-news-card, .asp-news-card:hover { text-decoration: none; }
.asp-news-card .asp-news-title,
.asp-section .asp-news-title {
  text-decoration: none;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}
.asp-section a { text-decoration: none; }
.asp-news-card:hover .asp-news-title { color: #2e7d32; }

/* Filter-Chips: Kapitalisierung */
.ast-post-filter-single.ast-button { text-transform: capitalize; }

.ast-page-builder-template .ast-article-post{margin-bottom:2.5em}.ast-featured-post{float:none}.ast-separate-container .ast-separate-posts.ast-article-post{margin-bottom:2em}.ast-animate-hidden{visibility:hidden;opacity:0}.ast-animate-display{visibility:visible;opacity:1}.ast-no-thumb .ast-date-meta .posted-on{margin-bottom:1.5em}.ast-date-meta.circle .posted-on{border-radius:50%;overflow:hidden}.has-post-thumbnail .ast-date-meta.circle .posted-on{margin:1em}.ast-separate-container .ast-grid-1 .blog-layout-1{padding:0}.ast-separate-container .ast-grid-1 .blog-layout-2,.ast-separate-container .ast-grid-1 .blog-layout-3{padding:0;border-bottom:0}.ast-separate-container .ast-grid-2 .ast-article-post .blog-layout-2,.ast-separate-container .ast-grid-2 .ast-article-post .blog-layout-3,.ast-separate-container .ast-grid-3 .ast-article-post .blog-layout-2,.ast-separate-container .ast-grid-3 .ast-article-post .blog-layout-3,.ast-separate-container .ast-grid-4 .ast-article-post .blog-layout-2,.ast-separate-container .ast-grid-4 .ast-article-post .blog-layout-3{border-bottom:0}.ast-separate-container .blog-layout-1,.ast-separate-container .blog-layout-2,.ast-separate-container .blog-layout-3{padding:2.66666em}.ast-separate-container .ast-grid-2 .blog-layout-1,.ast-separate-container .ast-grid-2 .blog-layout-2,.ast-separate-container .ast-grid-2 .blog-layout-3,.ast-separate-container .ast-grid-3 .blog-layout-1,.ast-separate-container .ast-grid-3 .blog-layout-2,.ast-separate-container .ast-grid-3 .blog-layout-3,.ast-separate-container .ast-grid-4 .blog-layout-1,.ast-separate-container .ast-grid-4 .blog-layout-2,.ast-separate-container .ast-grid-4 .blog-layout-3{padding:1.5em}@media (max-width:1200px){.ast-separate-container .ast-grid-2 .ast-article-post:nth-child(2n+0),.ast-separate-container .ast-grid-2 .ast-article-post:nth-child(odd),.ast-separate-container .ast-grid-3 .ast-article-post:nth-child(2n+0),.ast-separate-container .ast-grid-3 .ast-article-post:nth-child(odd),.ast-separate-container .ast-grid-4 .ast-article-post:nth-child(2n+0),.ast-separate-container .ast-grid-4 .ast-article-post:nth-child(odd){padding:0}.ast-separate-container .blog-layout-1,.ast-separate-container .blog-layout-2,.ast-separate-container .blog-layout-3{padding:1.5em}}.site-content .ast-grid-2 .ast-article-post,.site-content .ast-grid-3 .ast-article-post,.site-content .ast-grid-4 .ast-article-post{background:0 0}.site-content .ast-grid-2 .ast-article-post .blog-layout-2,.site-content .ast-grid-2 .ast-article-post .blog-layout-3,.site-content .ast-grid-3 .ast-article-post .blog-layout-2,.site-content .ast-grid-3 .ast-article-post .blog-layout-3,.site-content .ast-grid-4 .ast-article-post .blog-layout-2,.site-content .ast-grid-4 .ast-article-post .blog-layout-3{border-bottom:0}.ast-page-builder-template .ast-article-post .entry-header{margin:auto auto 1em auto;padding:0}.ast-article-post .ast-post-format-audio.ast-embeded-audio .ast-date-meta .posted-on{position:relative;display:inline-block;margin-bottom:1em}hr.post-divider{height:0;margin:0}hr.ast-single-previous-hr{height:0;margin-top:2em}.ast-show-comments-data{padding:2em 6.67em}.ast-show-comments-data .ast-show-comments{cursor:pointer}.ast-show-comments-data .ast-show-comments,.ast-show-comments-data .ast-show-comments-count{max-width:640px;text-align:center;margin-left:auto;margin-right:auto}.ast-show-comments-data .ast-show-comments-count{margin-bottom:2em}.ast-pagination-circle .ast-pagination .page-numbers,.ast-pagination-square .ast-pagination .page-numbers{border-style:solid;border-width:1px;line-height:2.33333em}.ast-pagination-circle .ast-pagination .page-numbers{border-radius:50%}.ast-pagination-circle .ast-pagination .next.page-numbers,.ast-pagination-circle .ast-pagination .prev.page-numbers{border-radius:30px}@media all and (max-width:768px){#content:before{content:""}}.ast-pagination-infinite{text-align:center;margin:2.5em 0 0}.ast-page-builder-template .ast-pagination-infinite{margin:2.5em 0}.infinite-scroll .posts-navigation,.infinite-scroll.neverending .site-footer{display:none}.infinity-end.neverending .site-footer{display:block}.no-more{cursor:default}.ast-loader{display:none;margin:0 auto;min-height:58px;line-height:58px;width:70px;text-align:center}.ast-loader>div{width:18px;height:18px;background-color:#0085ba;border-radius:100%;display:inline-block;animation:sk-bouncedelay 1.4s infinite ease-in-out both}.ast-loader .ast-loader-1{animation-delay:-.32s}.ast-loader .ast-loader-2{animation-delay:-.16s}@keyframes sk-bouncedelay{0%,100%,80%{transform:scale(0)}40%{transform:scale(1)}}.ast-blog-pagination-type-infinite .ast-pagination{display:none}.ast-related-post-featured-section .post-thumb-img-content+* .posted-on{position:absolute;top:0;left:0}.ast-related-post-featured-section .posted-on{position:relative;display:inline-block;width:5.714285714em;height:5.714285714em;padding:.7em;margin-bottom:1.5em}.ast-related-post-featured-section .posted-on .entry-date span{display:block;width:100%;text-align:center}.ast-related-post-featured-section .posted-on .date-month{font-size:.8571428571em;line-height:1em}.ast-related-post-featured-section .posted-on .date-year{font-size:.8571428571em;line-height:1em}.ast-related-post-featured-section .posted-on .date-day{font-size:2.5em;line-height:.9em;font-weight:900;margin:.1em 0}.ast-hb-account-login-wrapper .ast-hb-account-login{position:fixed;left:50%;top:50%;padding:35px;max-height:550px;width:340px;margin:0 0 0 -170px;background-color:#f1f1f1;z-index:1000011;box-shadow:0 3px 6px rgba(0,0,0,.3)}.ast-hb-account-login-wrapper .ast-hb-account-login-bg{position:fixed;top:0;bottom:0;left:0;right:0;background:#000;opacity:.7;z-index:1000010;transition:all .3s}.ast-hb-account-login-wrapper .ast-hb-login-header .ast-hb-login-close{background:0 0;border:0;font-size:24px;line-height:1;padding:.4em;color:inherit;-js-display:flex;display:flex;box-shadow:none}.ast-hb-account-login-wrapper #loginform input[type=password],.ast-hb-account-login-wrapper #loginform input[type=text]{width:100%;max-width:100%;margin-top:10px;border:1px solid;background-color:transparent;vertical-align:middle}.ast-hb-account-login-form-footer a.ast-header-account-footer-link:not(:last-child) span:after{content:"|";margin:0 .4em}.ast-header-account-link.ast-account-action-link,.ast-header-account-link.ast-account-action-login,.ast-header-account-link.ast-account-action-login.customize-unpreviewable,.ast-header-break-point .ast-header-account-link{cursor:pointer;pointer-events:all}.ast-header-account{-js-display:flex;display:flex}.ast-hb-account-login-wrapper{visibility:hidden}.ast-hb-account-login-wrapper .ast-hb-login-header{-js-display:flex;position:absolute;right:0;top:0;display:flex;justify-content:flex-end;min-height:calc(1.2em + 24px)}.ast-hb-account-login-wrapper .ast-hb-account-login{transform:scale(.7);opacity:0;transition:all .3s;overflow:auto}.ast-hb-account-login-wrapper.show{visibility:visible}.ast-hb-account-login-wrapper.show .ast-hb-account-login{transform:scale(1) translateY(-50%);opacity:1}.ast-hb-login-body{height:100%;position:relative;line-height:1.5}.ast-hf-account-menu-wrap.ast-main-header-bar-alignment{position:relative}.main-header-bar .main-header-bar-navigation .ast-account-nav-menu{line-height:1.45}.ast-account-nav-menu{width:240px;background:#fff;left:-999em;position:absolute;top:0;z-index:99999;list-style:none;margin:0;padding-left:0;border:0;box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-account-nav-menu .sub-menu{right:auto;top:0;margin-left:0}.ast-account-nav-menu .menu-item.focus>.sub-menu,.ast-account-nav-menu .menu-item:hover>.sub-menu{left:100%}.ast-account-nav-menu .ast-left-align-sub-menu.menu-item.focus>.sub-menu,.ast-account-nav-menu .ast-left-align-sub-menu.menu-item:hover>.sub-menu{left:-100%}.ast-account-nav-menu .menu-item .menu-link{padding:.9em 1em}.ast-account-nav-menu .menu-item{border-style:none}.ast-account-nav-menu .menu-item.menu-item-has-children>.menu-link:after{position:absolute;right:1em;top:50%;transform:translate(0,-50%) rotate(270deg)}.ast-above-header-bar .main-header-menu.ast-account-nav-menu>.menu-item,.ast-below-header-bar .main-header-menu.ast-account-nav-menu>.menu-item,.ast-primary-header-bar .main-header-menu.ast-account-nav-menu>.menu-item{height:auto;line-height:unset;bottom:-5px}.ast-header-account-wrap .woocommerce-MyAccount-navigation-link.is-active a{background:unset}.ast-header-account-wrap .menu-item:last-child>.menu-link{border-style:none}.ast-divider-wrapper{border:0}.ast-mobile-popup-content .ast-header-divider-element{justify-content:center}.ast-header-divider-element{position:relative}.ast-fb-divider-layout-vertical{position:relative}.ast-hb-divider-layout-vertical.ast-header-divider-element{height:100%}.ast-mobile-header-content .ast-builder-layout-element:not(.ast-builder-menu):not(.ast-header-divider-element),.ast-mobile-popup-content .ast-builder-layout-element:not(.ast-builder-menu):not(.ast-header-divider-element){padding:15px 20px}.footer-widget-area .ast-footer-divider-element{position:relative;align-items:center}.footer-widget-area .ast-divider-wrapper{display:inline-block}.ast-builder-footer-grid-columns .ast-fb-divider-layout-horizontal{-js-display:inline-flex;display:inline-flex;vertical-align:middle}[data-section*=section-fb-button-] .ast-builder-button-size-xs .ast-custom-button,[data-section*=section-hb-button-] .ast-builder-button-size-xs .ast-custom-button{font-size:13px;padding:8px 20px}[data-section*=section-fb-button-] .ast-builder-button-size-sm .ast-custom-button,[data-section*=section-hb-button-] .ast-builder-button-size-sm .ast-custom-button{font-size:15px;padding:10px 40px}[data-section*=section-fb-button-] .ast-builder-button-size-md .ast-custom-button,[data-section*=section-hb-button-] .ast-builder-button-size-md .ast-custom-button{font-size:17px;padding:15px 45px}[data-section*=section-fb-button-] .ast-builder-button-size-lg .ast-custom-button,[data-section*=section-hb-button-] .ast-builder-button-size-lg .ast-custom-button{font-size:19px;padding:20px 50px}[data-section*=section-fb-button-] .ast-builder-button-size-xl .ast-custom-button,[data-section*=section-hb-button-] .ast-builder-button-size-xl .ast-custom-button{font-size:21px;padding:25px 55px}.ast-fb-divider-layout-vertical{-js-display:flex;display:flex}.site-footer-section{position:relative}.ast-builder-language-switcher .ast-builder-language-switcher-menu{list-style:none;margin:0;padding:0;line-height:normal;-webkit-tap-highlight-color:transparent}.ast-builder-language-switcher-layout-vertical .ast-builder-language-switcher{display:block}.ast-builder-language-switcher-layout-vertical .ast-builder-language-switcher-menu{display:block}.ast-builder-language-switcher-layout-horizontal .ast-builder-language-switcher{-js-display:flex;display:flex}.ast-builder-language-switcher-layout-horizontal .ast-builder-language-switcher-menu{-js-display:flex;display:flex;flex-wrap:wrap}.ast-builder-language-switcher a{-js-display:flex;display:flex;align-items:center}.ast-lswitcher-item-footer,.ast-lswitcher-item-header{-js-display:inline-flex;display:inline-flex}span.ast-lswitcher-item-footer:last-child,span.ast-lswitcher-item-header:last-child{margin-right:0}.ast-header-sticky-active{position:fixed!important;right:0;left:0;margin:0 auto;z-index:99}.ast-footer-sticky-active .ast-custom-footer{position:fixed!important;right:0;left:0;bottom:0;margin:0 auto;z-index:99}.ast-custom-header{position:relative;z-index:99}.ast-custom-header.ast-header-sticky-active .fl-row-content-wrap{transition:padding .3s linear}.ast-custom-header.ast-header-sticky-active .fl-module-content{transition:all .3s linear}.ast-custom-header.ast-header-sticky-active .elementor-section-wrap{transition:padding .3s linear}.ast-custom-header.ast-header-sticky-active .elementor-row>.elementor-column>.elementor-element-populated{transition:all .3s linear}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .fl-row-content-wrap{transition:padding .3s linear;padding-top:5px;padding-bottom:5px;box-sizing:border-box}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .fl-module-content{margin-top:5px;margin-bottom:5px;transition:all .3s linear}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .fl-module-content.fl-node-content img{max-height:50px;width:auto}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .elementor-section-wrap{transition:padding .3s linear;box-sizing:border-box}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .elementor-section-wrap img{max-height:50px;width:auto}.ast-shrink-custom-header .ast-custom-header.ast-sticky-shrunk .elementor-row>.elementor-column>.elementor-element-populated{max-height:60px;transition:all .3s linear}.ast-custom-header.ast-header-sticky-active{top:0;width:100%;transition:ease-out}.single-advanced-hook .ast-no-title,.single-advanced-hook .hentry{margin:0}.js_active .ast-plain-container.single-advanced-hook .entry-header{margin:0}.summary.entry-summary+[CLASS*=astra-advanced-hook]{clear:both}.single-astra-advanced-hook .wp-block-buttons,.single-astra-advanced-hook .wp-block-uagb-buttons{margin-bottom:1.5em}.single-astra-advanced-hook .ast-container{flex-wrap:wrap}.single-astra-advanced-hook .ast-container>*{width:100%}body.ast-padded-layout::after,body.ast-padded-layout::before{background:inherit;content:"";display:block;height:0;left:0;position:fixed;width:100%;z-index:999}body.ast-padded-layout::after{bottom:0}body.ast-padded-layout{background-attachment:fixed}body.ast-padded-layout::before{top:0}@media (min-width:44.375em){body.ast-padded-layout.admin-bar::before{top:46px}}@media (min-width:48.9375em){body.ast-padded-layout.admin-bar::before{top:32px}}.elementor-page.ast-box-layout #page,.elementor-page.ast-padded-layout #page{overflow:hidden}.siteorigin-panels.ast-box-layout #page,.siteorigin-panels.ast-padded-layout #page{overflow:hidden}.ast-separate-container.ast-box-layout #content .ast-container{padding-left:0;padding-right:0}@media (max-width:768px){.ast-separate-container.ast-box-layout #content .ast-container{padding-left:20px;padding-right:20px}}@media (max-width:544px){.ast-separate-container.ast-box-layout #content .ast-container{padding-left:.54em;padding-right:.54em}}.js_active .ast-box-layout #page,.js_active .ast-padded-layout #page{overflow:hidden}.js_active .ast-box-layout.ast-page-builder-template .vc_row[data-vc-full-width],.js_active .ast-padded-layout.ast-page-builder-template .vc_row[data-vc-full-width]{max-width:100%;left:0!important}.ast-sticky-active{position:fixed!important;right:0;left:0;margin:0 auto}.ast-nav-up{transform:translateY(-100%)}.site-header .sticky-custom-logo{display:none}.ast-primary-sticky-header-active li.ast-masthead-custom-menu-items a,.ast-primary-sticky-header-active li.ast-masthead-custom-menu-items a:focus,.ast-primary-sticky-header-active li.ast-masthead-custom-menu-items a:hover{background:0 0}.ast-fullscreen-active .ast-above-header,.ast-offcanvas-active .ast-above-header{z-index:4}.ast-fullscreen-active .ast-above-header.ast-sticky-active,.ast-offcanvas-active .ast-above-header.ast-sticky-active{z-index:0}#ast-fixed-header{position:fixed;visibility:hidden;top:0;left:0;width:100%}#ast-fixed-header .main-header-bar{box-shadow:0 1px 2px rgba(0,0,0,.2)}#ast-fixed-header.ast-header-slide{transform:translateY(-100%);transition:transform .3s linear,top .3s linear,visibility .3s linear}#ast-fixed-header.ast-header-fade{opacity:0;transition:opacity .3s linear}.main-header-bar.ast-sticky-active{box-shadow:0 2px 10px 0 rgba(36,50,66,.075)}.ast-sticky-custom-logo .ast-header-sticked .custom-logo-link,.ast-sticky-custom-logo .ast-header-sticked .custom-mobile-logo-link{display:none}.ast-sticky-custom-logo .ast-header-sticked .sticky-custom-logo{display:inline-block}.ast-sticky-custom-logo.ast-primary-sticky-header-active.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .transparent-custom-logo{display:none}.ast-header-stick-fade-active .ast-sticky-custom-logo.ast-primary-sticky-header-active.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .transparent-custom-logo,.ast-header-stick-scroll-active .ast-sticky-custom-logo.ast-primary-sticky-header-active.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .transparent-custom-logo,.ast-header-stick-slide-active .ast-sticky-custom-logo.ast-primary-sticky-header-active.ast-header-break-point.ast-replace-site-logo-transparent.ast-theme-transparent-header .transparent-custom-logo{display:inline-block}.ast-sticky-main-shrink .ast-sticky-shrunk .main-header-bar,.ast-sticky-main-shrink .ast-sticky-shrunk.main-header-bar{line-height:55px}.ast-sticky-main-shrink .ast-sticky-shrunk .main-header-bar .ast-site-identity,.ast-sticky-main-shrink .ast-sticky-shrunk.main-header-bar .ast-site-identity{padding-top:.5em;padding-bottom:.5em}.ast-sticky-main-shrink .ast-sticky-shrunk .site-navigation{line-height:3}.ast-sticky-main-shrink #masthead .ast-sticky-shrunk .site-logo-img img{max-height:55px!important;width:auto}.ast-sticky-main-shrink #masthead .ast-sticky-shrunk .site-logo-img img.astra-logo-svg{width:100%}.ast-sticky-main-shrink.ast-header-break-point .ast-sticky-shrunk .main-header-bar,.ast-sticky-main-shrink.ast-header-break-point .ast-sticky-shrunk.main-header-bar{padding-bottom:0}.ast-sticky-main-shrink.ast-header-break-point .ast-sticky-shrunk .ast-mobile-menu-buttons{line-height:0;padding-bottom:.5em}.ast-sticky-main-shrink.ast-header-break-point .ast-sticky-shrunk .site-branding{padding-bottom:.5em}.ast-sticky-above-shrink .ast-sticky-shrunk .ast-above-header-bar .ast-site-identity,.ast-sticky-above-shrink .ast-sticky-shrunk.ast-above-header-bar .ast-site-identity{padding-top:.5em;padding-bottom:.5em}.ast-sticky-above-shrink .ast-sticky-shrunk .site-navigation{line-height:3}.ast-sticky-above-shrink .ast-sticky-shrunk .site-logo-img img{max-height:55px;width:auto}.ast-sticky-above-shrink.ast-header-break-point .ast-sticky-shrunk .ast-above-header-bar,.ast-sticky-above-shrink.ast-header-break-point .ast-sticky-shrunk.ast-above-header-bar{padding-bottom:0}.ast-sticky-above-shrink.ast-header-break-point .ast-sticky-shrunk .ast-mobile-menu-buttons{line-height:0;padding-bottom:.5em}.ast-sticky-above-shrink.ast-header-break-point .ast-sticky-shrunk .site-branding{padding-bottom:.5em}.ast-sticky-below-shrink .ast-sticky-shrunk .ast-below-header-bar .ast-site-identity,.ast-sticky-below-shrink .ast-sticky-shrunk.ast-below-header-bar .ast-site-identity{padding-top:.5em;padding-bottom:.5em}.ast-sticky-below-shrink .ast-sticky-shrunk .site-navigation{line-height:3}.ast-sticky-below-shrink .ast-sticky-shrunk .site-logo-img img{max-height:55px;width:auto}.ast-sticky-below-shrink.ast-header-break-point .ast-sticky-shrunk .ast-below-header-bar,.ast-sticky-below-shrink.ast-header-break-point .ast-sticky-shrunk.ast-below-header-bar{padding-bottom:0}.ast-sticky-below-shrink.ast-header-break-point .ast-sticky-shrunk .ast-mobile-menu-buttons{line-height:0;padding-bottom:.5em}.ast-sticky-below-shrink.ast-header-break-point .ast-sticky-shrunk .site-branding{padding-bottom:.5em}.ast-header-break-point .ast-sticky-active .sticky-custom-logo img{display:block}.ast-header-break-point .ast-has-mobile-header-logo .ast-header-sticked .sticky-custom-logo img{display:block}.ast-header-break-point .ast-has-mobile-header-logo .ast-header-sticked .ast-mobile-header-logo{display:none}.ast-header-break-point .ast-header-sticked .sticky-custom-logo img{display:block}.ast-header-break-point.ast-inherit-site-logo-sticky .ast-has-mobile-header-logo .ast-header-sticked .custom-logo-link img{display:none}.ast-header-break-point.ast-inherit-site-logo-sticky .ast-has-mobile-header-logo .ast-header-sticked .custom-mobile-logo-link img{display:inline-block}.above-header-toggle-on .main-header-bar{z-index:1}.ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content{display:none}.ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content{display:none}.ast-main-header-nav-open.ast-hfb-header .ast-mobile-header-wrap .ast-mobile-header-content{display:block}.ast-main-header-nav-open.ast-hfb-header .ast-desktop-header-content{display:block}.ast-header-stick-fade-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content,.ast-header-stick-scroll-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content,.ast-header-stick-slide-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content{display:block}.ast-header-stick-fade-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content,.ast-header-stick-scroll-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content,.ast-header-stick-slide-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content{display:block}.ast-header-stick-fade-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content,.ast-header-stick-scroll-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content,.ast-header-stick-slide-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content{display:none}.ast-header-stick-fade-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-desktop-header-content,.ast-header-stick-scroll-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-desktop-header-content,.ast-header-stick-slide-active .ast-main-header-nav-open.ast-hfb-header #masthead>.ast-desktop-header-content{display:none}.ast-header-stick-fade-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content,.ast-header-stick-scroll-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content,.ast-header-stick-slide-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-mobile-header-wrap .ast-mobile-header-content{display:none}.ast-header-stick-fade-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content,.ast-header-stick-scroll-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content,.ast-header-stick-slide-active.ast-off-canvas-active .ast-main-header-nav-open.ast-hfb-header #ast-fixed-header .ast-desktop-header-content{display:none}.ast-above-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content,.ast-above-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content,.ast-above-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content,.ast-above-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content,.ast-below-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content,.ast-below-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content,.ast-below-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content,.ast-below-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content,.ast-primary-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content,.ast-primary-sticky-header-active.ast-main-header-nav-open.ast-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content,.ast-primary-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>#ast-desktop-header .ast-desktop-header-content,.ast-primary-sticky-header-active.ast-main-header-nav-open.astra-hfb-header #masthead>.ast-mobile-header-wrap .ast-mobile-header-content{position:fixed}.site-above-header-wrap,.site-below-header-wrap,.site-primary-header-wrap{transition:all .2s linear}.ast-header-stick-slide-active .ast-flyout-menu-enable.ast-header-break-point #masthead>.main-header-bar-navigation{display:none!important}.ast-header-stick-fade-active .ast-flyout-menu-enable.ast-header-break-point #masthead>.main-header-bar-navigation{display:none!important}.ast-flyout-menu-overlay .ast-stick-primary-below-wrapper.ast-sticky-active{z-index:5}.ast-fullscreen-menu-overlay #ast-fixed-header{z-index:9}.ast-flyout-menu-enable.ast-primary-sticky-enabled .ast-stick-primary-below-wrapper,.ast-flyout-menu-enable.ast-primary-sticky-enabled .main-header-bar{overflow-y:unset!important}#ast-mobile-header .content-align-flex-start{max-height:60vh;overflow:auto}.astra-full-megamenu-wrapper{z-index:99999}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.sub-menu>.menu-item{display:none}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.ast-mm-has-desc>.menu-link{vertical-align:middle;text-align:center}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .menu-item:hover>.menu-link{background-color:transparent}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu{opacity:0;visibility:hidden;padding:15px}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu-focus .menu-item>.menu-link{background-color:transparent}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus{opacity:1;visibility:visible;-js-display:flex;display:flex}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu>.menu-item{padding-left:15px;padding-right:15px;display:block;flex:1;opacity:1}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu>.menu-item:first-child{padding-left:0}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu>.menu-item:last-child{padding-right:0}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu.col-2 .menu-item{width:50%}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu.col-3 .menu-item{width:33.33%}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu.col-4 .menu-item{width:25%}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu .menu-item:last-child{border-right:none}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus .sub-menu{background-color:transparent;display:block;opacity:1;visibility:visible;transform:none}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus .astra-nested-sub-menu .menu-item .menu-link{padding-left:24px}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus .astra-nested-sub-menu .astra-nested-sub-menu .menu-item .menu-link{padding-left:48px}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu .sub-menu{border:none}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu>.menu-item .sub-menu{position:static;width:100%;margin:auto}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu>.menu-item .sub-menu .menu-item{width:100%}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus>.menu-item{padding-left:15px;padding-right:15px}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus>.menu-item:first-child{padding-left:0}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu.astra-megamenu-focus>.menu-item:last-child{padding-right:0}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-megamenu .ast-header-navigation-arrow{display:none!important}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-full-megamenu-wrapper.astra-megamenu-wrapper-focus{opacity:1;visibility:visible}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-full-megamenu-wrapper.astra-megamenu-wrapper-focus .astra-megamenu.astra-megamenu-focus{-js-display:flex;display:flex}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-full-megamenu-wrapper .astra-mega-menu-width-full-stretched{width:100%}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .astra-full-megamenu-wrapper .astra-mega-menu-width-full-stretched .ast-mm-template-content{padding:0}.ast-desktop .ast-mega-menu-enabled .menu-item-has-children.astra-megamenu-li.menu-item .astra-megamenu.sub-menu .menu-item>.menu-link::after{content:""}.ast-desktop .ast-mega-menu-enabled .menu-item-has-children.astra-megamenu-li.menu-item .astra-megamenu.sub-menu .menu-item>.menu-link .ast-icon.icon-arrow{display:none}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li .sub-menu .menu-link,.ast-desktop .ast-mega-menu-enabled.submenu-with-border .astra-megamenu-li .sub-menu .menu-link{border:none}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li[data-megamenu-trigger=click]:not(.megamenu-active):hover .astra-full-megamenu-wrapper,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li[data-megamenu-trigger=click]:not(.megamenu-active):hover .astra-megamenu{opacity:0;visibility:hidden;pointer-events:none}.ast-desktop .main-header-menu .astra-megamenu-li[data-megamenu-trigger=click]:not(.megamenu-active):hover>.sub-menu{visibility:hidden;opacity:0;left:-999em}.ast-desktop .main-header-menu .astra-megamenu-li.megamenu-active>.sub-menu{left:0}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu{opacity:1;visibility:visible;-js-display:flex;display:flex}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu>.menu-item,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu>.menu-item{padding-left:15px;padding-right:15px}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu>.menu-item:first-child,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu>.menu-item:first-child{padding-left:0}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu>.menu-item:last-child,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu>.menu-item:last-child{padding-right:0}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu>.menu-item,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu>.menu-item{padding-left:15px;padding-right:15px}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu>.menu-item:first-child,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu>.menu-item:first-child{padding-left:0}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu>.menu-item:last-child,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu>.menu-item:last-child{padding-right:0}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu.col-2 .menu-item,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu.col-2 .menu-item{width:50%}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu.col-3 .menu-item,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu.col-3 .menu-item{width:33.33%}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu.col-4 .menu-item,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu.col-4 .menu-item{width:25%}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu>.menu-item,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu>.menu-item{display:block;flex:1;opacity:1}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu .sub-menu,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu .sub-menu{background-color:transparent;display:block;opacity:1;visibility:visible;transform:none}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu .astra-nested-sub-menu .menu-item .menu-link,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu .astra-nested-sub-menu .menu-item .menu-link{padding-left:24px}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu .astra-nested-sub-menu .astra-nested-sub-menu .menu-item .menu-link,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu .astra-nested-sub-menu .astra-nested-sub-menu .menu-item .menu-link{padding-left:48px}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu.sub-menu .sub-menu,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu.sub-menu .sub-menu{border:none}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu.sub-menu>.menu-item .sub-menu,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu.sub-menu>.menu-item .sub-menu{position:static;width:100%;margin:auto}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu.sub-menu>.menu-item .sub-menu .menu-item,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu.sub-menu>.menu-item .sub-menu .menu-item{width:100%}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-megamenu.sub-menu .menu-item:last-child,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu.sub-menu .menu-item:last-child{border-right:none}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-full-megamenu-wrapper .astra-megamenu,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-full-megamenu-wrapper .astra-megamenu{-js-display:flex;display:flex}.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-full-megamenu-wrapper,.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-full-megamenu-wrapper{opacity:1;visibility:visible}.ast-desktop .ast-mega-menu-enabled :not(.menu-container-width-mega).astra-megamenu-li.megamenu-active .astra-megamenu .sub-menu .menu-item,.ast-desktop .ast-mega-menu-enabled :not(.menu-container-width-mega).astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu .sub-menu .menu-item{width:100%}.ast-desktop .ast-mega-menu-enabled :not(.menu-container-width-mega).astra-megamenu-li.megamenu-active .astra-megamenu.sub-menu .menu-item .sub-menu,.ast-desktop .ast-mega-menu-enabled :not(.menu-container-width-mega).astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-megamenu.sub-menu .menu-item .sub-menu{min-width:100%}.ast-desktop .ast-mega-menu-enabled :not(.menu-container-width-mega).astra-megamenu-li .astra-megamenu.astra-megamenu-focus .sub-menu .menu-item{width:100%}.ast-desktop .ast-mega-menu-enabled :not(.menu-container-width-mega).astra-megamenu-li .astra-megamenu.astra-megamenu-focus.sub-menu .menu-item .sub-menu{min-width:100%}.ast-desktop .ast-mega-menu-enabled .astra-full-megamenu-wrapper{background:#fff;position:absolute;opacity:0;visibility:hidden;top:100%}.ast-desktop .ast-mega-menu-enabled .astra-full-megamenu-wrapper .astra-megamenu.sub-menu{display:none;position:relative;left:0;top:0;margin:0 auto;padding-left:0;padding-right:0;border-width:0}.ast-desktop .ast-mega-menu-enabled .astra-full-megamenu-wrapper .astra-mega-menu-width-full-stretched.sub-menu{padding:15px}.ast-desktop .ast-mega-menu-enabled .ast-hide-menu-item+.ast-mm-custom-content{margin-top:.9em}.ast-desktop .ast-mega-menu-enabled .menu-item-heading:not(.menu-item-has-children)>a{margin-bottom:.9em}.ast-desktop .ast-above-header-menu .astra-megamenu-li .sub-menu .menu-item.current-menu-ancestor>.menu-link,.ast-desktop .ast-below-header-menu .astra-megamenu-li .sub-menu .menu-item.current-menu-ancestor>.menu-link,.ast-desktop .main-header-menu .astra-megamenu-li .sub-menu .menu-item.current-menu-ancestor>.menu-link{background-color:transparent}.ast-desktop .ast-above-header-menu .astra-megamenu-li .sub-menu .menu-item-heading .menu-text,.ast-desktop .ast-below-header-menu .astra-megamenu-li .sub-menu .menu-item-heading .menu-text,.ast-desktop .main-header-menu .astra-megamenu-li .sub-menu .menu-item-heading .menu-text{vertical-align:text-top}.ast-desktop .ast-mm-custom-text-content,.ast-desktop .ast-mm-template-content{padding:0 1em}.ast-desktop .ast-mm-custom-text-content{margin-bottom:.9em}.ast-desktop .ast-below-header .ast-mm-custom-text-content,.ast-desktop .ast-below-header .ast-mm-template-content{padding:.9em 1em}.ast-desktop .submenu-with-border .astra-full-megamenu-wrapper{border-width:1px;border-style:solid}.ast-desktop .ast-mm-widget-content a{display:initial}.ast-desktop .ast-mm-widget-content .ast-mm-widget-item{padding:1.5em;margin-bottom:.9em}.ast-desktop .ast-mm-widget-content .ast-search-submit{display:none}.ast-desktop .submenu-with-border .astra-megamenu{border-width:1px}.ast-menu-description{line-height:1.6;display:block;font-size:.8em;padding:2px 0}.site-header a .ast-menu-description,.site-header a .sub-arrow{transition:none}.site-header .menu-text{transition:none}.ast-header-break-point .ast-menu-description{line-height:inherit}.astra-mm-highlight-label{font-size:.7em;margin-left:5px;line-height:normal;padding:3px 6px;border-radius:2px}.ast-desktop .ast-hide-menu-item{display:none}.ast-desktop .ast-mega-menu-enabled .ast-hide-menu-item{display:none}.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu>.menu-item-has-children>.menu-link::after,.ast-desktop .ast-mega-menu-enabled.ast-below-header-menu>.menu-item-has-children>.menu-link::after,.ast-desktop .ast-mega-menu-enabled.main-header-menu>.menu-item-has-children>.menu-link::after{content:"";margin:0}.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow:after,.ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow:after,.ast-desktop .ast-mega-menu-enabled.main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow:after{transform:rotate(-90deg)}.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow,.ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow,.ast-desktop .ast-mega-menu-enabled.main-header-menu .sub-menu .menu-item.menu-item-has-children>.menu-link .sub-arrow{position:absolute;right:5%;top:50%;transform:translateY(-50%)}.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .ast-masthead-custom-menu-items a:focus,.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .ast-masthead-custom-menu-items a:hover,.ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .ast-masthead-custom-menu-items a:focus,.ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .ast-masthead-custom-menu-items a:hover,.ast-desktop .ast-mega-menu-enabled.main-header-menu .ast-masthead-custom-menu-items a:focus,.ast-desktop .ast-mega-menu-enabled.main-header-menu .ast-masthead-custom-menu-items a:hover{background:0 0}.ast-builder-menu-mobile .ast-mega-menu-enabled.main-header-menu .menu-item-has-children.astra-megamenu-li>.menu-link .sub-arrow:after,.ast-builder-menu-mobile .ast-mega-menu-enabled.main-header-menu .menu-item-has-children>.menu-link .sub-arrow:after,.ast-header-break-point .ast-mega-menu-enabled.main-header-menu .menu-item-has-children.astra-megamenu-li>.menu-link .sub-arrow:after,.ast-header-break-point .ast-mega-menu-enabled.main-header-menu .menu-item-has-children>.menu-link .sub-arrow:after{display:none}.ast-disable-link{cursor:default}.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .sub-menu .menu-item.menu-item-heading:focus>.menu-link,.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .sub-menu .menu-item.menu-item-heading:hover>.menu-link,.ast-desktop .ast-mega-menu-enabled.ast-above-header-menu .sub-menu .menu-item.menu-item-heading>.menu-link:hover{background:0 0}.ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .sub-menu .menu-item.menu-item-heading:focus>.menu-link,.ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .sub-menu .menu-item.menu-item-heading:hover>.menu-link,.ast-desktop .ast-mega-menu-enabled.ast-below-header-menu .sub-menu .menu-item.menu-item-heading>.menu-link:hover{background:0 0}.ast-desktop .ast-mega-menu-enabled.main-header-menu .sub-menu .menu-item.menu-item-heading>.menu-link{background:0 0}.ast-desktop .ast-above-header-menu .astra-mega-menu-width-full,.ast-desktop .ast-above-header-menu .astra-mega-menu-width-full-stretched,.ast-desktop .ast-below-header-menu .astra-mega-menu-width-full,.ast-desktop .ast-below-header-menu .astra-mega-menu-width-full-stretched,.ast-desktop .astra-mega-menu-width-full,.ast-desktop .astra-mega-menu-width-full-stretched{background:0 0}.ast-desktop .main-header-menu>.menu-item .astra-full-megamenu-wrapper:before{position:absolute;content:"";top:0;left:0;width:100%;transform:translateY(-100%)}.ast-desktop .main-header-menu.ast-menu-shadow .astra-full-megamenu-wrapper .sub-menu{box-shadow:none}.ast-desktop .main-header-menu.ast-menu-shadow .astra-megamenu .sub-menu{box-shadow:none}.ast-desktop .main-header-menu.ast-menu-shadow .astra-full-megamenu-wrapper{box-shadow:0 4px 10px -2px rgba(0,0,0,.1)}.ast-header-break-point .ast-above-header .sub-menu .menu-item .ast-hide-menu-item,.ast-header-break-point .ast-below-header .sub-menu .menu-item .ast-hide-menu-item,.ast-header-break-point .main-navigation .sub-menu .menu-item .ast-hide-menu-item{display:none}.ast-header-break-point .ast-above-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle,.ast-header-break-point .ast-below-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle,.ast-header-break-point .main-navigation .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle{display:none}.ast-header-break-point .ast-above-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.sub-menu,.ast-header-break-point .ast-below-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.sub-menu,.ast-header-break-point .main-navigation .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.sub-menu{display:block!important}.ast-header-break-point .ast-above-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.ast-mm-custom-content+.sub-menu,.ast-header-break-point .ast-below-header .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.ast-mm-custom-content+.sub-menu,.ast-header-break-point .main-navigation .sub-menu .menu-item .ast-hide-menu-item+.ast-menu-toggle+.ast-mm-custom-content+.sub-menu{display:block!important}.ast-hidden{display:none!important}.rtl.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li.megamenu-active .astra-full-megamenu-wrapper .astra-megamenu,.rtl.ast-desktop .ast-mega-menu-enabled .astra-megamenu-li:not([data-megamenu-trigger=click]):hover .astra-full-megamenu-wrapper .astra-megamenu{right:0}.main-header-bar-wrap .ast-search-box.header-cover{z-index:7}.ast-below-header-wrap .ast-search-box.header-cover #close,.ast-below-header-wrap .ast-search-box.header-cover .search-field{font-size:1.8em}.ast-below-header-wrap .ast-search-box.header-cover .search-submit{font-size:1.5em}.ast-search-box.full-screen,.ast-search-box.header-cover{display:none;opacity:0;transition:opacity .3s ease-in-out,display .3s ease-in-out;width:100%;height:100%}.ast-search-box.full-screen .search-field,.ast-search-box.header-cover .search-field{background:0 0;border:0;color:#fafafa;box-shadow:none;text-align:left;padding:0}.ast-search-box.full-screen .search-submit,.ast-search-box.header-cover .search-submit{background:var(--ast-fs-search-submit-background,0 0);padding:0;border-radius:50%;box-shadow:none;color:var(--ast-fs-search-text-color,#9e9e9e);transition:all .7s ease-In;outline:0;border:0;vertical-align:middle}.ast-search-box.full-screen .ast-search-wrapper,.ast-search-box.header-cover .ast-search-wrapper{position:absolute;width:100%;left:50%;top:50%;transform:translate(-50%,-50%)}.ast-search-box.full-screen .ast-search-wrapper .search-form,.ast-search-box.header-cover .ast-search-wrapper .search-form{line-height:normal}.ast-search-box.full-screen #close,.ast-search-box.header-cover #close{color:#fafafa;transform:rotate(0);font-size:2em;cursor:pointer;z-index:9;font-weight:400}.ast-search-box.full-screen .search-field::-webkit-input-placeholder,.ast-search-box.header-cover .search-field::-webkit-input-placeholder{color:#fafafa}.ast-search-box.full-screen .search-field:-moz-placeholder,.ast-search-box.header-cover .search-field:-moz-placeholder{color:#fafafa}.ast-search-box.full-screen .search-field::-moz-placeholder,.ast-search-box.header-cover .search-field::-moz-placeholder{color:#fafafa}.ast-search-box.full-screen .search-field:-ms-input-placeholder,.ast-search-box.header-cover .search-field:-ms-input-placeholder{color:#fafafa}.ast-search-box.header-cover{position:absolute;background:rgba(25,25,25,.96);top:0;z-index:10}.ast-search-box.header-cover .search-field{font-size:2em;line-height:2;width:100%}.ast-search-box.header-cover .ast-container{position:relative}.ast-search-box.header-cover .close,.ast-search-box.header-cover .search-submit,.ast-search-box.header-cover .search-text-wrap{display:inline-block}.ast-search-box.header-cover .search-text-wrap{width:calc(100% - 2.5em);vertical-align:middle}.ast-search-box.header-cover .search-submit{font-size:1.7em;margin-right:2em}.ast-search-box.header-cover #close{vertical-align:middle;backface-visibility:hidden}.ast-search-box.full-screen{position:fixed;background:rgba(25,25,25,.96);top:0;left:0;z-index:999}.ast-search-box.full-screen .ast-search-wrapper .large-search-text{text-align:center;color:#e2e2e2;font-size:1.5em;font-weight:400;transition-delay:50ms;transition:all .3s ease-in-out}.ast-search-box.full-screen .ast-search-wrapper fieldset{border:0;padding:2.5em 0 1em;border-bottom:2px solid var(--ast-border-color)}.ast-search-box.full-screen .ast-search-wrapper .search-field{font-size:2em;padding-left:20px;line-height:1.7;width:92%;vertical-align:middle}.ast-search-box.full-screen .ast-search-wrapper .search-form{width:70%;margin:20px auto}.ast-search-box.full-screen .ast-search-wrapper .search-submit{font-size:var(--ast-fs-search-font-size, 1.7em)}.ast-search-box.full-screen #close{position:absolute;color:#fafafa;right:1em;line-height:1;cursor:pointer;z-index:9;font-weight:400;font-size:2em;top:1.5em;backface-visibility:hidden}.ast-search-box.full-screen ::-webkit-input-placeholder{opacity:0}.ast-search-box.full-screen ::-moz-placeholder{opacity:0}.ast-search-box.full-screen :-ms-input-placeholder{opacity:0}.ast-search-box.full-screen :-moz-placeholder{opacity:0}@media (max-width:420px){.ast-search-box.full-screen ::-webkit-input-placeholder{opacity:1}.ast-search-box.full-screen ::-moz-placeholder{opacity:1}.ast-search-box.full-screen :-ms-input-placeholder{opacity:1}.ast-search-box.full-screen :-moz-placeholder{opacity:1}}.ast-hfb-header .ast-search-box.full-screen.full-screen ::-webkit-input-placeholder{opacity:.5}.ast-hfb-header .ast-search-box.full-screen.full-screen ::-moz-placeholder{opacity:.5}.ast-hfb-header .ast-search-box.full-screen.full-screen :-ms-input-placeholder{opacity:.5}.ast-hfb-header .ast-search-box.full-screen.full-screen :-moz-placeholder{opacity:.5}.site-header .ast-inline-search.ast-search-menu-icon .search-form{padding-left:0;padding-right:0}.site-header .ast-inline-search.ast-search-menu-icon .search-field{padding-left:1em;padding-right:2em}.ast-inline-search.ast-search-menu-icon{position:relative;transform:none;left:0;right:0}.ast-inline-search.ast-search-menu-icon .search-submit{display:block;background:0 0;border:none;position:absolute;height:100%;right:.25em;padding:0;top:0;font-size:1.3em;color:#757575}.ast-header-break-point .ast-inline-search.ast-search-menu-icon .search-form{padding:0}.ast-header-break-point .site-header .ast-inline-search.ast-search-menu-icon .search-field{padding-right:2em}.ast-header-break-point .ast-search-box.full-screen .ast-search-wrapper .search-field{width:80%}.ast-header-custom-item-inside.ast-desktop .main-header-menu .ast-search-menu-icon.full-screen,.ast-header-custom-item-inside.ast-desktop .main-header-menu .ast-search-menu-icon.header-cover{display:none}.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-1 .ast-search-menu-icon .search-form{right:-1em;left:auto;padding-left:0;padding-right:3em}.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-1 .search-field{padding-right:0;padding-left:1em}.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-2 .ast-search-menu-icon .search-form{left:-1em;right:auto;padding-right:0;padding-left:3em}.ast-header-break-point .ast-swap-above-header-sections .ast-above-header-section-2 .search-field{padding-left:0;padding-right:1em}.ast-header-break-point .ast-above-header .ast-above-header-section-1 .ast-inline-search.ast-search-menu-icon .search-field{padding-right:0}.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .ast-above-header-section-2 .ast-search-menu-icon .search-form{padding-left:0;left:auto;padding-right:2em}.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .ast-above-header-section-2 .ast-search-menu-icon.slide-search .search-form{left:-1em;padding-left:2em}.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .ast-above-header-section-1 .search-field{padding-right:0}.ast-header-break-point .ast-swap-above-header-sections.ast-mobile-header-stack .ast-above-header .search-field{padding-right:0;padding-left:1em}.ast-header-break-point .ast-above-header-mobile-stack .ast-above-header .ast-above-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form{right:auto;padding-right:2em}.ast-header-break-point .ast-swap-below-header-sections .ast-below-header .below-header-section-2 .ast-search-menu-icon.ast-inline-search .search-form{left:0;padding-left:0;padding-right:2em}.ast-header-break-point .ast-swap-below-header-sections .below-header-section-1 .ast-search-menu-icon .search-form{right:-1em;left:auto;padding-left:0;padding-right:3em}.ast-header-break-point .ast-swap-below-header-sections .below-header-section-1 .search-field{padding-right:0;padding-left:1em}.ast-header-break-point .ast-swap-below-header-sections .below-header-section-2 .ast-search-menu-icon .search-form{left:-1em;right:auto;padding-right:0;padding-left:3em}.ast-header-break-point .ast-swap-below-header-sections .below-header-section-2 .search-field{padding-left:0;padding-right:1em}.ast-header-break-point .ast-below-header .below-header-section-1 .ast-inline-search.ast-search-menu-icon .search-field{padding-right:0}.ast-header-break-point .ast-swap-below-header-sections.site-header .ast-below-header .ast-inline-search.ast-search-menu-icon .search-field{padding-left:1em;padding-right:0}.ast-header-break-point .ast-swap-below-header-sections .ast-below-header .below-header-section-2 .ast-search-menu-icon .search-form{left:-1em;padding-left:3em;padding-right:1em}.ast-below-header-mobile-stack .ast-below-header .below-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form{right:auto;padding-right:2em}.iphone.full-screen,.ipod.full-screen{position:fixed!important}@media (max-width:992px){.ast-above-header-mobile-stack .ast-above-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form{left:auto}.ast-below-header-mobile-stack .below-header-section-1 .ast-search-menu-icon.ast-inline-search .search-form{left:auto}}@media (max-width:544px){.ast-search-box.full-screen .ast-search-wrapper .large-search-text{display:none}.ast-search-box.full-screen .ast-search-wrapper .search-field,.ast-search-box.full-screen .ast-search-wrapper .search-submit{font-size:1.6em}}
#content:before{content:"921";position:absolute;overflow:hidden;opacity:0;visibility:hidden;}.blog-layout-2{position:relative;}.single .ast-author-details .author-title{color:#388e3c;}.single.ast-page-builder-template .ast-single-author-box{padding:2em 20px;}.single.ast-separate-container .ast-author-meta{padding:3em;}@media (max-width:921px){.single.ast-separate-container .ast-author-meta{padding:1.5em 2.14em;}.single .ast-author-meta .post-author-avatar{margin-bottom:1em;}.ast-separate-container .ast-grid-2 .ast-article-post,.ast-separate-container .ast-grid-3 .ast-article-post,.ast-separate-container .ast-grid-4 .ast-article-post{width:100%;}.ast-separate-container .ast-grid-md-1 .ast-article-post{width:100%;}.ast-separate-container .ast-grid-md-2 .ast-article-post.ast-separate-posts,.ast-separate-container .ast-grid-md-3 .ast-article-post.ast-separate-posts,.ast-separate-container .ast-grid-md-4 .ast-article-post.ast-separate-posts{padding:0 .75em 0;}.blog-layout-1 .post-content,.blog-layout-1 .ast-blog-featured-section{float:none;}.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .square .posted-on{margin-top:0;}.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on{margin-top:1em;}.ast-separate-container .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content{margin-top:-1.5em;}.ast-separate-container .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content{margin-left:-2.14em;margin-right:-2.14em;}.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .entry-header .post-thumb-img-content:first-child{margin-top:-1.5em;}.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .post-thumb-img-content{margin-left:-2.14em;margin-right:-2.14em;}.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on,.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on,.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on{margin-left:-1.5em;margin-right:-1.5em;}.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on,.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on,.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on{margin-left:-0.5em;margin-right:-0.5em;}.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .square .posted-on,.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .square .posted-on,.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .square .posted-on{margin-top:0;}.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on,.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on,.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on{margin-top:1em;}.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content,.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content,.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content{margin-top:-1.5em;}.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content,.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content,.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content{margin-left:-1.5em;margin-right:-1.5em;}.blog-layout-2{display:flex;flex-direction:column-reverse;}.ast-separate-container .blog-layout-3,.ast-separate-container .blog-layout-1{display:block;}.ast-plain-container .ast-grid-2 .ast-article-post,.ast-plain-container .ast-grid-3 .ast-article-post,.ast-plain-container .ast-grid-4 .ast-article-post,.ast-page-builder-template .ast-grid-2 .ast-article-post,.ast-page-builder-template .ast-grid-3 .ast-article-post,.ast-page-builder-template .ast-grid-4 .ast-article-post{width:100%;}.ast-separate-container .ast-blog-layout-4-grid .ast-article-post{display:flex;}}@media (max-width:921px){.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on{margin-top:0;margin-left:-2.14em;}.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on{margin-top:0;margin-left:-1.14em;}}@media (min-width:922px){.ast-separate-container.ast-blog-grid-2 .ast-archive-description,.ast-separate-container.ast-blog-grid-3 .ast-archive-description,.ast-separate-container.ast-blog-grid-4 .ast-archive-description{margin-bottom:1.33333em;}.blog-layout-2.ast-no-thumb .post-content,.blog-layout-3.ast-no-thumb .post-content{width:calc(100% - 5.714285714em);}.blog-layout-2.ast-no-thumb.ast-no-date-box .post-content,.blog-layout-3.ast-no-thumb.ast-no-date-box .post-content{width:100%;}.ast-separate-container .ast-grid-2 .ast-article-post.ast-separate-posts,.ast-separate-container .ast-grid-3 .ast-article-post.ast-separate-posts,.ast-separate-container .ast-grid-4 .ast-article-post.ast-separate-posts{border-bottom:0;}.ast-separate-container .ast-grid-2 > .site-main > .ast-row:before,.ast-separate-container .ast-grid-2 > .site-main > .ast-row:after,.ast-separate-container .ast-grid-3 > .site-main > .ast-row:before,.ast-separate-container .ast-grid-3 > .site-main > .ast-row:after,.ast-separate-container .ast-grid-4 > .site-main > .ast-row:before,.ast-separate-container .ast-grid-4 > .site-main > .ast-row:after{flex-basis:0;width:0;}.ast-separate-container .ast-grid-2 .ast-article-post,.ast-separate-container .ast-grid-3 .ast-article-post,.ast-separate-container .ast-grid-4 .ast-article-post{display:flex;padding:0;}.ast-plain-container .ast-grid-2 > .site-main > .ast-row,.ast-plain-container .ast-grid-3 > .site-main > .ast-row,.ast-plain-container .ast-grid-4 > .site-main > .ast-row,.ast-page-builder-template .ast-grid-2 > .site-main > .ast-row,.ast-page-builder-template .ast-grid-3 > .site-main > .ast-row,.ast-page-builder-template .ast-grid-4 > .site-main > .ast-row{margin-left:-1em;margin-right:-1em;display:flex;flex-flow:row wrap;align-items:stretch;}.ast-plain-container .ast-grid-2 > .site-main > .ast-row:before,.ast-plain-container .ast-grid-2 > .site-main > .ast-row:after,.ast-plain-container .ast-grid-3 > .site-main > .ast-row:before,.ast-plain-container .ast-grid-3 > .site-main > .ast-row:after,.ast-plain-container .ast-grid-4 > .site-main > .ast-row:before,.ast-plain-container .ast-grid-4 > .site-main > .ast-row:after,.ast-page-builder-template .ast-grid-2 > .site-main > .ast-row:before,.ast-page-builder-template .ast-grid-2 > .site-main > .ast-row:after,.ast-page-builder-template .ast-grid-3 > .site-main > .ast-row:before,.ast-page-builder-template .ast-grid-3 > .site-main > .ast-row:after,.ast-page-builder-template .ast-grid-4 > .site-main > .ast-row:before,.ast-page-builder-template .ast-grid-4 > .site-main > .ast-row:after{flex-basis:0;width:0;}.ast-plain-container .ast-grid-2 .ast-article-post,.ast-plain-container .ast-grid-3 .ast-article-post,.ast-plain-container .ast-grid-4 .ast-article-post,.ast-page-builder-template .ast-grid-2 .ast-article-post,.ast-page-builder-template .ast-grid-3 .ast-article-post,.ast-page-builder-template .ast-grid-4 .ast-article-post{display:flex;}.ast-plain-container .ast-grid-2 .ast-article-post:last-child,.ast-plain-container .ast-grid-3 .ast-article-post:last-child,.ast-plain-container .ast-grid-4 .ast-article-post:last-child,.ast-page-builder-template .ast-grid-2 .ast-article-post:last-child,.ast-page-builder-template .ast-grid-3 .ast-article-post:last-child,.ast-page-builder-template .ast-grid-4 .ast-article-post:last-child{margin-bottom:1.5em;}.ast-separate-container .ast-grid-2 > .site-main > .ast-row,.ast-separate-container .ast-grid-3 > .site-main > .ast-row,.ast-separate-container .ast-grid-4 > .site-main > .ast-row{margin-left:-1em;margin-right:-1em;display:flex;flex-flow:row wrap;align-items:stretch;}.single .ast-author-meta .ast-author-details{display:flex;align-items:center;}.post-author-bio .author-title{margin-bottom:10px;}}@media (min-width:922px){.single .post-author-avatar,.single .post-author-bio{float:left;clear:right;}.single .ast-author-meta .post-author-avatar{margin-right:1.33333em;}.single .ast-author-meta .about-author-title-wrapper,.single .ast-author-meta .post-author-bio{text-align:left;}.blog-layout-2 .post-content{padding-right:2em;}.blog-layout-2.ast-no-date-box.ast-no-thumb .post-content{padding-right:0;}.blog-layout-3 .post-content{padding-left:2em;}.blog-layout-3.ast-no-date-box.ast-no-thumb .post-content{padding-left:0;}.ast-separate-container .ast-grid-2 .ast-article-post.ast-separate-posts:nth-child(2n+0),.ast-separate-container .ast-grid-2 .ast-article-post.ast-separate-posts:nth-child(2n+1),.ast-separate-container .ast-grid-3 .ast-article-post.ast-separate-posts:nth-child(2n+0),.ast-separate-container .ast-grid-3 .ast-article-post.ast-separate-posts:nth-child(2n+1),.ast-separate-container .ast-grid-4 .ast-article-post.ast-separate-posts:nth-child(2n+0),.ast-separate-container .ast-grid-4 .ast-article-post.ast-separate-posts:nth-child(2n+1){padding:0 1em 0;}}@media (max-width:544px){.ast-separate-container .ast-grid-sm-1 .ast-article-post{width:100%;}.ast-separate-container .ast-grid-sm-2 .ast-article-post.ast-separate-posts,.ast-separate-container .ast-grid-sm-3 .ast-article-post.ast-separate-posts,.ast-separate-container .ast-grid-sm-4 .ast-article-post.ast-separate-posts{padding:0 .5em 0;}.ast-separate-container .ast-grid-sm-1 .ast-article-post.ast-separate-posts{padding:0;}.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on{margin-top:0.5em;}.ast-separate-container .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content,.ast-separate-container .ast-article-single.remove-featured-img-padding .single-layout-1 .post-thumb-img-content,.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on,.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on,.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on{margin-left:-1em;margin-right:-1em;}.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on,.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on,.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on{margin-left:-0.5em;margin-right:-0.5em;}.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on,.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on,.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section:first-child .circle .posted-on{margin-top:0.5em;}.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content,.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content,.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-content .ast-blog-featured-section:first-child .post-thumb-img-content{margin-top:-1.33333em;}.ast-separate-container.ast-blog-grid-2 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content,.ast-separate-container.ast-blog-grid-3 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content,.ast-separate-container.ast-blog-grid-4 .ast-article-post.remove-featured-img-padding .blog-layout-1 .post-thumb-img-content{margin-left:-1em;margin-right:-1em;}.ast-separate-container .ast-grid-2 .ast-article-post .blog-layout-1,.ast-separate-container .ast-grid-2 .ast-article-post .blog-layout-2,.ast-separate-container .ast-grid-2 .ast-article-post .blog-layout-3{padding:1.33333em 1em;}.ast-separate-container .ast-grid-3 .ast-article-post .blog-layout-1,.ast-separate-container .ast-grid-4 .ast-article-post .blog-layout-1{padding:1.33333em 1em;}.single.ast-separate-container .ast-author-meta{padding:1.5em 1em;}}@media (max-width:544px){.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .square .posted-on{margin-left:-1em;}.ast-separate-container .ast-article-post.remove-featured-img-padding.has-post-thumbnail .blog-layout-1 .post-content .ast-blog-featured-section .circle .posted-on{margin-left:-0.5em;}}h1,h2,h3,h4,h5,h6{margin-bottom:20px;}@media (min-width:922px){.ast-hide-display-device-desktop{display:none;}[class^="astra-advanced-hook-"] .wp-block-query .wp-block-post-template .wp-block-post{width:100%;}}@media (min-width:545px) and (max-width:921px){.ast-hide-display-device-tablet{display:none;}}@media (max-width:544px){.ast-hide-display-device-mobile{display:none;}}.ast-post-social-sharing .ast-social-sharing-heading {margin-bottom: .5em;}.ast-post-social-sharing .ast-social-inner-wrap,.ast-author-box-sharing .ast-social-inner-wrap {width: fit-content;}.ast-post-social-sharing .ast-social-element > .ahfb-svg-iconset,.ast-author-box-sharing .ast-social-element > .ahfb-svg-iconset {display: flex;}.ast-post-social-sharing .ast-social-element,.ast-author-box-sharing .ast-social-element {display: inline-block;vertical-align: middle;}.ast-post-social-sharing .social-item-label {display: block;color: var(--ast-global-color-3);}.ast-blog-layout-4-grid .ast-article-post,.ast-blog-layout-5-grid .ast-article-post,.ast-blog-layout-6-grid .ast-article-post{box-shadow:0px 6px 15px -2px rgba(16,24,40,0.05);}.ast-article-post .ast-date-meta .posted-on,.ast-article-post .ast-date-meta .posted-on *{background:#388e3c;color:#ffffff;}.ast-article-post .ast-date-meta .posted-on .date-month,.ast-article-post .ast-date-meta .posted-on .date-year{color:#ffffff;}.ast-loader > div{background-color:#388e3c;}.blog-layout-5 .post-thumb-img-content{position:static;}.blog-layout-5 .ast-blog-single-element.ast-taxonomy-container.cat-links{position:static;text-align:inherit;}.ast-page-builder-template .ast-archive-description{margin-bottom:2em;}.ast-post-social-sharing .ast-social-inner-wrap .ast-social-icon-a:first-child,.ast-author-box-sharing .ast-social-inner-wrap .ast-social-icon-a:first-child{margin-left:0;}.ast-post-social-sharing .ast-social-inner-wrap .ast-social-icon-a:last-child,.ast-author-box-sharing .ast-social-inner-wrap .ast-social-icon-a:last-child{margin-right:0;}.ast-post-social-sharing{display:flex;flex-wrap:wrap;flex-direction:column;align-items:flex-start;}.ast-author-box-sharing{display:flex;flex-wrap:wrap;flex-direction:column;align-items:flex-start;}.ast-post-social-sharing .ast-social-inner-wrap,.ast-author-box-sharing .ast-social-inner-wrap{width:auto;}.ast-post-social-sharing a.ast-social-icon-a,.ast-author-box-sharing a.ast-social-icon-a{justify-content:center;line-height:normal;display:inline-flex;text-align:center;text-decoration:none;}.ast-post-social-sharing a.ast-social-icon-a{display:inline-block;margin-left:10px;margin-right:10px;}.ast-author-box-sharing a.ast-social-icon-a{display:inline-block;margin-left:10px;margin-right:10px;}.ast-post-social-sharing .social-item-label,.ast-author-box-sharing .social-item-label{width:100%;text-align:center;}.ast-post-social-sharing .ast-social-element,.ast-author-box-sharing .ast-social-element{padding:0px;}.ast-post-social-sharing .ast-social-element svg,.ast-author-box-sharing .ast-social-element svg{width:20px;height:20px;fill:var(--color);}.ast-post-social-sharing .ast-social-icon-image-wrap,.ast-author-box-sharing .ast-social-icon-image-wrap{margin:0px;}@media (max-width:921px){.ast-post-social-sharing .ast-social-element svg,.ast-author-box-sharing .ast-social-element svg{width:20px;height:20px;}.ast-post-social-sharing .ast-social-inner-wrap .ast-social-icon-a,.ast-author-box-sharing .ast-social-inner-wrap .ast-social-icon-a{margin-left:10px;margin-right:10px;}.ast-post-social-sharing .ast-social-element,.ast-author-box-sharing .ast-social-element{padding:0px;}.ast-post-social-sharing .ast-social-icon-image-wrap,.ast-author-box-sharing .ast-social-icon-image-wrap{margin:0px;}}@media (max-width:544px){.ast-post-social-sharing .ast-social-element svg,.ast-author-box-sharing .ast-social-element svg{width:20px;height:20px;}.ast-post-social-sharing .ast-social-inner-wrap .ast-social-icon-a,.ast-author-box-sharing .ast-social-inner-wrap .ast-social-icon-a{margin-left:10px;margin-right:10px;}.ast-post-social-sharing .ast-social-element,.ast-author-box-sharing .ast-social-element{padding:0px;}.ast-post-social-sharing .ast-social-icon-image-wrap,.ast-author-box-sharing .ast-social-icon-image-wrap{margin:0px;}}.ast-post-filter{overflow: hidden;}.ast-post-filter ul{list-style: none;margin: 0;margin-bottom: 3em;display: flex;flex-wrap: wrap;}a.ast-post-filter-single{margin: .375em;padding: 0.5em 0.63em;cursor: pointer;font-weight: 400;line-height: normal;border-radius: 4px;border: 0;display: inline-block;text-decoration: none;}.ast-post-filter{display:block;}.ast-post-filter ul{justify-content:center;margin-right:-;margin-left:-;}.ast-row{transition-property:opacity;;transition-duration:.5s;transition-timing-function:cubic-bezier(0.2,1,0.2,1);}@media (max-width:921px){.ast-post-filter{display:block;}.ast-post-filter ul{justify-content:center;margin-right:-;margin-left:-;}}@media (max-width:544px){.ast-post-filter{display:block;}.ast-post-filter ul{justify-content:center;margin-right:-;margin-left:-;}}.ast-load-more {cursor: pointer;display: none;border: 2px solid var(--ast-border-color);transition: all 0.2s linear;color: #000;}.ast-load-more.active {display: inline-block;padding: 0 1.5em;line-height: 3em;}.ast-load-more.no-more:hover {border-color: var(--ast-border-color);color: #000;}.ast-load-more.no-more:hover {background-color: inherit;}.ast-header-search .ast-search-menu-icon .search-field{border-radius:2px;}.ast-header-search .ast-search-menu-icon .search-submit{border-radius:2px;}.ast-header-search .ast-search-menu-icon .search-form{border-top-width:1px;border-bottom-width:1px;border-left-width:1px;border-right-width:1px;border-color:#ddd;border-radius:2px;}@media (min-width:922px){.ast-container{max-width:100%;}}@media (min-width:993px){.ast-container{max-width:100%;}}@media (min-width:1201px){.ast-container{max-width:100%;}}@media (min-width: 922px) {.ast-container {padding-left:11px;padding-right:11px;}}@media (max-width:921px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .ast-comment-list li.depth-1,.ast-separate-container .comment-respond .ast-separate-container .ast-related-posts-wrap{padding-top:1.5em;padding-bottom:1.5em;}.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-count-wrapper,.ast-separate-container .ast-comment-list li.depth-1,.ast-separate-container .comment-respond,.ast-separate-container .related-posts-title-wrapper,.ast-separate-container .related-posts-title-wrapper .single.ast-separate-container .about-author-title-wrapper,.ast-separate-container .ast-related-posts-wrap{padding-right:2.14em;padding-left:2.14em;}.ast-narrow-container .ast-article-post,.ast-narrow-container .ast-article-single,.ast-narrow-container .ast-comment-list li.depth-1,.ast-narrow-container .comment-respond,.ast-narrow-container .ast-related-posts-wrap,.ast-narrow-container .ast-single-related-posts-container{padding-top:1.5em;padding-bottom:1.5em;}.ast-narrow-container .ast-article-post,.ast-narrow-container .ast-article-single,.ast-narrow-container .comments-count-wrapper,.ast-narrow-container .ast-comment-list li.depth-1,.ast-narrow-container .comment-respond,.ast-narrow-container .related-posts-title-wrapper,.ast-narrow-container .related-posts-title-wrapper,.single.ast-narrow-container .about-author-title-wrapper,.ast-narrow-container .ast-related-posts-wrap,.ast-narrow-container .ast-single-related-posts-container{padding-right:2.14em;padding-left:2.14em;}.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container #primary,.ast-plain-container #primary,.ast-narrow-container #primary{margin-top:1.5em;margin-bottom:1.5em;}.ast-left-sidebar #primary,.ast-right-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container #primary,.ast-narrow-container #primary{padding-left:0em;padding-right:0em;}.ast-no-sidebar.ast-separate-container .entry-content .alignfull,.ast-no-sidebar.ast-narrow-container .entry-content .alignfull{margin-right:-2.14em;margin-left:-2.14em;}}@media (max-width:544px){.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .ast-comment-list li.depth-1,.ast-separate-container .comment-respond,.ast-separate-container .ast-related-posts-wrap{padding-top:0em;padding-bottom:0em;}.ast-narrow-container .ast-article-post,.ast-narrow-container .ast-article-single,.ast-narrow-container .ast-comment-list li.depth-1,.ast-narrow-container .comment-respond,.ast-narrow-container .ast-related-posts-wrap,.ast-narrow-container .ast-single-related-posts-container{padding-top:0em;padding-bottom:0em;}.ast-separate-container .ast-article-post,.ast-separate-container .ast-article-single,.ast-separate-container .comments-count-wrapper,.ast-separate-container .ast-comment-list li.depth-1,.ast-separate-container .comment-respond,.ast-separate-container .related-posts-title-wrapper,.ast-separate-container .related-posts-title-wrapper,.single.ast-separate-container .about-author-title-wrapper,.ast-separate-container .ast-related-posts-wrap{padding-right:0em;padding-left:0em;}.ast-narrow-container .ast-article-post,.ast-narrow-container .ast-article-single,.ast-narrow-container .comments-count-wrapper,.ast-narrow-container .ast-comment-list li.depth-1,.ast-narrow-container .comment-respond,.ast-narrow-container .related-posts-title-wrapper,.ast-narrow-container .related-posts-title-wrapper,.single.ast-narrow-container .about-author-title-wrapper,.ast-narrow-container .ast-related-posts-wrap,.ast-narrow-container .ast-single-related-posts-container{padding-right:0em;padding-left:0em;}.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container #primary,.ast-plain-container #primary,.ast-narrow-container #primary{margin-top:0px;margin-bottom:0px;}.ast-left-sidebar #primary,.ast-right-sidebar #primary,.ast-separate-container.ast-right-sidebar #primary,.ast-separate-container.ast-left-sidebar #primary,.ast-separate-container #primary,.ast-narrow-container #primary{padding-left:0px;padding-right:0px;}.ast-no-sidebar.ast-separate-container .entry-content .alignfull,.ast-no-sidebar.ast-narrow-container .entry-content .alignfull{margin-right:-0em;margin-left:-0em;}}@media (max-width:544px){.ast-header-break-point .header-main-layout-2 .site-branding,.ast-header-break-point .ast-mobile-header-stack .ast-mobile-menu-buttons{padding-bottom:0px;}}@media (max-width:921px){.ast-separate-container.ast-two-container #secondary .widget,.ast-separate-container #secondary .widget{margin-bottom:1.5em;}}@media (max-width:921px){.ast-separate-container #primary,.ast-narrow-container #primary{padding-top:0px;}}@media (max-width:544px){.ast-separate-container #primary,.ast-narrow-container #primary{padding-top:0px;}}@media (max-width:921px){.ast-separate-container #primary,.ast-narrow-container #primary{padding-bottom:0px;}}@media (max-width:544px){.ast-separate-container #primary,.ast-narrow-container #primary{padding-bottom:0px;}}.site-header .ast-sticky-shrunk .ast-site-identity,.ast-sticky-shrunk .main-header-menu > .menu-item > .menu-link,.ast-sticky-shrunk li.ast-masthead-custom-menu-items{padding-top:0px;padding-bottom:0px;} .ast-header-break-point .ast-sticky-shrunk.main-navigation .sub-menu .menu-item .menu-link{padding-top:0px;padding-bottom:0px;}.ast-sticky-shrunk .main-header-menu .sub-menu .menu-link{padding-top:0.9em;padding-bottom:0.9em;}.site-header .ast-sticky-shrunk .ast-site-identity,.ast-sticky-shrunk li.ast-masthead-custom-menu-items{padding-top:0.5em;padding-bottom:0.5em;}.ast-sticky-header-shrink .ast-primary-header-bar.ast-header-sticked,.ast-sticky-header-shrink .ast-primary-header-bar.ast-header-sticked .site-primary-header-wrap,.ast-header-sticked .ast-primary-header-bar .site-primary-header-wrap,.ast-sticky-header-shrink .ast-mobile-header-wrap .ast-primary-header-bar.ast-header-sticked,.ast-sticky-header-shrink .ast-mobile-header-wrap .ast-stick-primary-below-wrapper.ast-header-sticked .ast-below-header ,.ast-sticky-header-shrink .ast-stick-primary-below-wrapper.ast-header-sticked .ast-primary-header-bar .site-primary-header-wrap{min-height:58px;}.ast-desktop.ast-sticky-header-shrink .ast-primary-header-bar.ast-header-sticked .main-header-menu > .menu-item{line-height:58px;}.ast-sticky-header-shrink .ast-above-header-bar.ast-header-sticked .site-above-header-wrap,.ast-sticky-header-shrink .ast-above-header-bar.ast-header-sticked .site-above-header-wrap,.ast-header-sticked .ast-above-header-bar .site-above-header-wrap,.ast-header-sticked .ast-above-header-bar,.ast-sticky-header-shrink .ast-mobile-header-wrap .ast-above-header-bar.ast-header-sticked{min-height:20px;}.ast-desktop.ast-sticky-header-shrink .ast-above-header-bar.ast-header-sticked .main-header-menu > .menu-item{line-height:20px;}.ast-sticky-header-shrink .ast-below-header-bar.ast-header-sticked,.ast-sticky-header-shrink .ast-below-header-bar.ast-header-sticked .site-below-header-wrap,.ast-sticky-header-shrink .ast-below-header-bar.ast-header-sticked.site-below-header-wrap,.ast-header-sticked .ast-below-header-bar .site-below-header-wrap,.ast-sticky-header-shrink .ast-mobile-header-wrap .ast-below-header-bar.ast-header-sticked .site-below-header-wrap{min-height:20px;}.ast-desktop.ast-sticky-header-shrink .ast-below-header-bar.ast-header-sticked .main-header-menu > .menu-item{line-height:20px;}.ast-builder-menu-1 .main-header-menu.submenu-with-border .astra-megamenu,.ast-builder-menu-1 .main-header-menu.submenu-with-border .astra-full-megamenu-wrapper{border-top-width:10px;border-bottom-width:10px;border-right-width:10px;border-left-width:10px;border-color:var(--ast-global-color-4);border-style:solid;}@media (max-width:921px){.ast-header-break-point .ast-builder-menu-1 .main-header-menu .sub-menu > .menu-item > .menu-link{padding-top:0px;padding-bottom:0px;padding-left:30px;padding-right:20px;}.ast-header-break-point .ast-builder-menu-1 .sub-menu .menu-item.menu-item-has-children > .ast-menu-toggle{top:0px;right:calc( 20px - 0.907em );}}@media (max-width:544px){.ast-header-break-point .ast-builder-menu-1 .sub-menu .menu-item.menu-item-has-children > .ast-menu-toggle{top:0px;}}.ast-above-header,.main-header-bar,.ast-below-header {-webkit-transition: all 0.2s linear;transition: all 0.2s linear;}.ast-above-header,.main-header-bar,.ast-below-header {max-width:100%;}[CLASS*="-sticky-header-active"] .ast-header-sticked [data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-toggle-icon .ast-mobile-svg{fill:#388e3c;}[CLASS*="-sticky-header-active"] .ast-header-sticked [data-section="section-header-mobile-trigger"] .ast-button-wrap .mobile-menu-wrap .mobile-menu{color:#388e3c;}[CLASS*="-sticky-header-active"] .ast-header-sticked [data-section="section-header-mobile-trigger"] .ast-button-wrap .ast-mobile-menu-trigger-minimal{background:transparent;}.site-title,.site-title a{font-weight:600;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;line-height:1.23em;}.ast-blog-meta-container{font-weight:600;}.ast-read-more-container a{font-size:16px;font-size:0.88888888888889rem;}.ast-excerpt-container{font-size:16px;font-size:0.88888888888889rem;}.ast-pagination .page-numbers,.ast-pagination .page-navigation{font-size:16px;font-size:0.88888888888889rem;}.widget-area.secondary .sidebar-main .wp-block-heading,#secondary .widget-title{font-size:26px;font-size:1.4444444444444rem;font-weight:600;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;line-height:1.23em;}.secondary .widget > *:not(.widget-title){font-size:16px;font-size:0.88888888888889rem;}.blog .entry-title,.blog .entry-title a,.archive .entry-title,.archive .entry-title a,.search .entry-title,.search .entry-title a{font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen-Sans,Ubuntu,Cantarell,Helvetica Neue,sans-serif;font-weight:500;line-height:1.23em;}button,.ast-button,input#submit,input[type="button"],input[type="submit"],input[type="reset"]{font-size:16px;font-size:0.88888888888889rem;font-weight:500;}h4.widget-title{font-weight:600;}h5.widget-title{font-weight:600;}h6.widget-title{font-weight:600;}.ast-hfb-header.ast-desktop .ast-builder-menu-1 .main-header-menu .menu-item.menu-item-heading > .menu-link{font-weight:700;}.ast-desktop .ast-mm-widget-content .ast-mm-widget-item{padding:0;}.ast-header-break-point .menu-text + .icon-arrow,.ast-desktop .menu-link > .icon-arrow:first-child,.ast-header-break-point .main-header-menu > .menu-item > .menu-link .icon-arrow,.ast-header-break-point .astra-mm-highlight-label + .icon-arrow{display:none;}.ast-advanced-headers-layout.ast-advanced-headers-layout-2 .ast-container{flex-direction:column;}.ast-advanced-headers-different-logo .advanced-header-logo,.ast-header-break-point .ast-has-mobile-header-logo .advanced-header-logo{display:inline-block;}.ast-header-break-point.ast-advanced-headers-different-logo .ast-has-mobile-header-logo .ast-mobile-header-logo{display:none;}.ast-advanced-headers-layout{width:100%;}.ast-header-break-point .ast-advanced-headers-parallax{background-attachment:fixed;}#masthead .site-logo-img .astra-logo-svg,.ast-header-break-point #ast-fixed-header .site-logo-img .custom-logo-link img {max-width:75px;}#ast-fixed-header .ast-container{max-width:100%;padding-left:35px;padding-right:35px;}@media (max-width:921px){#ast-fixed-header .ast-container{padding-left:20px;padding-right:20px;}}[CLASS*="-sticky-header-active"] #ast-fixed-header.ast-header-sticked .site-title a,[CLASS*="-sticky-header-active"] .ast-header-sticked .site-title a:focus,[CLASS*="-sticky-header-active"] .ast-header-sticked .site-title a:visited ,[CLASS*="-sticky-header-active"] .ast-header-sticked .site-title a{color:var(--ast-global-color-2);}[CLASS*="-sticky-header-active"].ast-desktop .ast-builder-menu-1 .main-header-menu.ast-mega-menu-enabled .sub-menu .menu-item.menu-item-heading > .menu-link{color:var(--ast-global-color-3);background:transparent;}[CLASS*="-sticky-header-active"].ast-desktop .ast-builder-menu-1 .main-header-menu.ast-mega-menu-enabled .sub-menu .menu-item.menu-item-heading:hover > .menu-link,[CLASS*="-sticky-header-active"].ast-desktop .ast-builder-menu-1 .main-header-menu.ast-mega-menu-enabled .sub-menu .menu-item.menu-item-heading > .menu-link:hover{background:transparent;}[CLASS*="-sticky-header-active"] .ast-builder-menu-1 .main-header-menu > .menu-item > .menu-link{color:var(--ast-global-color-3);}[CLASS*="-sticky-header-active"] .ast-builder-menu-1 .main-header-menu,[CLASS*="-sticky-header-active"] .ast-builder-menu-1 .main-header-menu > .menu-item > .menu-link{background-color:var(--ast-global-color-5);}[CLASS*="-sticky-header-active"] .ast-builder-menu-1 .main-header-menu .menu-item > .menu-link:hover,[CLASS*="-sticky-header-active"] .ast-builder-menu-1 .main-header-menu .current-menu-parent > .menu-link:hover,[CLASS*="-sticky-header-active"] .ast-builder-menu-1 .main-header-menu .menu-item:hover > .menu-link{background-color:var(--ast-global-color-5);}[CLASS*="-sticky-header-active"] .ast-builder-menu-1 .main-header-menu .menu-item.current-menu-item > .menu-link{background-color:var(--ast-global-color-5);}[CLASS*="-sticky-header-active"] .ast-builder-menu-1 .main-header-menu .current-menu-parent > .menu-link{background-color:var(--ast-global-color-5);}@media (max-width:921px){.ast-primary-sticky-header-active.ast-main-header-nav-open nav{overflow-y:auto;max-height:calc(100vh - 100px);}}[CLASS*="-sticky-header-active"].ast-desktop .ast-builder-menu-2 .main-header-menu.ast-mega-menu-enabled .sub-menu .menu-item.menu-item-heading > .menu-link{background:transparent;}[CLASS*="-sticky-header-active"].ast-desktop .ast-builder-menu-2 .main-header-menu.ast-mega-menu-enabled .sub-menu .menu-item.menu-item-heading:hover > .menu-link,[CLASS*="-sticky-header-active"].ast-desktop .ast-builder-menu-2 .main-header-menu.ast-mega-menu-enabled .sub-menu .menu-item.menu-item-heading > .menu-link:hover{background:transparent;}@media (max-width:921px){.ast-primary-sticky-header-active.ast-main-header-nav-open nav{overflow-y:auto;max-height:calc(100vh - 100px);}}@media (max-width:921px){.ast-primary-sticky-header-active.ast-main-header-nav-open nav{overflow-y:auto;max-height:calc(100vh - 100px);}}.ast-transparent-header.ast-primary-sticky-header-active .main-header-bar-wrap .main-header-bar,.ast-primary-sticky-header-active .main-header-bar-wrap .main-header-bar,.ast-primary-sticky-header-active.ast-header-break-point .main-header-bar-wrap .main-header-bar,.ast-transparent-header.ast-primary-sticky-enabled .ast-main-header-wrap .main-header-bar.ast-header-sticked,.ast-primary-sticky-enabled .ast-main-header-wrap .main-header-bar.ast-header-sticked,.ast-primary-sticky-header-ast-primary-sticky-enabled .ast-main-header-wrap .main-header-bar.ast-header-sticked{backdrop-filter:blur(10px );-webkit-backdrop-filter:blur(10px);}.ast-desktop .ast-builder-menu-1 .main-header-menu .menu-item.menu-item-heading > .menu-link{color:var(--ast-global-color-1);}.ast-builder-menu-1 .main-header-menu .sub-menu .menu-link{color:var(--ast-global-color-0);}.ast-builder-menu-1 .main-header-menu .sub-menu .menu-item > .ast-menu-toggle{color:var(--ast-global-color-0);}.ast-builder-menu-1 .main-header-menu .sub-menu .menu-item .menu-link:hover{color:var(--ast-global-color-1);}.ast-builder-menu-1 .main-header-menu .sub-menu .menu-item:hover > .menu-link,.ast-builder-menu-1 .main-header-menu .inline-on-mobile .menu-item:hover > .ast-menu-toggle{color:var(--ast-global-color-1);}.ast-builder-menu-1 .main-header-menu .sub-menu .menu-item:hover > .ast-menu-toggle{color:var(--ast-global-color-0);}
/**
 * America's State Parks - Premium Mega Menu
 * 
 * Provides a visually stunning mega-menu experience with
 * regional state groupings and smooth animations.
 * 
 * @version 1.0.0
 */

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
    --asp-menu-bg: #ffffff;
    --asp-menu-text: #1e293b;
    --asp-menu-text-muted: #64748b;
    --asp-menu-hover: #166534;
    --asp-menu-accent: #22c55e;
    --asp-menu-gold: #fbbf24;
    --asp-menu-border: #e2e8f0;
    --asp-menu-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    --asp-menu-radius: 16px;
    --asp-transition-fast: 150ms ease;
    --asp-transition-smooth: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Main Navigation Bar
   ========================================================================== */

.asp-mega-nav {
    position: relative;
    z-index: 1000;
}

/* Primary menu container */
.main-navigation .ast-nav-menu,
.main-header-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Top-level menu items */
.main-header-menu>.menu-item>a,
.ast-nav-menu>.menu-item>a {
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--asp-menu-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--asp-transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.main-header-menu>.menu-item>a:hover,
.ast-nav-menu>.menu-item>a:hover {
    color: var(--asp-menu-hover);
    background: rgba(22, 101, 52, 0.08);
}

/* Current page indicator */
.main-header-menu>.menu-item.current-menu-item>a,
.main-header-menu>.menu-item.current-menu-ancestor>a {
    color: var(--asp-menu-hover);
    background: rgba(22, 101, 52, 0.08);
}

/* Dropdown arrow */
.asp-menu-arrow {
    display: flex;
    align-items: center;
    transition: transform var(--asp-transition-smooth);
}

.menu-item-has-children:hover .asp-menu-arrow {
    transform: rotate(180deg);
}

/* ==========================================================================
   Standard Dropdown (Non-Mega)
   ========================================================================== */

.main-header-menu .sub-menu:not(.asp-mega-menu),
.ast-nav-menu .sub-menu:not(.asp-mega-menu) {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--asp-menu-bg);
    border: 1px solid var(--asp-menu-border);
    border-radius: var(--asp-menu-radius);
    box-shadow: var(--asp-menu-shadow);
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--asp-transition-smooth);
    z-index: 1001;
}

.main-header-menu .menu-item-has-children:hover>.sub-menu:not(.asp-mega-menu),
.ast-nav-menu .menu-item-has-children:hover>.sub-menu:not(.asp-mega-menu) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Standard dropdown items */
.sub-menu:not(.asp-mega-menu) .menu-item a {
    display: block;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    color: var(--asp-menu-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--asp-transition-fast);
}

.sub-menu:not(.asp-mega-menu) .menu-item a:hover {
    color: var(--asp-menu-hover);
    background: rgba(22, 101, 52, 0.08);
    padding-left: 1.25rem;
}

/* ==========================================================================
   Mega Menu Container
   ========================================================================== */

.asp-mega-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    transform: translateX(-50%) translateY(10px) !important;
    width: 95vw !important;
    max-width: 1050px !important;
    margin-left: 0 !important;
    background: var(--asp-menu-bg);
    border: 1px solid var(--asp-menu-border);
    border-radius: var(--asp-menu-radius);
    box-shadow: var(--asp-menu-shadow);
    padding: 2rem 2.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--asp-transition-smooth);
    z-index: 1001;
    left: 50% !important;
    right: auto !important;
}

/* Show mega menu on hover */
.asp-mega-menu-trigger:hover .asp-mega-menu-container {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) !important;
}

/* Mega menu header */
.asp-mega-header {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--asp-menu-text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--asp-menu-accent);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.asp-mega-header::before {
    content: '🗺️';
    font-size: 1.5rem;
}

/* ==========================================================================
   Regional States Grid
   ========================================================================== */

.asp-mega-regions-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .asp-mega-regions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .asp-mega-regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Region column */
.asp-region-column {
    min-width: 0;
}

/* Region label */
.asp-region-label {
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--asp-menu-hover);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--asp-menu-accent);
}

/* State links within region */
.asp-region-states {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asp-region-states li {
    margin: 0;
}

.asp-region-states a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.15rem 0.5rem;
    /* Reduced vertical padding */
    margin-left: -0.5rem;
    font-size: 0.875rem;
    color: var(--asp-menu-text);
    text-decoration: none;
    border-radius: 6px;
    transition: all var(--asp-transition-fast);
    white-space: nowrap;
    /* Prevent line wrap */
}

.asp-region-states a:hover {
    color: var(--asp-menu-hover);
    background: rgba(22, 101, 52, 0.08);
    transform: translateX(4px);
}

.asp-region-states a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--asp-menu-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--asp-transition-fast);
}

.asp-region-states a:hover::before {
    opacity: 1;
}

/* ==========================================================================
   Activities Category Grid
   ========================================================================== */

.asp-mega-activities-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1200px) {
    .asp-mega-activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .asp-mega-activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Category column */
.asp-category-column {
    min-width: 0;
}

/* Category label */
.asp-category-label {
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--asp-menu-hover);
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--asp-menu-accent);
}

/* Activity links within category */
.asp-category-activities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asp-category-activities li {
    margin: 0;
}

.asp-category-activities a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.15rem 0.5rem;
    margin-left: -0.5rem;
    font-size: 0.8125rem;
    color: var(--asp-menu-text);
    text-decoration: none;
    border-radius: 6px;
    transition: all var(--asp-transition-fast);
    white-space: nowrap;
}

.asp-category-activities a:hover {
    color: var(--asp-menu-hover);
    background: rgba(22, 101, 52, 0.08);
    transform: translateX(4px);
}

.asp-category-activities a::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--asp-menu-accent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity var(--asp-transition-fast);
}

.asp-category-activities a:hover::before {
    opacity: 1;
}

/* Different header icon for Activities mega menu */
.asp-mega-activities .asp-mega-header::before {
    content: '🎿';
}

/* ==========================================================================
   Things to Do Hub Grid
   ========================================================================== */

.asp-mega-things-header::before {
    content: '🏞️' !important;
}

.asp-mega-things-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1200px) {
    .asp-mega-things-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .asp-mega-things-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Hub article card */
.asp-things-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--asp-menu-border);
    background: #fafdf7;
    text-decoration: none;
    transition: all var(--asp-transition-smooth);
    cursor: pointer;
}

.asp-things-card:hover {
    border-color: var(--asp-menu-accent);
    background: rgba(22, 101, 52, 0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(22, 101, 52, 0.12);
}

.asp-things-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    line-height: 1;
}

.asp-things-title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--asp-menu-text);
    margin-bottom: 0.5rem;
    display: block;
    transition: color var(--asp-transition-fast);
}

.asp-things-card:hover .asp-things-title {
    color: var(--asp-menu-hover);
}

.asp-things-desc {
    font-size: 0.8125rem;
    color: var(--asp-menu-text-muted);
    line-height: 1.4;
    display: block;
}

/* ==========================================================================
   Mobile Navigation
   ========================================================================== */

@media (max-width: 992px) {

    /* Mobile menu container */
    .ast-mobile-popup-drawer .main-header-menu,
    .ast-mobile-popup-inner .main-header-menu {
        display: flex;
        flex-direction: column;
        padding: 1rem;
    }

    /* Mobile menu items */
    .ast-mobile-popup-drawer .menu-item,
    .ast-mobile-popup-inner .menu-item {
        width: 100%;
        border-bottom: 1px solid var(--asp-menu-border);
    }

    .ast-mobile-popup-drawer .menu-item>a,
    .ast-mobile-popup-inner .menu-item>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        font-size: 1rem;
        font-weight: 600;
        color: var(--asp-menu-text);
        min-height: 48px;
        /* Touch target */
    }

    /* Mobile dropdown toggle */
    .ast-mobile-popup-drawer .menu-item-has-children>a .asp-menu-arrow,
    .ast-mobile-popup-inner .menu-item-has-children>a .asp-menu-arrow {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: -1rem;
        background: #f1f5f9;
        border-radius: 8px;
    }

    /* Mobile sub-menu (accordion style) */
    .ast-mobile-popup-drawer .sub-menu,
    .ast-mobile-popup-inner .sub-menu {
        position: static !important;
        display: none;
        width: 100%;
        padding: 0 0 0.5rem 1rem;
        background: transparent;
        box-shadow: none;
        border: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .ast-mobile-popup-drawer .menu-item.toggled>.sub-menu,
    .ast-mobile-popup-inner .menu-item.toggled>.sub-menu {
        display: block;
    }

    /* Mobile mega menu - becomes accordion */
    .ast-mobile-popup-drawer .asp-mega-menu-container,
    .ast-mobile-popup-inner .asp-mega-menu-container {
        position: static !important;
        width: 100%;
        transform: none !important;
        max-width: none;
        padding: 1rem;
        border-radius: 0;
        box-shadow: none;
        border: none;
        background: #f8fafc;
    }

    /* Mobile regions - vertical stack */
    .ast-mobile-popup-drawer .asp-mega-regions-grid,
    .ast-mobile-popup-inner .asp-mega-regions-grid,
    .ast-mobile-popup-drawer .asp-mega-activities-grid,
    .ast-mobile-popup-inner .asp-mega-activities-grid,
    .ast-mobile-popup-drawer .asp-mega-things-grid,
    .ast-mobile-popup-inner .asp-mega-things-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .asp-region-column,
    .asp-category-column {
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--asp-menu-border);
    }

    .asp-region-column:last-child,
    .asp-category-column:last-child {
        border-bottom: none;
    }
}

/* ==========================================================================
   Accessibility Enhancements
   ========================================================================== */

/* Focus states */
.main-header-menu a:focus,
.asp-region-states a:focus,
.asp-category-activities a:focus {
    outline: 2px solid var(--asp-menu-hover);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

    .asp-mega-menu-container,
    .sub-menu,
    .asp-menu-arrow,
    .asp-region-states a,
    .asp-category-activities a {
        transition: none !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --asp-menu-border: #000000;
        --asp-menu-text: #000000;
    }

    .asp-region-label {
        border-bottom-width: 3px;
    }
}
/**
 * America's State Parks - Premium Footer
 * 
 * Multi-section footer with brand, navigation columns,
 * social icons, gradient accents, and micro-animations.
 * 
 * @version 3.0.0
 */

/* ==========================================================================
   Hide Default Astra Footer
   ========================================================================== */

footer.site-footer,
#colophon {
    display: none !important;
}

/* ==========================================================================
   Design Tokens
   ========================================================================== */

.asp-premium-footer {
    --f-bg: #1a2e23;
    --f-bg-deep: #142019;
    --f-text: rgba(255, 255, 255, 0.7);
    --f-text-dim: rgba(255, 255, 255, 0.45);
    --f-heading: rgba(255, 255, 255, 0.95);
    --f-accent: #4a9d6e;
    --f-accent-light: #6bc48f;
    --f-link-hover: #ffffff;
    --f-border: rgba(255, 255, 255, 0.08);
    --f-max-width: 1240px;
    --f-glow: radial-gradient(ellipse 600px 400px at 20% 50%, rgba(74, 157, 110, 0.06) 0%, transparent 70%);
}

/* ==========================================================================
   Footer Container
   ========================================================================== */

.asp-premium-footer {
    position: relative;
    background-color: var(--f-bg);
    color: var(--f-text);
    font-family: 'Inter',"Inter Fallback", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 0;
    width: 100%;
    overflow: hidden;
}

/* Subtle background glow */
.asp-premium-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--f-glow);
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   Gradient Accent Line (Top)
   ========================================================================== */

.asp-footer-accent {
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--f-accent) 20%,
            var(--f-accent-light) 50%,
            var(--f-accent) 80%,
            transparent 100%);
    opacity: 0.8;
}

/* ==========================================================================
   Inner Container
   ========================================================================== */

.asp-footer-inner {
    max-width: var(--f-max-width);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Main Footer (4 Columns)
   ========================================================================== */

.asp-footer-main {
    padding: 56px 0 48px;
}

.asp-footer-main .asp-footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

/* ==========================================================================
   Brand Column
   ========================================================================== */

.asp-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.asp-footer-logo-icon {
    color: var(--f-accent-light);
    flex-shrink: 0;
}

.asp-footer-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--f-heading);
    letter-spacing: -0.01em;
}

.asp-footer-tagline {
    color: var(--f-text);
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 300px;
}

/* ==========================================================================
   Social Icons
   ========================================================================== */

.asp-footer-social {
    display: flex;
    gap: 12px;
}

.asp-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--f-text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.asp-social-link:hover {
    background: rgba(74, 157, 110, 0.15);
    border-color: var(--f-accent);
    color: var(--f-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 157, 110, 0.15);
}

.asp-social-link svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Link Columns
   ========================================================================== */

.asp-footer-heading {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--f-heading);
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--f-accent);
    display: inline-block;
}

.asp-footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.asp-footer-links li {
    margin-bottom: 10px;
}

.asp-footer-links a {
    color: var(--f-text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
    position: relative;
    padding-left: 0;
}

.asp-footer-links a::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid var(--f-accent-light);
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    opacity: 0;
    transition: all 0.25s ease;
}

.asp-footer-links a:hover {
    color: var(--f-link-hover);
    padding-left: 18px;
}

.asp-footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* ==========================================================================
   Divider
   ========================================================================== */

.asp-footer-divider {
    max-width: var(--f-max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--f-border) 15%,
            rgba(255, 255, 255, 0.12) 50%,
            var(--f-border) 85%,
            transparent 100%);
}

/* ==========================================================================
   Bottom Bar
   ========================================================================== */

.asp-footer-bottom {
    padding: 24px 0;
    background: var(--f-bg-deep);
}

.asp-footer-bottom .asp-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.asp-footer-copyright {
    font-size: 14px;
    color: var(--f-text);
    margin: 0;
}

.asp-footer-copyright a {
    color: var(--f-accent-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.asp-footer-copyright a:hover {
    color: var(--f-link-hover);
}

.asp-footer-affiliate {
    font-size: 11px;
    color: var(--f-text-dim);
    margin: 0;
    max-width: 700px;
    line-height: 1.5;
}

/* ==========================================================================
   Responsive: Tablet
   ========================================================================== */

@media (max-width: 992px) {
    .asp-footer-main .asp-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }

    .asp-footer-brand {
        grid-column: 1 / -1;
    }

    .asp-footer-tagline {
        max-width: 100%;
    }

    .asp-footer-social {
        margin-bottom: 8px;
    }
}

/* ==========================================================================
   Responsive: Mobile
   ========================================================================== */

@media (max-width: 600px) {
    .asp-footer-main {
        padding: 40px 0 32px;
    }

    .asp-footer-main .asp-footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .asp-footer-heading {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .asp-footer-bottom .asp-footer-inner {
        padding: 0 16px;
    }

    .asp-footer-affiliate {
        font-size: 10px;
    }
}

/* ==========================================================================
   Newsletter Section (Get Insider Tips)
   Styles the existing widget-based newsletter in Astra
   ========================================================================== */

.ast-builder-layout-element[data-section="section-hb-below-header-1"],
.entry-content>.wp-block-group:has(h3:is(.has-text-align-center)),
.site-below-footer-wrap .ast-builder-layout-element {
    /* Keep existing newsletter styling */
}
/**
 * Hub Article Styles — Tier 1 Landing Pages (v6.0.0)
 * 
 * Premium visual design matching State Park page quality.
 * Uses Astra's Page Builder content layout (set via PHP filter).
 *
 * @package Astra-Child
 * @since 6.0.0
 */

/* ============================================================================
   DESIGN TOKENS
   ============================================================================ */

:root {
    --hub-container-max: 1600px;
    --hub-pad-inline: clamp(16px, 3vw, 40px);

    /* Brand palette */
    --hub-green-700: #2e7d32;
    --hub-green-600: #388e3c;
    --hub-green-100: #e8f5e9;
    --hub-green-50: #f1f8e9;

    /* Neutrals */
    --hub-color-title: #0d1f13;
    --hub-color-heading: #1a2e1a;
    --hub-color-text: #374151;
    --hub-color-muted: #6b7280;
    --hub-white: #ffffff;
    --hub-bg: #f5f5f0;

    /* Effects */
    --hub-radius: 16px;
    --hub-radius-sm: 10px;
    --hub-shadow-card: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.06);
    --hub-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.10);
    --hub-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================================
   HIDE LEGACY TOC PLUGINS — Floating Blog TOC is used instead
   ============================================================================ */

.asp-hub-article .toc-sidebar,
.asp-hub-article .lwptoc,
.asp-hub-article .lwptoc_i,
.asp-hub-article #toc_container,
.asp-hub-article .ez-toc-container,
.asp-hub-article .rank-math-toc-container,
.asp-hub-article .wp-block-rank-math-toc-block,
.asp-hub-article .sp-toc {
    display: none !important;
}

/* ============================================================================
   GLOBAL PAGE SETUP
   ============================================================================ */

.asp-hub-article {
    overflow-x: hidden;
    background: var(--hub-bg);
}

/* Hide any sidebar that might render */
.asp-hub-article #secondary {
    display: none;
}

/* Force primary container to take full width and disable auto-centering from Astra no-sidebar layout */
.asp-hub-article #primary {
    max-width: 100% !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Main container width */
.asp-hub-article .ast-container,
.asp-hub-article .site-content>.ast-container {
    max-width: var(--hub-container-max);
    margin: 0 auto;
    padding-left: var(--hub-pad-inline);
    padding-right: var(--hub-pad-inline);
}

/* ============================================================================
   SPECTRA GRID FIX — Override 3-column to clean 2-column layout
   
   Spectra outputs a 3-column grid where the first column is an empty spacer.
   We hide the spacer and force a clean content + sidebar layout.
   ============================================================================ */

/* Force the grid to 2 columns: content takes available space, sidebar fixed */
.asp-hub-article .uagb-layout-grid {
    display: grid !important;
    grid-template-columns: 1fr 320px !important;
    gap: 2rem !important;
    overflow: visible !important;
}

/* Hide the empty first Spectra column (spacer div with no useful content) */
.asp-hub-article .uagb-layout-grid>.wp-block-uagb-container:not(:has(.entry-content)):not(:has(.aawp-product)) {
    display: none !important;
}

/* ============================================================================
   CONTENT CARD — White elevated card for main content
   Matches the premium State Park page aesthetic
   ============================================================================ */

/* The Spectra grid column wrapping .entry-content */
.asp-hub-article .uagb-layout-grid>.wp-block-uagb-container:has(.entry-content) {
    background: var(--hub-white);
    border-radius: var(--hub-radius);
    box-shadow: var(--hub-shadow-card);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    align-self: start;
}

/* Universal Content Card — White elevated styling applied directly to entry content */
.asp-hub-article .entry-content {
    background: var(--hub-white);
    border-radius: var(--hub-radius);
    box-shadow: var(--hub-shadow-card);
    padding: clamp(1.5rem, 3vw, 2.5rem) !important;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box;
    overflow: visible !important;
    /* Extremely important to let 100vw hero images break out without being clipped */
}

/* EXCEPTION: If entry-content is wrapped in a Spectra Grid, the white card is handled by the wrapper column.
   Remove the background and padding from entry-content to prevent double-boxing. */
.asp-hub-article .uagb-layout-grid .entry-content {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Fix Hero Image layout when embedded directly in the padded white card. 
   Pulls the hero up to cover the top padding, ensuring it sits flush, while keeping the content padded. */
.asp-hub-article .entry-content>.wp-block-cover:first-of-type,
.asp-hub-article .entry-content>.wp-block-image:first-of-type,
.asp-hub-article .entry-content>figure.sp-content-image:first-of-type {
    margin-top: calc(-1 * clamp(1.5rem, 3vw, 2.5rem)) !important;
    margin-bottom: 2rem !important;
}

/* ============================================================================
   AMAZON SIDEBAR — Polished sidebar card
   ============================================================================ */

/* The sidebar Spectra column (the one with Amazon widgets, typically the last child) */
.asp-hub-article .uagb-layout-grid>.wp-block-uagb-container:has(.aawp-product) {
    background: var(--hub-white);
    border-radius: var(--hub-radius);
    box-shadow: var(--hub-shadow-card);
    padding: 1.5rem;
    margin-top: 1.5rem;
    position: sticky;
    top: 100px;
    align-self: start;
}

/* Sidebar heading — "Recommended Gear" feel */
.asp-hub-article .uagb-layout-grid>.wp-block-uagb-container:has(.aawp-product)::before {
    content: "📚 Recommended Guides";
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--hub-green-700);
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--hub-green-100);
}

/* Amazon product cards — refined */
.asp-hub-article .aawp-product {
    max-width: 100%;
    margin: 0 0 1.25rem;
    border-radius: var(--hub-radius-sm);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all var(--hub-transition);
    box-shadow: none;
}

.asp-hub-article .aawp-product:hover {
    border-color: var(--hub-green-600);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.08);
    transform: translateY(-2px);
}

.asp-hub-article .aawp-product:last-child {
    margin-bottom: 0;
}

/* ============================================================================
   BREADCRUMBS — Harmonized with State Park pages
   ============================================================================ */

.asp-hub-article .ast-breadcrumbs-wrapper,
.asp-hub-article .astra-advanced-hook-39909 {
    max-width: var(--hub-container-max);
    margin: 0 auto;
    padding: 12px var(--hub-pad-inline);
}

.asp-hub-article .ast-breadcrumbs-wrapper .rank-math-breadcrumb,
.asp-hub-article .ast-breadcrumbs-wrapper a {
    font-size: 0.85rem;
    color: var(--hub-color-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.asp-hub-article .ast-breadcrumbs-wrapper a:hover {
    color: var(--hub-green-700);
    text-decoration: underline;
}

/* ============================================================================
   TYPOGRAPHY — Premium text design
   ============================================================================ */

/* Article title — hidden if in hero block, styled if visible */
.asp-hub-article .entry-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--hub-color-title);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Hide post meta — hub articles are evergreen */
.asp-hub-article .entry-meta {
    display: none;
}

/* First paragraph — lead text */
.asp-hub-article .entry-content>p:first-of-type {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--hub-color-text);
    font-weight: 400;
}

/* First paragraph first letter — drop cap effect */
.asp-hub-article .entry-content>p:first-of-type::first-letter {
    font-size: 3.2em;
    float: left;
    line-height: 0.8;
    margin-right: 0.08em;
    margin-top: 0.05em;
    font-weight: 800;
    color: var(--hub-green-700);
}

/* Regular paragraphs */
.asp-hub-article .entry-content>p {
    font-size: 1.05rem;
    line-height: 1.78;
    color: var(--hub-color-text);
}

/* ============================================================================
   HEADINGS — Section hierarchy with green accents
   ============================================================================ */

/* H2 — Major sections with accent border */
.asp-hub-article .entry-content>h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--hub-color-heading);
    margin: 3rem 0 1rem;
    padding-top: 2rem;
    padding-bottom: 0.6rem;
    padding-left: 1rem;
    letter-spacing: -0.01em;
    border-top: 1px solid #e5e7eb;
    border-left: 4px solid var(--hub-green-700);
    line-height: 1.3;
}

/* First H2 — no top border (follows intro text) */
.asp-hub-article .entry-content>h2:first-of-type {
    border-top: none;
    margin-top: 2rem;
    padding-top: 0;
}

/* H3 — Sub-sections */
.asp-hub-article .entry-content>h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin: 2rem 0 0.6rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--hub-green-100);
    line-height: 1.35;
}

/* H4 */
.asp-hub-article .entry-content>h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.5rem;
}

/* ============================================================================
   LINKS — Brand green instead of default blue
   ============================================================================ */

.asp-hub-article .entry-content a:not(.wp-block-button__link):not(.aawp-product__link) {
    color: var(--hub-green-700);
    text-decoration: underline;
    text-decoration-color: rgba(46, 125, 50, 0.3);
    text-underline-offset: 2px;
    transition: all 0.2s ease;
}

.asp-hub-article .entry-content a:not(.wp-block-button__link):not(.aawp-product__link):hover {
    color: #1b5e20;
    text-decoration-color: var(--hub-green-700);
}

/* ============================================================================
   LISTS — Refined bullets and spacing
   ============================================================================ */

.asp-hub-article .entry-content>ul,
.asp-hub-article .entry-content>ol {
    padding-left: 1.5rem;
    color: var(--hub-color-text);
    line-height: 1.78;
    margin: 1rem 0 1.5rem;
}

.asp-hub-article .entry-content li {
    margin-bottom: 0.4rem;
}

/* ============================================================================
   TABLES — Premium matching State Park quality
   ============================================================================ */

.asp-hub-article .entry-content table,
.asp-hub-article .wp-block-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--hub-radius-sm);
    overflow: hidden;
    border: 1px solid #e5e7eb;
    margin: 1.5rem 0 2rem;
    font-size: 0.95rem;
}

.asp-hub-article .entry-content th,
.asp-hub-article .wp-block-table th {
    background: var(--hub-green-700);
    color: var(--hub-white);
    font-weight: 600;
    text-align: left;
    padding: 0.8rem 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.asp-hub-article .entry-content td,
.asp-hub-article .wp-block-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    color: var(--hub-color-text);
    vertical-align: top;
}

.asp-hub-article .entry-content tr:nth-child(even),
.asp-hub-article .wp-block-table tr:nth-child(even) {
    background: #fafafa;
}

.asp-hub-article .entry-content tr:hover,
.asp-hub-article .wp-block-table tbody tr:hover {
    background: var(--hub-green-50);
}

.asp-hub-article .entry-content tr:last-child td,
.asp-hub-article .wp-block-table tr:last-child td {
    border-bottom: none;
}

/* ============================================================================
   BLOCKQUOTES — Styled callouts
   ============================================================================ */

.asp-hub-article .entry-content blockquote {
    background: var(--hub-green-50);
    border-left: 4px solid var(--hub-green-700);
    border-radius: 0 var(--hub-radius-sm) var(--hub-radius-sm) 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 2rem;
    font-style: italic;
    color: #2d4a2d;
}

.asp-hub-article .entry-content blockquote p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================================================
   PASS CALLOUT — Annual pass info boxes with link to pillar article
   ============================================================================ */

.asp-hub-article .entry-content blockquote:has(a[href*="annual-passes"]),
.tax-us_state .entry-content blockquote:has(a[href*="annual-passes"]) {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    border-left: 4px solid var(--hub-green-700);
    border-radius: 0 var(--hub-radius-sm) var(--hub-radius-sm) 0;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0 2rem;
    font-style: normal;
    color: #1a2e1a;
    box-shadow: 0 1px 4px rgba(46, 125, 50, 0.08);
}

.asp-hub-article .entry-content blockquote:has(a[href*="annual-passes"]) a,
.tax-us_state .entry-content blockquote:has(a[href*="annual-passes"]) a {
    color: var(--hub-green-700) !important;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--hub-green-700);
}

.asp-hub-article .entry-content blockquote:has(a[href*="annual-passes"]) a:hover,
.tax-us_state .entry-content blockquote:has(a[href*="annual-passes"]) a:hover {
    color: #1b5e20 !important;
}

/* ============================================================================
   IMAGES — Clean presentation with captions
   ============================================================================ */

.asp-hub-article .entry-content img {
    border-radius: var(--hub-radius-sm);
    max-width: 100%;
    height: auto;
}

.asp-hub-article .entry-content figcaption,
.asp-hub-article .entry-content .wp-caption-text {
    font-size: 0.8rem;
    color: var(--hub-color-muted);
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
}

/* ============================================================================
   SPECTRA OVERRIDES — Contain blocks within layout
   ============================================================================ */

/* Override Spectra alignfull */
.asp-hub-article .alignfull,
.asp-hub-article .wp-block-uagb-container.alignfull {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ============================================================================
   SPECTRA STICKY KILL — Disable Spectra's JS-based sticky positioning
   
   Spectra duplicates grid children into "placeholder" divs (with massive 
   inline heights ~20k px) and sets content containers to position:fixed.
   This creates huge empty gaps. We force everything back to normal flow.
   ============================================================================ */

/* Kill all Spectra sticky/fixed positioning in hub articles */
.asp-hub-article .uagb-position__sticky,
.asp-hub-article .uagb-position__sticky.uagb-position__sticky--stuck,
.asp-hub-article [class*="uagb-position__sticky"] {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    transform: none !important;
    z-index: auto !important;
}

/* Collapse Spectra's placeholder spacing divs (the empty ones with inline heights) */
.asp-hub-article .uagb-layout-grid>div[style*="height"]:empty,
.asp-hub-article .uagb-layout-grid>div[style*="min-height"]:empty {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Force grid children to use auto height, not Spectra's JS-calculated heights */
.asp-hub-article .uagb-layout-grid>.wp-block-uagb-container {
    height: auto !important;
    min-height: 0 !important;
}

/* Only allow sticky on the Amazon sidebar (our own CSS, not Spectra's) */
.asp-hub-article .uagb-layout-grid>.wp-block-uagb-container:has(.aawp-product) {
    position: sticky !important;
    top: 100px !important;
    align-self: start;
}

/* ============================================================================
   PARK FILTER INTEGRATION — Premium filter section
   ============================================================================ */

.asp-hub-article .pf-container {
    max-width: 100%;
    padding: 0;
    margin: 2rem 0 3rem;
}

/* Filter bar — sticky disabled, flow naturally */
.asp-hub-article .pf-filter-bar {
    position: relative !important;
    top: auto !important;
    z-index: auto !important;
    max-width: 100%;
    background: var(--hub-white);
    border-radius: var(--hub-radius-sm);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

/* ============================================================================
   AUTHOR BOX — End of article
   ============================================================================ */

.asp-hub-article .asp-author-box {
    border-radius: var(--hub-radius);
    margin-top: 2rem;
}

/* ============================================================================
   RESPONSIVE — Tablet (<=900px)
   ============================================================================ */

@media (max-width: 900px) {

    /* Stack the grid on tablet */
    .asp-hub-article .uagb-layout-grid {
        display: block !important;
    }

    /* Content card — full width, smaller padding */
    .asp-hub-article .uagb-layout-grid>.wp-block-uagb-container:has(.entry-content) {
        padding: 1.5rem;
        border-radius: var(--hub-radius-sm);
        margin-top: 1rem;
    }

    /* Sidebar — un-stick, center */
    .asp-hub-article .uagb-layout-grid>.wp-block-uagb-container:has(.aawp-product) {
        position: relative;
        top: auto;
        padding: 1.25rem;
        margin-top: 1.5rem;
        border-radius: var(--hub-radius-sm);
    }

    /* Amazon widget card — constrain width */
    .asp-hub-article .aawp-product {
        max-width: 420px;
    }

    /* Disable sticky on mobile */
    .asp-hub-article .uagb-position__sticky,
    .asp-hub-article .uagb-position__sticky.uagb-position__sticky--stuck {
        position: relative !important;
        top: auto !important;
    }
}

/* ============================================================================
   RESPONSIVE — Tablet (<=768px)
   ============================================================================ */

@media (max-width: 768px) {

    .asp-hub-article .ast-container,
    .asp-hub-article .site-content>.ast-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .asp-hub-article .entry-title {
        font-size: 1.5rem;
    }

    .asp-hub-article .entry-content>p:first-of-type {
        font-size: 1.05rem;
    }

    .asp-hub-article .entry-content>p:first-of-type::first-letter {
        font-size: 2.5em;
    }

    .asp-hub-article .entry-content>h2 {
        font-size: 1.4rem;
        padding-left: 0.75rem;
    }

    .asp-hub-article .entry-content>h3 {
        font-size: 1.15rem;
    }

    .asp-hub-article .ast-breadcrumbs-wrapper,
    .asp-hub-article .astra-advanced-hook-39909 {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ============================================================================
   RESPONSIVE — Small mobile (<=480px)
   ============================================================================ */

@media (max-width: 480px) {

    .asp-hub-article .uagb-layout-grid>.wp-block-uagb-container:has(.entry-content) {
        padding: 1rem;
        border-radius: 8px;
    }

    .asp-hub-article .entry-title {
        font-size: 1.35rem;
    }

    .asp-hub-article .entry-content>h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .asp-hub-article .entry-content>h3 {
        font-size: 1.1rem;
    }

    .asp-hub-article .entry-content>p:first-of-type::first-letter {
        font-size: 2.2em;
    }

    .asp-hub-article .entry-content table,
    .asp-hub-article .wp-block-table table {
        font-size: 0.85rem;
    }

    .asp-hub-article .entry-content th,
    .asp-hub-article .wp-block-table th,
    .asp-hub-article .entry-content td,
    .asp-hub-article .wp-block-table td {
        padding: 0.5rem 0.6rem;
    }
}

/* ============================================================================
   RESPONSIVE — Large desktop (>=1400px)
   ============================================================================ */

@media (min-width: 1400px) {

    /* Use a centered layout with max 1400px width.
       The TOC takes up 260px on the RIGHT side, so we allocate 320px padding-right
       (260px TOC + 60px gap) to keep text readable without overlapping the TOC. */
    .asp-hub-article .site-content>.ast-container {
        max-width: var(--hub-container-max) !important;
        margin: 0 auto !important;
        padding-left: 40px !important;
        padding-right: 320px !important;
        box-sizing: border-box !important;
    }

    /* Force the Header Menu into Full-Width stretched mode using centered breakout */
    .asp-hub-article .site-header .ast-builder-grid-row {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
        box-sizing: border-box !important;
    }

    /* Force Hero Images to break out of the asymmetrical padded containers.
       Because padding is asymmetrical (40px left, 320px right), the center of the content
       is shifted LEFT by 140px. The negative margin counters this offset to reach the edges. */
    .asp-hub-article .site-content [class*="astra-advanced-hook"]>.wp-block-cover,
    .asp-hub-article .site-content [class*="astra-advanced-hook"]>.wp-block-image,
    .asp-hub-article .site-content [class*="astra-advanced-hook"]>figure,
    .asp-hub-article .entry-content>.wp-block-cover.alignfull,
    .asp-hub-article .entry-content>.wp-block-image.alignfull,
    .asp-hub-article .entry-content>.wp-block-cover:first-of-type,
    .asp-hub-article .entry-content>.wp-block-image:first-of-type,
    .asp-hub-article .entry-content>figure.sp-content-image:first-of-type {
        margin-left: calc(50% - 50vw + 140px) !important;
        margin-right: calc(50% - 50vw - 140px) !important;
        width: 100vw !important;
        max-width: 100vw !important;
        border-radius: 0 !important;
    }

    /* Ensure inner images stretch to 100% and get rid of border-radius */
    .asp-hub-article .site-content [class*="astra-advanced-hook"]>.wp-block-cover img,
    .asp-hub-article .site-content [class*="astra-advanced-hook"]>.wp-block-image img,
    .asp-hub-article .site-content [class*="astra-advanced-hook"]>figure img,
    .asp-hub-article .entry-content>figure.sp-content-image:first-child img,
    .asp-hub-article .entry-content>.wp-block-image:first-child img {
        width: 100% !important;
        height: auto !important;
        border-radius: 0 !important;
    }

    /* UAG Layout grid (Tier 1 Hub Articles structure) */
    .asp-hub-article .uagb-layout-grid {
        grid-template-columns: 1fr 320px !important;
        gap: 2.5rem !important;
    }
}

/* ============================================================================
   HUB TOC OVERRIDES — Keep TOC expanded on hub articles
   ============================================================================ */

/* On large desktop (>=1400px): TOC right next to the content panel */
@media (min-width: 1400px) {
    .asp-hub-article .blog-floating-toc {
        /* Position TOC directly beside the content's right edge.
           Container is 1600px wide, centered (50vw offset).
           Content area ends at: 50vw + 800px - 320px (right padding) = 50vw + 480px.
           TOC starts 20px after: left = 50vw + 500px. */
        left: calc(50vw + 460px) !important;
        right: auto !important;
        width: var(--blog-toc-width) !important;
    }

    /* Always show the TOC content (override the 1200-1599px collapsed default) */
    .asp-hub-article .blog-floating-toc .blog-toc-content {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        background: rgba(255, 255, 255, 0.75) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border-radius: var(--blog-toc-radius) !important;
        padding: 20px 16px !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
        max-height: calc(100vh - 200px) !important;
        overflow-y: auto !important;
    }

    /* Hide the collapsed toggle button - TOC is always visible */
    .asp-hub-article .blog-floating-toc .blog-toc-toggle {
        display: none !important;
    }
}
:where(html.wpc-bgl255) /* State Dropdown */
.sp-finder-state-select{background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E") no-repeat right 10px center}