.full-article {
    max-width: 800px;
    margin-right: 40px;
}

.full-article h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: #666;
}

.category {
    background-color: #0066cc;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9em;
}

.hero-image {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.article-content {
    font-size: 1.1em;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    font-size: 1.8em;
    margin: 40px 0 20px;
}

.related-articles {
    margin-top: 40px;
    padding: 20px;
    background-color: white;
    border: 1px solid #ddd;
}

.related-articles h3 {
    margin-bottom: 15px;
}

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

.related-articles li {
    margin-bottom: 10px;
}

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

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

@media (max-width: 768px) {
    .full-article {
        margin-right: 0;
    }
} 
