.hp-cats-wrap {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
}
.hp-cats-wrap * {
    box-sizing: border-box;
}
.hp-cats-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}
@media(min-width: 640px) { .hp-cats-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width: 900px) { .hp-cats-grid { grid-template-columns: repeat(3, 1fr); } }
@media(min-width: 1180px) { .hp-cats-grid { grid-template-columns: repeat(var(--columns, 4), 1fr); } }

.hp-cat-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    min-height: 200px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}
.hp-cat-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: #F5C400;
    transform: translateY(-3px);
    color: inherit;
}
.hp-cat-ico {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}
.hp-cat-svg-icon {
    width: 22px;
    height: 22px;
    background-color: currentColor;
    display: inline-block;
    -webkit-mask-image: var(--svg-url);
    mask-image: var(--svg-url);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.hp-cat-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}
.hp-cat-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-cat-count {
    display: inline-block;
    background: #fef9c3;
    color: #854d0e;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
    align-self: flex-start;
    text-transform: uppercase;
}
.hp-cats-empty {
    padding: 32px;
    text-align: center;
    color: #64748b;
    border: 2px dashed #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
    font-size: 14px;
}
