@charset "UTF-8";/* Category-View category-item border */
.category-item .category-item-inner {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    padding: 10px;
}

.category-item .category-item-inner:hover {
    border-color: #ccc;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.category-list .category-name {
    background-color: unset;
}

/* Category-view category-item max-height */
.category-list .category-name {
    overflow: hidden;
    text-overflow: ellipsis;
    hyphens: auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 3.75em;
    line-height: 1.25em;
    white-space: unset !important;
}

.read-more-btn {
    color: #AC333E;
    font-weight: bold;
}
