/* Blog Page Specific Styles */

/* Blog Index */
.articles {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.article-card {
    background: rgba(37, 80, 94, 0.1);
    border: 1px solid rgba(82, 183, 185, 0.2);
    padding: 2.5rem;
    transition: all 0.3s;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.article-card:hover {
    border-color: var(--support-teal-bright);
    transform: translateY(-5px);
}

.article-card h2 {
    color: var(--brand-sand);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.article-meta {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.article-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-card a {
    color: var(--support-teal-bright);
    text-decoration: none;
    font-weight: 600;
}

/* Blog Post */
.breadcrumb {
    padding: 8rem 3rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--support-teal-bright);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--support-orange);
}

.breadcrumb span {
    color: rgba(232, 240, 255, 0.5);
    margin: 0 0.5rem;
}

.article-header {
    max-width: 900px;
    margin: 3rem auto 4rem;
    padding: 0 3rem;
}

.article-category {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 183, 0, 0.2), rgba(255, 215, 0, 0.2));
    border: 1px solid var(--support-gold);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.article-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.article-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 240, 255, 0.1);
    font-size: 0.95rem;
    color: rgba(232, 240, 255, 0.6);
}

.article-hero {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 3rem;
    text-align: center;
}

.hero-image {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 12px 48px rgba(243, 143, 30, 0.4);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.05);
}

.image-caption {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-style: italic;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem 6rem;
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
}

.article-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
    letter-spacing: -0.02em;
}

.article-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1.25rem;
    color: var(--support-orange);
}

.article-content blockquote {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(221, 123, 62, 0.05), rgba(243, 143, 30, 0.05));
    border-left: 4px solid var(--support-orange);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.7;
}

.pullout-box {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(26, 31, 46, 0.8);
    border: 2px solid var(--support-teal-bright);
    border-left: 6px solid var(--support-teal-bright);
}

.pullout-box h4 {
    font-size: 1.35rem;
    color: var(--support-teal-bright);
    margin-bottom: 1rem;
    font-weight: 700;
}

.timeline {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(221, 123, 62, 0.2);
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(232, 240, 255, 0.1);
}

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

.timeline-date {
    font-size: 1.1rem;
    color: var(--support-gold);
    font-weight: 700;
}

.modern-parallel {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(82, 183, 185, 0.1), rgba(164, 207, 205, 0.1));
    border: 2px solid var(--support-teal-bright);
}

.modern-parallel h3 {
    font-size: 2rem;
    color: var(--support-teal-bright);
    margin-bottom: 1.5rem;
}

.parallel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.parallel-item {
    padding: 1.5rem;
    background: rgba(10, 14, 26, 0.6);
    border-left: 3px solid var(--support-teal-bright);
}

.parallel-label {
    font-size: 0.75rem;
    color: var(--support-teal-bright);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .parallel-grid {
        grid-template-columns: 1fr;
    }
}

/* Related Articles */
.related-articles {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 3rem;
}

.related-articles h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #091f27;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.related-card {
    padding: 2.5rem;
    background: rgba(37, 80, 94, 0.1);
    border: 1px solid rgba(82, 183, 185, 0.2);
    transition: all 0.3s;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.related-card:hover {
    border-color: var(--support-teal-bright);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(82, 183, 185, 0.2);
}

.related-category {
    font-size: 0.75rem;
    color: var(--support-orange);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

.related-card h3 {
    font-size: 1.5rem;
    color: var(--brand-sand);
    margin-bottom: 1rem;
    font-weight: 700;
}

.related-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.related-card a {
    color: var(--support-teal-bright);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.related-card a:hover {
    color: var(--support-orange);
}

@media (max-width: 768px) {
    .related-articles {
        padding: 0 2rem;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}
