/** * Copyright (c) 2026 DNA Genics, S.L. All rights reserved.
 * 
 * Low Coverage Regions Report - Cinematic Product Page
 * A contemplative, narrative-driven design presenting low coverage regions as
 * the frontier of ancestral discovery, where ancient signals persist at the
 * edges of memory.
 */

/* ========================================
   Poor Regions Design System
   ======================================== */
:root {
    /* Contemplative Earth Palette */
    --pr-obsidian: #0D0D0F;
    --pr-slate: #1A1C1E;
    --pr-stone: #2A2D31;
    --pr-earth: #3D3A36;
    --pr-sand: #D4CFC7;
    --pr-bone: #E8E4DC;
    --pr-ivory: #F5F3EF;
    --pr-amber: #C4956A;
    --pr-copper: #8B6D4F;
    
    /* Typography */
    --pr-font-display: 'Cormorant Garamond', Georgia, serif;
    --pr-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --pr-section-padding: clamp(80px, 12vh, 140px);
    --pr-content-width: 800px;
    --pr-wide-width: 1100px;
    
    /* Transitions */
    --pr-transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --pr-transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --pr-transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Base & Reset
   ======================================== */
.pr-page {
    background-color: var(--pr-obsidian);
    color: var(--pr-bone);
    font-family: var(--pr-font-body);
    font-size: 18px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ========================================
   Typography
   ======================================== */
.pr-heading-1 {
    font-family: var(--pr-font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--pr-ivory);
    margin: 0;
}

.pr-heading-2 {
    font-family: var(--pr-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--pr-ivory);
    margin: 0 0 1.5rem 0;
}

.pr-heading-3 {
    font-family: var(--pr-font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    line-height: 1.3;
    color: var(--pr-bone);
    margin: 0 0 1rem 0;
}

.pr-body-large {
    font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
    line-height: 1.9;
    color: var(--pr-bone);
    opacity: 1;
}

.pr-body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--pr-bone);
    opacity: 1;
}

.pr-label {
    font-family: var(--pr-font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pr-amber);
}

/* ========================================
   Skip Link (Accessibility)
   ======================================== */
.pr-skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--pr-amber);
    color: var(--pr-obsidian);
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    z-index: 10000;
    transition: top var(--pr-transition-fast);
}

.pr-skip-link:focus {
    top: 16px;
}

/* ========================================
   Scroll Progress Indicator
   ======================================== */
.pr-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--pr-copper), var(--pr-amber));
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ========================================
   Page Navigation Dots
   ======================================== */
.pr-page-nav {
    position: fixed;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: none;
}

@media (min-width: 1200px) {
    .pr-page-nav {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

.pr-nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(168, 159, 145, 0.3);
    border: 1px solid var(--pr-sand);
    transition: all var(--pr-transition-fast);
    position: relative;
    cursor: pointer;
}

.pr-nav-dot:hover,
.pr-nav-dot.active {
    background: var(--pr-amber);
    border-color: var(--pr-amber);
    transform: scale(1.3);
}

.pr-nav-dot::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--pr-stone);
    color: var(--pr-bone);
    padding: 8px 16px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 0.8125rem;
    font-family: var(--pr-font-body);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--pr-transition-fast);
}

.pr-nav-dot:hover::after {
    opacity: 1;
}

/* ========================================
   Section Base Styles
   ======================================== */
.pr-section {
    padding: var(--pr-section-padding) 24px;
    position: relative;
}

.pr-section-content {
    max-width: var(--pr-content-width);
    margin: 0 auto;
}

.pr-section-wide {
    max-width: var(--pr-wide-width);
    margin: 0 auto;
}

.pr-section-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, var(--pr-amber), transparent);
    margin-bottom: 2.5rem;
}

.pr-section-alt {
    background-color: var(--pr-slate);
}

/* ========================================
   Hero Section
   ======================================== */
.pr-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.pr-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pr-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: grayscale(30%);
}

.pr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 15, 0.4) 0%,
        rgba(13, 13, 15, 0.7) 50%,
        rgba(13, 13, 15, 0.95) 100%
    );
}

.pr-hero-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.pr-hero-content {
    position: relative;
    z-index: 1;
    max-width: var(--pr-content-width);
    text-align: center;
}

.pr-hero-label {
    margin-bottom: 2rem;
    opacity: 0;
    animation: prFadeIn 1s ease forwards 0.3s;
}

.pr-hero-title {
    font-family: var(--pr-font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--pr-ivory);
    margin: 0 0 2rem 0;
    opacity: 0;
    animation: prFadeInUp 1s ease forwards 0.5s;
}

.pr-hero-title em {
    font-style: italic;
    color: var(--pr-amber);
}

.pr-hero-subtitle {
    font-family: var(--pr-font-display);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.8;
    color: var(--pr-bone);
    max-width: 600px;
    margin: 0 auto 3rem;
    opacity: 0;
    animation: prFadeInUp 1s ease forwards 0.7s;
}

.pr-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--pr-amber);
    color: var(--pr-amber);
    padding: 16px 32px;
    font-family: var(--pr-font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 2px;
    transition: all var(--pr-transition-fast);
    opacity: 0;
    animation: prFadeInUp 1s ease forwards 0.9s;
}

.pr-hero-cta:hover {
    background: var(--pr-amber);
    color: var(--pr-obsidian);
    text-decoration: none;
}

.pr-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1px solid var(--pr-amber);
    color: var(--pr-amber);
    padding: 16px 32px;
    font-family: var(--pr-font-body);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 2px;
    transition: all var(--pr-transition-fast);
    margin-left: 1rem;
}

.pr-btn-secondary:hover {
    background: rgba(196, 149, 106, 0.1);
    border-color: var(--pr-copper);
    color: var(--pr-copper);
    text-decoration: none;
}

@media (max-width: 576px) {
    .pr-btn-secondary {
        margin-left: 0;
        margin-top: 1rem;
    }
}

.pr-hero-cta i {
    font-size: 0.875rem;
    transition: transform var(--pr-transition-fast);
}

.pr-hero-cta:hover i {
    transform: translateY(3px);
}

.pr-hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--pr-sand);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: prFadeIn 1s ease forwards 1.2s;
}

.pr-hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--pr-sand), transparent);
    animation: prScrollPulse 2s ease-in-out infinite;
}

/* ========================================
   Prose Content
   ======================================== */
.pr-prose {
    color: var(--pr-bone);
}

.pr-prose p {
    margin: 0 0 1.5rem 0;
    color: var(--pr-bone);
    opacity: 1;
}

.pr-prose p:last-child {
    margin-bottom: 0;
}

.pr-prose em {
    font-style: italic;
    color: var(--pr-bone);
    opacity: 1;
}

.pr-prose strong {
    font-weight: 600;
    color: var(--pr-ivory);
    opacity: 1;
}

/* ========================================
   Quote Block
   ======================================== */
.pr-quote {
    position: relative;
    padding: 2rem 0;
    margin: 3rem 0;
}

.pr-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--pr-amber), var(--pr-copper));
}

.pr-quote-text {
    font-family: var(--pr-font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    line-height: 1.6;
    color: var(--pr-ivory);
    padding-left: 2rem;
    margin: 0;
}

/* ========================================
   Feature Grid
   ======================================== */
.pr-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .pr-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.pr-feature-item {
    padding: 2rem;
    background: var(--pr-stone);
    border-radius: 4px;
    border: 1px solid rgba(168, 159, 145, 0.1);
    transition: all var(--pr-transition-fast);
}

.pr-feature-item:hover {
    border-color: rgba(196, 149, 106, 0.3);
    transform: translateY(-2px);
}

.pr-feature-item h3 {
    font-family: var(--pr-font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--pr-ivory);
    margin: 0 0 1rem 0;
}

.pr-feature-item p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--pr-bone);
    margin: 0;
}

/* ========================================
   Report Features Section
   ======================================== */
.pr-report-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .pr-report-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pr-report-feature {
    text-align: center;
    padding: 2rem 1.5rem;
}

.pr-report-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pr-amber);
    border-radius: 50%;
    color: var(--pr-amber);
    font-size: 1.25rem;
}

.pr-report-feature h4 {
    font-family: var(--pr-font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--pr-bone);
    margin: 0 0 0.75rem 0;
}

.pr-report-feature p {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--pr-bone);
    margin: 0;
}

/* ========================================
   Science Pillars Section
   ======================================== */
.pr-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .pr-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pr-pillar {
    text-align: center;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(168, 159, 145, 0.2);
}

.pr-pillar h4 {
    font-family: var(--pr-font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--pr-ivory);
    margin: 0 0 1rem 0;
}

.pr-pillar p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--pr-bone);
    margin: 0;
}

/* ========================================
   FAQ Section
   ======================================== */
.pr-faq-container {
    margin-top: 2.5rem;
}

.pr-faq-item {
    border-bottom: 1px solid rgba(168, 159, 145, 0.15);
}

.pr-faq-item:last-child {
    border-bottom: none;
}

.pr-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.pr-faq-question h3 {
    font-family: var(--pr-font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--pr-ivory);
    margin: 0;
    transition: color var(--pr-transition-fast);
}

.pr-faq-question:hover h3 {
    color: var(--pr-amber);
}

.pr-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(168, 159, 145, 0.3);
    border-radius: 50%;
    color: var(--pr-sand);
    font-size: 0.75rem;
    transition: all var(--pr-transition-fast);
}

.pr-faq-question[aria-expanded="true"] .pr-faq-icon {
    background: var(--pr-amber);
    border-color: var(--pr-amber);
    color: var(--pr-obsidian);
    transform: rotate(45deg);
}

.pr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--pr-transition-medium);
}

.pr-faq-answer.show {
    max-height: 400px;
}

.pr-faq-answer-content {
    padding: 0 0 1.5rem 0;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--pr-bone);
}

/* ========================================
   Pricing Section
   ======================================== */
.pr-pricing {
    text-align: center;
    padding: var(--pr-section-padding) 24px;
    background: linear-gradient(180deg, var(--pr-obsidian) 0%, var(--pr-slate) 100%);
}

.pr-price-card {
    max-width: 500px;
    margin: 3rem auto 0;
    padding: 3rem;
    background: var(--pr-stone);
    border: 1px solid rgba(196, 149, 106, 0.2);
    border-radius: 4px;
}

.pr-price-amount {
    font-family: var(--pr-font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--pr-ivory);
    margin-bottom: 0.5rem;
}

.pr-price-note {
    font-size: 0.875rem;
    color: var(--pr-bone);
    margin-bottom: 2rem;
}

.pr-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pr-price-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(168, 159, 145, 0.1);
    font-size: 0.9375rem;
    color: var(--pr-bone);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pr-price-features li:last-child {
    border-bottom: none;
}

.pr-price-features li i {
    color: var(--pr-amber);
    font-size: 0.75rem;
}

/* ========================================
   PRICING SECTION - Cinematic Theme Variables
   Layout handled by shared report-pricing-cards.css
   ======================================== */
.pr-pricing-section {
    --rpc-bg: var(--pr-obsidian);
    --rpc-overlay: rgba(13, 13, 15, 0.75);
    --rpc-text-primary: var(--pr-ivory);
    --rpc-text-secondary: var(--pr-bone);
    --rpc-text-muted: var(--pr-sand);
    --rpc-accent: var(--pr-amber);
    --rpc-accent-dim: var(--pr-copper);
    --rpc-cta-bg: var(--pr-amber);
    --rpc-cta-text: var(--pr-obsidian);
    --rpc-cta-hover: var(--pr-copper);
    --rpc-border: rgba(168, 159, 145, 0.12);
    --rpc-font-display: var(--pr-font-display);
    --rpc-font-body: var(--pr-font-body);
}

.pr-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: var(--pr-amber);
    color: var(--pr-obsidian);
    font-family: var(--pr-font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--pr-transition-fast);
}

.pr-btn-primary:hover {
    background: var(--pr-copper);
    color: var(--pr-ivory);
    text-decoration: none;
    transform: translateY(-2px);
}

.pr-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pr-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--pr-bone);
}

.pr-trust-badge i {
    color: var(--pr-amber);
}

.pr-discount-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding: 12px 20px;
    background: rgba(196, 149, 106, 0.1);
    border: 1px solid rgba(196, 149, 106, 0.3);
    border-radius: 2px;
    font-size: 0.875rem;
    color: var(--pr-amber);
}

.pr-discount-notice strong {
    font-weight: 600;
}

/* ========================================
   Final CTA Section
   ======================================== */
.pr-finale {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--pr-section-padding) 24px;
    background: linear-gradient(180deg, var(--pr-slate) 0%, var(--pr-obsidian) 100%);
}

.pr-finale-content {
    max-width: 700px;
}

.pr-finale-title {
    font-family: var(--pr-font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--pr-bone);
    margin: 0 0 3rem 0;
}

.pr-finale-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--pr-amber);
    color: var(--pr-obsidian);
    font-family: var(--pr-font-body);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-radius: 2px;
    transition: all var(--pr-transition-fast);
}

.pr-finale-cta:hover {
    background: var(--pr-copper);
    color: var(--pr-ivory);
    text-decoration: none;
    transform: translateY(-2px);
}

/* ========================================
   Animations
   ======================================== */
@keyframes prFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes prFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes prScrollPulse {
    0%, 100% {
        opacity: 1;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.5;
        transform: scaleY(0.8);
    }
}

/* Scroll-triggered animations */
.pr-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--pr-transition-slow), transform var(--pr-transition-slow);
}

.pr-animate.pr-visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .pr-animate,
    .pr-hero-label,
    .pr-hero-title,
    .pr-hero-subtitle,
    .pr-hero-cta,
    .pr-hero-scroll {
        opacity: 1;
        transform: none;
        animation: none;
        transition: none;
    }
    
    .pr-hero-scroll-line {
        animation: none;
    }
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
    .pr-section {
        padding: clamp(60px, 10vh, 100px) 20px;
    }
    
    .pr-hero {
        padding: 100px 20px 60px;
        min-height: 90vh;
    }
    
    .pr-hero-scroll {
        display: none;
    }
    
    .pr-quote-text {
        padding-left: 1.5rem;
    }
    
    .pr-price-card {
        padding: 2rem 1.5rem;
    }
    
    .pr-trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pr-pillars {
        gap: 1.5rem;
    }
    
    .pr-pillar {
        padding: 1.5rem 0;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .pr-page-nav,
    .pr-scroll-progress,
    .pr-hero-scroll,
    .pr-hero-cta,
    .pr-btn-primary,
    .pr-finale-cta {
        display: none;
    }
    
    .pr-page {
        background: white;
        color: #333;
    }
    
    .pr-section {
        page-break-inside: avoid;
    }
}

/* ========================================
   RELATED PRODUCTS
   ======================================== */
.poor-related-products {
    padding: 60px 0;
    background: var(--pr-obsidian);
}

.poor-related-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--pr-bone);
    margin-bottom: 40px;
    font-family: var(--pr-font-display);
    font-weight: 700;
}

.poor-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .poor-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .poor-related-grid {
        grid-template-columns: 1fr;
    }
}

.poor-related-card {
    background: var(--pr-slate);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--pr-transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(196, 149, 106, 0.2);
}

.poor-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--pr-amber);
}

.poor-related-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid rgba(196, 149, 106, 0.2);
}

.poor-related-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.poor-related-content h4 {
    font-size: 1.2rem;
    color: var(--pr-bone);
    margin-bottom: 8px;
    font-family: var(--pr-font-body);
    font-weight: 600;
}

.poor-related-content p {
    font-size: 0.95rem;
    color: var(--pr-sand);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.poor-related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pr-amber);
    font-weight: 600;
    text-decoration: none;
    transition: var(--pr-transition-fast);
    margin-top: auto;
}

.poor-related-link:hover {
    color: var(--pr-copper);
    text-decoration: underline;
}

.poor-related-link i {
    transition: transform 0.2s ease;
}

.poor-related-link:hover i {
    transform: translateX(4px);
}