/* education/articles/articles.css */

.page-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.page-header h1 {
    font-weight: 300;
    font-size: 3rem;
    color: var(--accent-color-darker, #4a7c4a);
}

.category-row {
    margin-bottom: 3rem;
}

.category-title {
    font-weight: 400;
    color: var(--accent-color, #609966);
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 1.5rem;
}

.article-card {
    border: 1px solid #e0e0e0;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    display: flex; /* Makes card a flex container */
    flex-direction: column; /* Stacks items vertically */
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.article-card-img {
    height: 180px;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.article-card .card-body {
    flex-grow: 1; /* Allows body to grow and push footer down */
}

.article-card .card-footer {
    background-color: #f8f9fa;
}

/* This class will be toggled by JavaScript */
.hidden-card {
    display: none !important; /* <-- THIS IS THE FIX! */
}

.show-more-btn-container {
    text-align: center;
    margin-top: 1.5rem;
}