/* ============================================ */
/* PAGE BACKGROUND - SAGE GREEN                */
/* ============================================ */

html, body {
    background: #648eac;
    background-color: #648eac;
}

header, footer, nav, .admin-menu, .top-menu, .col1-menu {
    background: #648eac;
}

header a, footer a, nav a {
    color: #fff;
}

/* ============================================ */
/* MAIN CONTAINER                               */
/* ============================================ */

.articles-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    background: transparent;
}

/* ============================================ */
/* PAGE HEADER                                  */
/* ============================================ */

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-family: 'Abril Fatface', serif;
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.page-header .subtitle {
    color: rgba(255,255,255,0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

/* ============================================ */
/* SEARCH BOX                                   */
/* ============================================ */

.search-box {
    max-width: 500px;
    min-width: 300px;
    width: 100%;
    margin: 0 auto 2rem auto;
}

.search-box form {
    display: flex;
    gap: 0.5rem;
}

.search-box input[type="text"] {
    flex: 1;
    padding: 0.7rem 1rem;
    border: 1px solid #ddd8cd;
    border-radius: 8px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    background: #ffffff;
}

.search-box button {
    background: #787c60;
    color: #ffffff;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-family: 'Abril Fatface', serif;
    font-size: 1rem;
    cursor: pointer;
}

.search-box button:hover {
    background: #5e6248;
}

/* ============================================ */
/* TWO COLUMN LAYOUT                            */
/* ============================================ */

.two-columns {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

/* ============================================ */
/* ARTICLE CARDS                                */
/* ============================================ */

.articles-list {
    background: transparent;
}

.article-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
}

.article-title {
    font-family: 'Abril Fatface', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.article-title a {
    color: #787c60;
    text-decoration: none;
}

.article-title a:hover {
    color: #ff9900;
}

.article-meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #888888;
    margin-bottom: 1rem;
}

.article-image img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.article-intro {
    color: #555555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: #787c60;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
}

.read-more:hover {
    text-decoration: underline;
}

/* ============================================ */
/* SIDEBAR                                      */
/* ============================================ */

.sidebar {
    align-self: start;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e0e0e0;
}

.sidebar-widget h3 {
    font-family: 'Abril Fatface', serif;
    font-size: 1.3rem;
    color: #787c60;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #787c60;
}

.archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.archive-list li {
    margin-bottom: 0.5rem;
}

.archive-list li a {
    display: block;
    padding: 0.4rem 0;
    color: #555555;
    text-decoration: none;
    font-size: 0.9rem;
}

.archive-list li a:hover {
    color: #ff9900;
    padding-left: 0.5rem;
}

.archive-count {
    color: #888888;
    font-size: 0.7rem;
}

/* ============================================ */
/* NO RESULTS                                   */
/* ============================================ */

.no-results {
    text-align: center;
    padding: 3rem;
    background: #ffffff;
    border-radius: 12px;
    color: #666666;
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */

@media (max-width: 768px) {
    .two-columns {
        grid-template-columns: 1fr;
    }
    .articles-container {
        padding: 1rem;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .search-box {
        min-width: 250px;
    }
}