
.cmmg-category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    background: #0A7D7D;
    color: white;
    padding: 20px;
}
@media (max-width: 1024px) {
    .cmmg-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .cmmg-category-grid {
        grid-template-columns: 1fr;
    }
}
.cmmg-main-category {
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.cmmg-main-category .arrow,
.sub-link .sub-arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: 8px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid white;
}
.main-title {
    color: white;
}
.subcategory-list {
    display: none;
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}
.sub-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    margin-bottom: 5px;
}
.sub-link:hover {
    font-weight: bold;
    color: white;
}
.show .subcategory-list {
    display: block;
}
