.pccr-catalog,
.pccr-product {
	background: #fff;
	color: #221d56;
	padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(4rem, 8vw, 7rem);
}

.pccr-shell {
	margin: 0 auto;
	max-width: 1180px;
	padding: 0 24px;
}

.pccr-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: clamp(2rem, 4vw, 3.5rem);
	font-size: 1.4rem;
}

.pccr-breadcrumbs a,
.pccr-text-link {
	color: #2d1ec4;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.pccr-eyebrow {
	color: #2d1ec4;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin: 0 0 0.7rem;
	text-transform: uppercase;
}

.pccr-catalog__header {
	max-width: 760px;
	margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.pccr-catalog__header h1,
.pccr-product__article h1 {
	color: #1f176a;
	font-size: clamp(3.6rem, 6vw, 6.4rem);
	line-height: 1.03;
	margin: 0 0 1.1rem;
}

.pccr-catalog__header > p:last-child,
.pccr-lede {
	color: #5d5a6c;
	font-size: clamp(1.8rem, 2vw, 2rem);
	line-height: 1.65;
}

.pccr-product-grid {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pccr-card {
	border: 1px solid #e5e3ef;
	border-radius: 1rem;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.pccr-card__image {
	background: #f6f5fb;
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.pccr-card__image img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.pccr-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1.5rem;
}

.pccr-card--text-only .pccr-card__content {
	min-height: 18rem;
	justify-content: flex-end;
}

.pccr-card h3 {
	font-size: 2rem;
	line-height: 1.25;
	margin: 0 0 0.9rem;
}

.pccr-card h3 a {
	color: #1f176a;
	text-decoration: none;
}

.pccr-card p {
	color: #696675;
	font-size: 1.6rem;
	line-height: 1.6;
	margin: 0 0 1.5rem;
}

.pccr-card .pccr-text-link {
	align-self: flex-start;
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: auto;
}

.pccr-product__article {
	max-width: 850px;
}

.pccr-lede {
	margin: 0 0 clamp(2.5rem, 6vw, 4.5rem);
	max-width: 760px;
}

.pccr-details {
	margin-bottom: 2.5rem;
}

.pccr-details h2,
.pccr-subcategory-group h2 {
	color: #1f176a;
	font-size: clamp(2.6rem, 3vw, 3.4rem);
	margin: 0 0 1.2rem;
}

.pccr-details dl {
	border-top: 1px solid #dddbe8;
	margin: 0;
}

.pccr-details dl > div {
	border-bottom: 1px solid #dddbe8;
	display: grid;
	gap: 1rem;
	grid-template-columns: minmax(10rem, 0.7fr) minmax(0, 1.3fr);
	padding: 1.05rem 0;
}

.pccr-details dt {
	font-size: 1.6rem;
	font-weight: 700;
}

.pccr-details dd {
	color: #5d5a6c;
	font-size: 1.6rem;
	margin: 0;
}

.pccr-button {
	background: #2d1ec4;
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 1.5rem;
	font-weight: 700;
	padding: 0.85rem 1.35rem;
	text-decoration: none;
}

.pccr-button:focus-visible,
.pccr-button:hover {
	background: #1f176a;
	color: #fff;
}

.pccr-subcategory-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin: 0 0 clamp(3rem, 6vw, 5rem);
}

.pccr-subcategory-nav a {
	border: 1px solid #d8d4ec;
	border-radius: 999px;
	color: #2d1ec4;
	font-size: 1.45rem;
	font-weight: 700;
	padding: 0.7rem 1.1rem;
	text-decoration: none;
}

.pccr-subcategory-nav a:focus-visible,
.pccr-subcategory-nav a:hover {
	background: #f1effc;
}

.pccr-subcategory-groups {
	display: grid;
	gap: clamp(4rem, 8vw, 7rem);
}

.pccr-subcategory-group h2 {
	margin-bottom: 1.8rem;
}

@media (max-width: 900px) {
	.pccr-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.pccr-shell {
		padding: 0 18px;
	}

	.pccr-product-grid {
		grid-template-columns: 1fr;
	}

	.pccr-card--text-only .pccr-card__content {
		min-height: 0;
	}

	.pccr-details dl > div {
		gap: 0.35rem;
		grid-template-columns: 1fr;
	}
}
