/* CATEGORIES */
.categories {
    width: 100% !important;
    max-width: 100% !important;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.cat-card {
    background: var(--black);
    /*
	padding: 36px 32px;
    transition: background 0.2s;
    cursor: default;
    position: relative;
    overflow: hidden;
	*/

	padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: background .2s;
}

.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}

.cat-card:hover {
    background: var(--steel);
}

.cat-card:hover::after {
    width: 100%;
}

.cat-icon {
    /*
	font-size: 28px;
    margin-bottom: 16px;
	*/

	width: 36px;
    height: 36px;
    background: var(--accent-dim);
    border: 1px solid var(--accent-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.cat-icon svg {
    stroke: var(--accent);
    stroke-width: 1.5;
}

.cat-name {
    font-size: 15px;
    font-weight: 600;
   	color: #f1f5f9;
    margin-bottom: 8px;
}

.cat-desc {
    font-size: 13px;
    font-weight: 400;
    color: #94a3b8;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}