* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Container and layout */
.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

/* Breadcrumb navigation */
.breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #d61c1c;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Article header */
.article-header {
    margin-bottom: 30px;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    font-weight: 600;
}

.category {
    background-color: #d61c1c;
    color: white;
    padding: 4px 8px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.location {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-headline {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.article-subheading {
    font-size: 1.3rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.article-byline {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #666;
    align-items: center;
}

.author {
    font-weight: 600;
    color: #333;
}

/* Article image */
.article-image {
    margin-bottom: 30px;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

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

.article-content p {
    margin-bottom: 18px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-content p:first-child {
    font-weight: 500;
    font-size: 1.15rem;
}

/* Article tags */
.article-tags {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.tags-label {
    font-weight: 600;
    margin-right: 10px;
    color: #333;
}

.tag {
    display: inline-block;
    background-color: #f5f5f5;
    color: #666;
    padding: 6px 12px;
    margin: 2px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.tag:hover {
    background-color: #e0e0e0;
    color: #333;
}

/* Social sharing */
.article-share {
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.share-label {
    font-weight: 600;
    margin-right: 15px;
    color: #333;
}

.share-link {
    display: inline-block;
    padding: 8px 16px;
    margin-right: 10px;
    background-color: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-radius: 3px;
    transition: background-color 0.2s;
}

.share-link:hover {
    background-color: #d61c1c;
    color: white;
}

/* Related articles sidebar */
.related-articles {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 5px;
    height: fit-content;
}

.related-articles h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 2px solid #d61c1c;
    padding-bottom: 10px;
}

.related-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.related-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.related-item h4 {
    margin-bottom: 8px;
}

.related-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.4;
}

.related-item a:hover {
    color: #d61c1c;
}

.related-item time {
    font-size: 13px;
    color: #666;
}

/* Responsive design */
@media (max-width: 768px) {
    .article-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    .article-headline {
        font-size: 2rem;
    }
    
    .article-subheading {
        font-size: 1.1rem;
    }
    
    .article-byline {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }
    
    .related-articles {
        padding: 20px;
    }
}

/* Header and footer styles */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 20px;
}

.site-header .header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d61c1c;
    text-decoration: none;
}

.site-nav {
    display: flex;
    gap: 30px;
}

.site-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: #d61c1c;
}

.site-footer {
    background-color: #f8f8f8;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #eee;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #666;
}