.phb-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 260px));
	justify-content: center;
	gap: 24px;
	width: 100%;
}

.phb-card {
	border: 1px solid #d9e2ef;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(19, 34, 73, 0.08);
	overflow: hidden;
	min-height: 375px;
	display: flex;
	flex-direction: column;
}

.phb-card__link {
	display: flex;
	flex-direction: column;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.phb-card__logo-wrap {
	height: 190px;
	padding: 18px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.phb-card__logo {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.phb-card__logo--empty {
	width: 100%;
	height: 100%;
	background: #e7eef8;
	border-radius: 8px;
}

.phb-card__body {
	padding: 18px 20px 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	text-align: center;
}

.phb-card__text,
.phb-card__text p {
	margin: 0;
	color: #4b5875;
	font-size: 15px;
	line-height: 1.55;
	text-align: center;
}

.phb-card__text p + p {
	margin-top: 8px;
}

.phb-card__text p:last-child {
	display: block;
	overflow: visible;
}

.phb-empty {
	margin: 0;
	color: #4b5875;
	font-size: 16px;
}

@media (max-width: 900px) {
	.phb-grid {
		grid-template-columns: repeat(auto-fit, minmax(240px, 240px));
	}
}

@media (max-width: 600px) {
	.phb-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}
