/* ===================================================================
   CATEGORY SECTION - VERSION 1.0
=================================================================== */
.category-section {
    position: relative;
    padding: 50px 0;
    background: var(--white);
}

.category-section:nth-child(even) {
    background: var(--gray-100);
}

/* SECTION HEADER */
.category-section .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.category-section .section-title { flex: 1; }

.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    margin-bottom: 12px;
    border-radius: 30px;
    background: rgba(214, 0, 0, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-section .section-title h2 {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text);
}

.category-section .section-title p {
    max-width: 700px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

/* MORE BUTTON */
.category-section .section-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-section .section-more i { transition: transform 0.3s ease; }

.category-section .section-more:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.category-section .section-more:hover i { transform: translateX(4px); }

/* NEWS GRID */
.category-section .news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-section .news-card { height: 100%; }
.category-section .news-card:hover { transform: translateY(-5px); }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .category-section .news-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .category-section { padding: 40px 0; }
    .category-section .section-header { flex-direction: column; align-items: flex-start; }
    .category-section .section-title h2 { font-size: 28px; }
    .category-section .news-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .category-section { padding: 30px 0; }
    .category-section .section-header { margin-bottom: 24px; }
    .category-section .section-title h2 { font-size: 24px; }
    .category-section .section-title p { font-size: 14px; }
    .category-section .section-more { width: 100%; justify-content: center; }
}

@media (max-width: 576px) {
    .category-section .news-grid { grid-template-columns: 1fr; gap: 18px; }
    .category-section .section-title h2 { font-size: 22px; }
    .category-section .section-title p { display: none; }
    .section-label { font-size: 11px; padding: 5px 12px; }
}

@media (max-width: 420px) {
    .category-section { padding: 24px 0; }
    .category-section .section-title h2 { font-size: 20px; }
}