/* =========================
   CATEGORY PAGE
========================= */

.category-description {
    max-width: 720px;
    margin: 20px 0 50px;
    font-size: 18px;
    color: #666;
}

.category-page-header {
    max-width: 800px;
    margin-bottom: 50px;
}

.category-page-header h1 {
    margin-top: 10px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.05;
}

.category-page-header p {
    margin-top: 20px;
    color: #666;
    font-size: 18px;
}

.category-card {
    overflow: hidden;
}

.category-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.category-card .article-content {
    padding: 25px;
}

.category-card h2 {
    margin: 10px 0;
    font-size: 22px;
    line-height: 1.2;
}

.category-card p {
    color: #666;
    margin-bottom: 18px;
}

@media (max-width: 600px) {

    .category-description {
        font-size: 16px;
    }

    .category-card img {
        height: 220px;
    }

}