.peplynx-certificates-block {
	padding-top: 0;
	padding-bottom: 0;
}
.coa-eyebrow {
	color: var(--color-primary);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08rem;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}
.coa-title {
	color: var(--title-black);
	font-size: 2rem;
	font-weight: 500;
	line-height: 110%;
	margin-bottom: 0.875rem;
}
.coa-subtitle {
	color: var(--color-text);
	font-size: 1rem;
	line-height: 140%;
	max-width: 42rem;
	margin-bottom: 3rem;
}
.coa-grid {
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 1rem;
	row-gap: 3rem;
}
@media screen and (min-width: 640px) {
	.coa-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (min-width: 1024px) {
	.coa-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.coa-title {
		font-size: 2.75rem;
	}
}
.coa-card {
	padding: 5px 0;
	border-radius: 1rem;
	border: 1px solid #d4d4d4;
	overflow: hidden;
	background: #fff;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.coa-card:hover {
	border-color: var(--color-primary);
	box-shadow: 0 4px 24px rgba(68, 110, 137, 0.1);
}
.coa-card-img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
	aspect-ratio: 5.4 / 7;
	cursor: zoom-in;
}
.coa-card-title {
	color: var(--title-black);
	font-size: 1rem;
	font-weight: 600;
	line-height: 130%;
	padding: 1rem 1.25rem;
}
.coa-lightbox {
	display: flex;
	position: fixed;
	inset: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.85);
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.coa-lightbox.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}
.coa-lightbox-inner {
	position: relative;
	max-width: 52rem;
	width: 100%;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	transform: scale(0.95);
	transition: transform 0.3s ease;
}
.coa-lightbox.is-open .coa-lightbox-inner {
	transform: scale(1);
}
.coa-lightbox-img {
	display: block;
	width: 100%;
	max-height: calc(90vh - 2.5rem);
	object-fit: contain;
	border-radius: 0.75rem;
	flex-shrink: 1;
}
.coa-lightbox-title {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.9375rem;
	font-weight: 600;
	margin-top: 0.875rem;
	text-align: center;
	flex-shrink: 0;
}
.coa-lightbox-close {
	position: absolute;
	top: 0.625rem;
	right: 0.625rem;
	width: 2.25rem;
	height: 2.25rem;
	border-radius: 50%;
	background: #fff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
	transition: background 0.2s ease;
	z-index: 2;
}
.coa-lightbox-close:hover {
	background: var(--color-primary);
}
.coa-lightbox-close:hover svg path {
	stroke: #fff;
}
.coa-lightbox-close svg {
	width: 1rem;
	height: 1rem;
}
