/* Article Page Styles */

.news-article {
    max-width: 850px;
    margin: 0 auto;
}

.article-header {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.article-date {
    display: block;
    color: #999;
    font-size: 0.95em;
    margin-bottom: 10px;
}

.article-header h1 {
    font-size: 2.2em;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.article-excerpt {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.article-author {
    color: #999;
    font-size: 0.95em;
    font-style: italic;
}

/* Article Content */
.article-content {
    margin-bottom: 50px;
}

.article-content h2 {
    font-size: 1.6em;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.article-content h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2a2a2a;
}

.article-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: #444;
}

.article-content ul {
    margin-left: 25px;
    margin-bottom: 16px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #444;
}

/* Research Tracks */
.research-tracks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 30px 0;
}

.track {
    padding: 25px;
    background-color: #f9f9f9;
    border-left: 5px solid #0066cc;
    border-radius: 2px;
}

.track h3 {
    margin-top: 0;
    color: #0066cc;
}

.track p {
    margin-bottom: 15px;
}

.track ul {
    margin-left: 20px;
    margin-bottom: 0;
}

.track li {
    margin-bottom: 8px;
    font-size: 0.95em;
}

/* Outcomes List */
.outcomes-list {
    list-style-position: inside;
    margin-left: 0;
}

.outcomes-list li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.facility {
    padding: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 2px;
}

.facility h4 {
    font-size: 1em;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.facility p {
    font-size: 0.9em;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Article Footer */
.article-footer {
    background-color: #f9f9f9;
    padding: 25px;
    border-left: 5px solid #0066cc;
    border-radius: 2px;
    margin-top: 40px;
}

.article-footer p {
    margin: 0;
    line-height: 1.7;
}

.article-footer a {
    color: #0066cc;
    text-decoration: none;
}

.article-footer a:hover {
    text-decoration: underline;
}

/* Related Articles */
.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e0e0e0;
}

.related-articles h3 {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 20px;
}

.related-articles ul {
    list-style: none;
    margin: 0;
}

.related-articles li {
    margin-bottom: 15px;
    padding-left: 0;
}

.related-articles a {
    color: #0066cc;
    text-decoration: none;
    font-size: 0.95em;
}

.related-articles a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 1.6em;
    }

    .article-excerpt {
        font-size: 1em;
    }

    .article-content h2 {
        font-size: 1.3em;
    }

    .research-tracks {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .article-content ul {
        margin-left: 20px;
    }
}
