/* ============================================
   HUB PAGE STYLES (Skam & skuld, Ångest & oro, etc.)
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px 0;
    font-size: 14px;
    color: #999999;
}

.breadcrumb a {
    color: #7A8C6F;
    text-decoration: none;
    transition: color 240ms ease;
}

.breadcrumb a:hover {
    color: #333333;
}

/* Hero section */
.hub-hero {
    background: linear-gradient(180deg, #E5DFE8 0%, #FAF7F2 100%);
    padding: 80px 40px 60px;
    text-align: center;
}

.hub-hero-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.hub-hero h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.hub-hero p {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Introduction section */
.hub-introduction {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.hub-introduction h2 {
    font-size: 28px;
    color: #333333;
    margin-bottom: 20px;
}

.hub-introduction p {
    font-size: 17px;
    color: #555555;
    line-height: 1.8;
}

/* Theme cards section */
.themes-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 100px;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.theme-card {
    background: white;
    border-radius: 12px;
    padding: 32px 28px;
    border-left: 4px solid #D4CBDB;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: all 240ms cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
}

.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-left-color: #C9BFD0;
}

.theme-card-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
}

.theme-card h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 12px;
    font-weight: 600;
}

.theme-card-description {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.theme-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #F0F0F0;
}

.article-count {
    font-size: 13px;
    color: #999999;
}

.theme-card-link {
    color: #7A8C6F;
    font-weight: 600;
    font-size: 15px;
}

.theme-card:hover .theme-card-link {
    color: #333333;
}

/* CTA section */
.cta-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 26px;
    color: #333333;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    color: #666666;
    margin-bottom: 28px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 240ms ease;
}

.cta-button-primary {
    background: #D4CBDB;
    color: #333333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cta-button-primary:hover {
    background: #C9BFD0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.cta-button-secondary {
    background: transparent;
    color: #7A8C6F;
    border: 2px solid #D4CBDB;
}

.cta-button-secondary:hover {
    border-color: #C9BFD0;
    color: #333333;
}

.cta-meta {
    font-size: 13px;
    color: #999999;
    margin-top: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hub-hero h1 {
        font-size: 28px;
    }
    
    .hub-hero p {
        font-size: 16px;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .breadcrumb,
    .hub-hero,
    .hub-introduction,
    .themes-section,
    .cta-section {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-button {
        width: 100%;
    }
}
