.ocp-category-grid {
	display: grid;
	grid-template-columns: repeat(var(--ocp-category-columns, 4), minmax(0, 1fr));
	gap: 24px;
}

.ocp-category-grid__notice {
	padding: 16px;
	border: 1px dashed #cbd5e1;
	border-radius: 8px;
	background: #f8fafc;
	color: #6b7280;
}

.ocp-category-card__link {
	display: block;
	width: 100%;
	text-decoration: none;
	color: inherit;
}

.ocp-category-card__link:hover,
.ocp-category-card__link:focus {
	text-decoration: none;
	color: inherit;
	outline: none;
}

.ocp-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 100%;
	min-height: 120px;
	padding: 24px 16px;
	text-align: center;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.ocp-category-card.is-available {
	cursor: pointer;
}

.ocp-category-card__link:hover .ocp-category-card.is-available {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.14);
}

.ocp-category-card.is-soon {
	cursor: default;
	opacity: 0.92;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.ocp-category-box__title {
	display: block;
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.3;
	color: #111827;
}

.ocp-category-box__subtitle {
	display: inline-block;
	margin-top: 10px;
	padding: 6px 14px;
	font-size: 0.875rem;
	line-height: 1.4;
	color: #6b7280;
	background: #f9fafb;
	border: 1px solid #d1d5db;
	border-radius: 999px;
}

.ocp-category-card.is-available .ocp-category-box__subtitle {
	color: #2563eb;
	background: #ffffff;
	border-color: #2563eb;
}

@media (max-width: 1024px) {
	.ocp-category-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.ocp-category-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.ocp-category-grid {
		grid-template-columns: 1fr;
	}
}
