/* assets/css/page.css */
.page-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-header {
    margin-bottom: 20px;
}

.page-title {
    color: var(--ghana-red);
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center; /* Center the heading */
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--ghana-yellow); /* Yellow line below heading */
    display: block;
}


.entry-content {
    color: #333;
    line-height: 1.8;
    font-size: 1.1em;
}

.entry-content p {
    margin: 0 0 1.5em;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #009739;
    margin: 1.5em 0 0.75em;
    line-height: 1.3;
}

.entry-content h1 { font-size: 2em; }
.entry-content h2 { font-size: 1.75em; }
.entry-content h3 { font-size: 1.5em; }
.entry-content h4 { font-size: 1.25em; }
.entry-content h5 { font-size: 1.1em; }
.entry-content h6 { font-size: 1em; }

.entry-content ul,
.entry-content ol {
    margin: 1em 0;
    padding-left: 2em;
}

.entry-content ul li,
.entry-content ol li {
    margin-bottom: 0.5em;
}

.entry-content blockquote {
    border-left: 4px solid #FFD100;
    padding: 1em 1.5em;
    background: #f5f5f5;
    margin: 1.5em 0;
    font-style: italic;
    color: #666;
}

.entry-content a {
    color: #009739;
    text-decoration: none;
}

.entry-content a:hover {
    color: #EF3340;
    text-decoration: underline;
}

.entry-content img {
    max-width: 100%;
    height: auto;
/*    border-radius: 5px; */
    margin: 1em 0;
}

.page-links {
    margin: 1.5em 0;
    font-size: 0.9em;
}

.page-links a {
    color: #009739;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 0 5px;
    text-decoration: none;
}

.page-links a:hover {
    background: #FFD100;
    color: #000;
}

@media (max-width: 768px) {
    .page-container {
        padding: 10px;
        margin: 10px;
    }
    .page-title {
        font-size: 1.8em;
    }
    .entry-content {
        font-size: 1em;
    }
    .entry-content h1 { font-size: 1.8em; }
    .entry-content h2 { font-size: 1.6em; }
    .entry-content h3 { font-size: 1.4em; }
    .entry-content h4 { font-size: 1.2em; }
    .entry-content h5 { font-size: 1em; }
    .entry-content h6 { font-size: 0.9em; }
}