/* =====================================
   YOU MMO — CATEGORY PAGE STYLE
   ===================================== */

.category-wrapper {
    padding: 32px 0;
}

/* CATEGORY TITLE */
.category-title {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}

/* CATEGORY DESCRIPTION */
.category-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 26px;
    background: #fafafa;
    padding: 14px 18px;
    border-left: 4px solid #000;
    border-radius: 6px;
}

/* GRID LIST */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.category-grid .video-item .video-thumb img {
    border-radius: 10px;
}

.category-grid .video-title a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: #111;
}

.category-grid .video-title a:hover {
    opacity: .7;
}

/* PAGINATION */
.pagination-wrap {
    margin-top: 32px;
    text-align: center;
}

.pagination-wrap a,
.pagination-wrap span {
    border: 1px solid #ddd;
    padding: 8px 14px;
    border-radius: 6px;
    display: inline-block;
    margin: 0 4px;
    font-size: 15px;
    color: #111;
}

.pagination-wrap a:hover {
    border-color: #000;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-title {
        font-size: 26px;
    }
}

@media (max-width: 650px) {
    .category-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .category-title {
        font-size: 24px;
    }

    .category-desc {
        font-size: 15px;
        padding: 12px 14px;
    }
}
