/* ANALYSES HUB PAGE STYLES */
.analyses-hub-page {
    font-family: 'Helvetica', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

/* HERO SECTION */
.hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* CONTENT BLOCKS */
.content-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
}

.content-block p {
    margin-bottom: 20px;
}

/* CATEGORY SECTION */
.category-section {
    margin-bottom: 60px;
}

.category-title {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #db4a2b;
}

/* ANALYSES GRID */
.analyses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.analysis-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.analysis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.analysis-card.featured {
    border-left: 5px solid #db4a2b;
}

.analysis-badge {
    display: inline-block;
    background: #db4a2b;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.analysis-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 12px;
}

.analysis-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.analysis-card h3 a:hover {
    color: #db4a2b;
}

.analysis-summary {
    color: #555;
    line-height: 1.7;
    margin: 15px 0;
}

.analysis-location {
    color: #666;
    font-size: 0.95rem;
    margin: 10px 0;
}

.analysis-location a {
    color: #db4a2b;
    text-decoration: none;
}

.analysis-link {
    display: inline-block;
    color: #db4a2b;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.2s;
}

.analysis-link:hover {
    color: #c0392b;
}

.no-analyses {
    text-align: center;
    padding: 40px;
    font-size: 1.2rem;
    color: #999;
    grid-column: 1 / -1;
}

/* IMOCONCEPT PERSPECTIVE */
.perspective-block {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    max-width: 800px;
    margin: 0 auto;
}

.perspective-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.perspective-attribution {
    font-weight: 600;
    color: #db4a2b;
    text-align: right;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* INTERNAL LINKS */
.internal-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.link-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.link-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c3e50;
}

.link-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.link-card h3 a:hover {
    color: #db4a2b;
}

.link-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, #db4a2b 0%, #c0392b 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

.btn-primary {
    display: inline-block;
    background: white;
    color: #db4a2b;
    font-weight: 700;
    padding: 15px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .category-title {
        font-size: 1.8rem;
    }
    
    .analyses-grid,
    .internal-links {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 40px 0;
    }
}