/* Tarjeta: una sola categoría, imagen + título. flex-direction y
   align-items por defecto abajo; el widget los sobreescribe en línea
   según los controles "Disposición" y "Alineación". */
.catw-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	width: 100%;
	text-decoration: none;
	color: inherit;
	box-sizing: border-box;
}

.catw-card:hover {
	text-decoration: none;
	color: inherit;
}

/* Imagen */
.catw-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	overflow: hidden;
	background-color: #E4E4E7;
	box-sizing: border-box;
	flex-shrink: 0;
}

.catw-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Placeholder (sin imagen cargada) */
.catw-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #B0B0B0;
}

/* Título */
.catw-title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	color: #1A1A1A;
}
