/* Article Styles */

/* Article Page */
.article {
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.article-header {
    margin-bottom: 2rem;
}

.article-back {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text);
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.article-back:hover {
    opacity: 1;
}

.article-date {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    margin-bottom: 0.75rem;
}

.article-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.15;
}

.article-hero {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: rgba(0, 0, 0, 0.8);
}

.article-lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.9) !important;
}

.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    color: rgba(0, 0, 0, 0.8);
}

.article-cta {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(145deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: var(--radius-md);
    border: 1px solid #BFDBFE;
    text-align: center;
}

.article-cta p {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.article-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.related h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

/* News Page */
.news-page {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.news-page .section-header {
    margin-bottom: 3rem;
}

.news-page .section-header p {
    margin-top: 1rem;
    font-size: 1.125rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.news-item img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.news-item-content {
    display: flex;
    flex-direction: column;
}

.news-item-content .news-date {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
    margin-bottom: 0.5rem;
}

.news-item-content h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.news-item-content p {
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.news-read-more {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    transition: transform 0.2s ease;
    display: inline-block;
}

.news-item:hover .news-read-more {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .article {
        padding-top: 6rem;
    }
    
    .news-page {
        padding-top: 6rem;
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-item img {
        width: 100%;
        height: 200px;
    }
    
    .article-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .article-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}
