/* Container principal pentru pagina de categorii */
.category-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 5%;
}

/* Antetul paginii de categorie */
.category-header {
    text-align: center;
    margin-bottom: 40px;
}
.category-title {
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    color: #0a2a1f;
    margin-bottom: 15px;
}
.category-description {
    color: #4a5c72;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Grid pentru articole */
.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.category-post-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0,0,0,0.03);
    border: 1px solid #eef2f6;
    transition: transform 0.2s, box-shadow 0.2s;
}
.category-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}
.category-post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.category-post-content {
    padding: 24px;
}
.category-post-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.category-post-title a {
    text-decoration: none;
    color: #0f3b2c;
}
.category-post-excerpt {
    color: #3a4a63;
    margin-bottom: 20px;
    line-height: 1.5;
}
.category-post-meta {
    font-size: 0.8rem;
    color: #7b8ba3;
    margin-bottom: 15px;
}
.read-more-btn {
    background: #1e5a44;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}
.read-more-btn:hover {
    background: #0f3b2c;
}