/* ========================================
   Section Title
   ======================================== */
.section--title {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

/* ========================================
   Category Grid
   ======================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

/* ========================================
   Utilities
   ======================================== */
.mb-16 {
    margin-bottom: 16px;
}

.mb-32 {
    margin-bottom: 32px;
}

/* ========================================
   Archive Header
   ======================================== */
.archive-header--title {
    font-size: 32px;
    font-weight: bold;
    color: #316EA9;
    line-height: 1.5;
    letter-spacing: 0.1em;
}

.archive-header--description {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1023px) {
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .archive-header--title {
        font-size: 20px;
    }
}
