.psc-hpl-card {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr) auto;
	grid-template-areas:
		"icon content secure"
		". actions actions";
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	margin: 12px 0;
	padding: 16px;
	align-items: start;
	gap: 10px 14px;
	border: 1px solid #cfdef2;
	border-radius: 12px;
	background: #f4f8ff;
	box-shadow: 0 7px 18px rgba(25, 58, 105, .05);
	color: #0b1f44;
	overflow-wrap: anywhere;
}

.psc-hpl-card * {
	box-sizing: border-box;
}

.psc-hpl-card__icon {
	display: grid;
	grid-area: icon;
	width: 46px;
	height: 46px;
	place-items: center;
	border-radius: 10px;
	background: #e4efff;
	color: #2563d9;
}

.psc-hpl-card__icon svg,
.psc-hpl-card__secure svg,
.psc-hpl-card__button svg {
	display: block;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.psc-hpl-card__icon svg {
	width: 22px;
	height: 22px;
}

.psc-hpl-card__content {
	grid-area: content;
	min-width: 0;
}

.psc-hpl-card__title {
	margin: 0;
	color: #102958;
	font-size: 16px;
	line-height: 1.3;
}

.psc-hpl-card__text {
	max-width: 620px;
	margin: 5px 0 0;
	color: #425f82;
	font-size: 13px;
	line-height: 1.5;
}

.psc-hpl-card__secure {
	display: inline-flex;
	grid-area: secure;
	min-height: 28px;
	padding: 5px 9px;
	align-items: center;
	justify-content: center;
	gap: 5px;
	border-radius: 999px;
	background: #e8f7ef;
	color: #19714f;
	font-size: 11px;
	font-weight: 750;
	line-height: 1.2;
}

.psc-hpl-card__secure svg {
	width: 14px;
	height: 14px;
}

.psc-hpl-card__actions {
	grid-area: actions;
	min-width: 0;
	margin: 0;
}

.psc-hpl-card__button {
	display: flex;
	width: 100%;
	min-height: 44px;
	padding: 10px 14px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: 1px solid #3157c8;
	border-radius: 10px;
	background: #4169e1;
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
}

.psc-hpl-card__button svg {
	width: 17px;
	height: 17px;
	margin-left: auto;
}

.psc-hpl-card__button span {
	margin-left: auto;
}

.psc-hpl-card__button:hover,
.psc-hpl-card__button:focus-visible {
	border-color: #2749b8;
	background: #3157c8;
	color: #ffffff;
}

.psc-hpl-card__button:active {
	background: #2749b8;
}

.psc-hpl-card__button:focus-visible {
	outline: 3px solid #8ab4ff;
	outline-offset: 3px;
}

.psc-hpl-return {
	max-width: 42rem;
	margin: 3rem auto;
	padding: 2rem 1.25rem;
	text-align: center;
}

.psc-hpl-return h1 {
	margin: 0 0 1rem;
}

.psc-hpl-return p {
	line-height: 1.65;
}

@media (max-width: 480px) {
	.psc-hpl-card {
		grid-template-columns: 42px minmax(0, 1fr);
		grid-template-areas:
			"icon content"
			". secure"
			"actions actions";
		padding: 14px;
		gap: 9px 12px;
	}

	.psc-hpl-card__icon {
		width: 42px;
		height: 42px;
	}

	.psc-hpl-card__secure {
		justify-self: start;
	}

	.psc-hpl-card__button {
		min-height: 48px;
	}
}
