body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.content-container {
    display: flex;
    justify-content: space-between; /* This will place space between the two sections */
    align-items: flex-start; /* Aligns items at the start of the flex container */
    padding: 20px; /* Optional: Adds padding around the content */
}

.section-container {
    width: 70%; /* Takes up 70% of the container */
    margin-right: 20px; /* Adds some spacing between the columns */
}

.related-articles {
    width: 30%; /* Takes up 30% of the container */
}
.related-articles h2 {
    margin-top: 0;
}

.related-articles ul {
    list-style: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 10px;
}

.related-articles a {
    text-decoration: none;
    color: #0077cc;
}

.related-articles a:hover {
    text-decoration: underline;
}
.section-container {
    max-width: 1000px; /* Adjust this value based on your design needs */
    margin: 20px auto;
    padding: 20px;
    background-color: #fff; /* Sets a white background for contrast */
}

.articles {
    display: grid;
    grid-template-columns: 1fr; /* Ensures a single column layout */
    gap: 20px;
}
.article {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    box-shadow: inset 0 0 0 2px #fff;
    background-color: #fff;
    text-decoration: none;
    color: #333;
}

.fa-newspaper {
    padding-right: 20px; /* Ensures there's space between the icon and the text */
}

.article-content {
    display: flex;
    flex-direction: column;
}

.article h3 {
    font-size: 1.2em;
    margin: 0 0 5px 0;
}

.article p {
    font-size: 0.9em;
    color: #888;
    margin: 0;
}


.article:hover {
    background-color: #f9f9f9; /* Light grey background on hover */
}
.top-bar {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f4f4f4;
}

.back-button {
    font-size: 16px;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-right: 20px;
}

.page-title {
    flex-grow: 1;
    display: flex;  /* Ensures inline arrangement */
    align-items: center; /* Vertical alignment */
    color: black;
    padding: 10px 20px;
    font-size: 20px;

}

.highlight {
    color: white; /* Highlight color for 'The Game' */
    background-color: #007BFF;
    border-radius: 2px;
    padding: 5px;
    margin-left: 10px;
}

.page-description {
    font-size: 16px;
    margin-left: 10px; /* Adds a little space between the title and description */
    color: black; /* Light color for contrast but less prominent than the title */
}

.back-button:hover {
    background-color: #c0c0c0;
}

@media (max-width: 800px) {
    .article img {
        margin: 0 auto 20px;
        display: block;
    }
    .article-content {
        align-items: center;
        text-align: center;
    }
    .content-container {
        flex-direction: column;
    }
    .article {
        margin-right: 10px; /* Adjusted for smaller screens */
    }
    .section-container,
    .related-articles {
        width: 100%; /* Makes each section full width on small screens */
        padding: 5px;
    }
}
