#cat-navigator {
    margin-top: 2px;
    padding: 2px;
    border-radius: 2px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
}

.cn-title-section {
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 10px;
}

.cn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.cn-card {
    background: #fff;
    border-radius: 2px;
    padding: 2px;
    border: 1px solid #eee;
    transition: 0s;
}

.cn-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

.cn-thumb img {
    width: 100%;
    border-radius: 8px;
    height: 100px;
    object-fit: cover;
}

.cn-title {
    font-size:  13px;
    font-weight: 600;
    display: block;
    margin-top: 10px;
    color: #333;
}

.cn-date {
    font-size: 10px;
    color: #888;
    margin-top: 4px;
    display: block;
}

.cat-switch-box {
    margin-top: 30px;
}

#cat-switch {
    padding: 5px 10px;
    border-radius: 5px;
    border: 1px solid #aaa;
}

@media (max-width: 800px) {
    .cn-grid {
        grid-template-columns: 1fr;
    }

    .cn-thumb img {
        height: 100px;
    }
}