.pfx-peptide-grid {
	display: grid;
	gap: 24px;
	width: 100%;
}

.pfx-peptide-grid--cols-1 {
	grid-template-columns: minmax(0, 1fr);
}

.pfx-peptide-grid--cols-2 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pfx-peptide-card {
	display: grid;
	grid-template-columns: minmax(140px, 38%) minmax(0, 1fr);
	align-items: stretch;
	background: #fff;
	border: 1px solid #e8edf3;
	border-radius: 18px;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
	overflow: hidden;
	min-height: 220px;
}

.pfx-peptide-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 20px;
	border-right: 1px solid #edf2f7;
	background: #fff;
}

.pfx-peptide-card__image-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	text-decoration: none;
}

.pfx-peptide-card__image {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 180px;
	height: auto;
	object-fit: contain;
}

.pfx-peptide-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 28px 24px;
	gap: 10px;
}

.pfx-peptide-card__title {
	margin: 0;
	font-size: clamp(1.35rem, 2vw, 1.75rem);
	line-height: 1.2;
	font-weight: 700;
	color: #1a2b4a;
}

.pfx-peptide-card__title a {
	color: inherit;
	text-decoration: none;
}

.pfx-peptide-card__title a:hover {
	color: #2b59c3;
}

.pfx-peptide-card__strength {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	color: #2b59c3;
}

.pfx-peptide-card__excerpt {
	margin: 0;
	max-width: 34rem;
	color: #6b7280;
	font-size: 0.95rem;
	line-height: 1.55;
}

.pfx-peptide-card__excerpt p {
	margin: 0;
}

.pfx-peptide-card__tags {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 4px;
}

.pfx-peptide-card__tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	border-radius: 999px;
	background: #f3f4f6;
	color: #4b5563;
	font-size: 0.82rem;
	font-weight: 500;
	line-height: 1.2;
}

.pfx-peptide-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 8px;
	padding: 12px 34px;
	border: 2px solid #2b59c3;
	border-radius: 999px;
	background: #fff;
	color: #1e40af;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.pfx-peptide-card__cta:hover,
.pfx-peptide-card__cta:focus {
	background: #2b59c3;
	border-color: #2b59c3;
	color: #fff;
}

@media (max-width: 1024px) {
	.pfx-peptide-grid--cols-2 {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 640px) {
	.pfx-peptide-card {
		grid-template-columns: 1fr;
	}

	.pfx-peptide-card__media {
		border-right: 0;
		border-bottom: 1px solid #edf2f7;
		padding: 20px 16px;
	}

	.pfx-peptide-card__body {
		padding: 22px 18px 24px;
	}
}
