/* Global Styles */
body {
    background-color: #ffffff;
    color: #000;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Language Switch */
#language-switch {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: Arial, sans-serif;
}

#language-switch a {
    color: #000;
    text-decoration: none;
    margin: 0 10px;
    padding-bottom: 4px;
    font-size: 1rem;
    font-weight: bold;
}

#language-switch a.active {
    border-bottom: 2px solid #000;
}

/* Timer Styling */
#timer {
    font-family: 'Boycott', sans-serif;
    font-size: 4rem;
    font-weight: normal;
    color: #000;
    text-align: center;
    margin-top: 50px;
}

/* Articles Container */
#articles {
    width: 90%;
    margin: 20px auto;
}

/* General Article Styling */
.article {
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
}

/* Letter Style */
.article.letter {
    font-family: 'Cormorant', serif;
    font-style: italic;
    background-color: #f9f4ef;
    color: #4a3c2f;
    padding: 20px;
    line-height: 1.8;
    border: 1px solid #e0d9d3;
    border-radius: 8px;
}

/* Report Style */
.article.report {
    font-family: 'Courier New', monospace;
    background-color: #f5f5f5;
    color: #333;
}

/* Regular Style */
.article.regular {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #000;
}

/* Article Content */
.article-content {
    flex: 1;
    padding: 10px;
    font-size: 1.2rem;
    line-height: 1.6;
    word-wrap: break-word;
}

/* Images */
.article img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Left Image */
.article img.left {
    order: -1;
    max-width: 50%;
    margin-right: 20px;
}

/* Right Image */
.article img.right {
    order: 1;
    max-width: 50%;
    margin-left: 20px;
}

/* Top Image */
.article img.top {
    width: 100%;
    max-width: none;
    order: -2;
    margin: 0 0 10px 0;
}

/* Bottom Image */
.article img.bottom {
    width: 100%;
    max-width: none;
    order: 2;
    margin: 10px 0 0 0;
}

/* Responsive Styling */
@media (max-width: 768px) {


    #articles {
    width: 95%;
}

    .article {
        flex-direction: column;
    }

    .article img {
        max-width: 100%;
        width: 100%;
        margin: 10px 0 0 0;
        order: 2;
    }

    .article-content {
        font-size: 1rem;
    }
}
