.articles-header {
    text-transform: uppercase;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
    font-family: 'Yeseva One', serif;
    font-size: 36px;
}

.articles-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.article-card {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.article-card:last-child {
    border-bottom: none;
}

.article-card-image {
    flex: 0 0 300px;
}

.article-card-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.article-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-card-content h2 {
    font-family: 'Yeseva One', serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.article-card-content p {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    font-family: 'Roboto Slab', serif;
    font-weight: bold;
    color: #4CAF50;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Article Page Styles */
.article-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-title {
    font-family: 'Yeseva One', serif;
    font-size: 42px;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.article-image {
    margin-bottom: 40px;
    text-align: center;
}

.article-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-content {
    font-family: 'Roboto Slab', serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.article-content h2 {
    font-family: 'Yeseva One', serif;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 40px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .article-card {
        flex-direction: column;
    }
    
    .article-card-image {
        flex: 0 0 auto;
    }
    
    .article-title {
        font-size: 32px;
    }
}
