/**
 * Global: Related Articles & Related Cases (two-column block).
 */

.ph-related-ac {
	margin-top: 0;
}

.ph-related-ac__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.ph-related-ac__grid--articles-only,
.ph-related-ac__grid--cases-only {
	grid-template-columns: 1fr;
	max-width: 100%;
}

.ph-related-ac__col {
	min-width: 0;
}

.ph-related-ac__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 0 0 30px;
}

.ph-related-ac__head-title {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
}

.ph-related-ac__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--ph-green);
}

.ph-related-ac__icon svg {
	display: block;
}

.ph-related-ac__title {
	margin: 0;
	font-size: 1.75rem;
	line-height: 1.15;
	font-weight: var(--ph-fw-bold);
	color: var(--ph-black);
}

.ph-related-ac__view-all {
	flex-shrink: 0;
	font-size: 1.1rem;
	font-weight: var(--ph-fw-bold);
	color: var(--ph-green);
	text-decoration: none;
}

.ph-related-ac__view-all:hover {
	color: var(--ph-green-dark);
	text-decoration: underline;
}

.ph-related-ac__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.ph-related-ac__item {
	margin: 0;
}

.ph-related-ac__card {
	display: block;
	text-decoration: none;
	color: inherit;
	background: var(--ph-white);
	border: 1px solid #e7edf2;
	border-radius: 12px;
	padding: 16px 18px;
	transition: border-color var(--ph-transition), box-shadow var(--ph-transition);
}

.ph-related-ac__card:hover {
	border-color: rgba(70, 159, 16, 0.35);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.ph-related-ac__card-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
	min-width: 0;
}

.ph-related-ac__card-title {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1.35;
	font-weight: var(--ph-fw-bold);
	color: #1b2732;
}

.ph-related-ac__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 1.1rem;
	font-weight: var(--ph-fw-semi);
	color: var(--ph-green);
}

.ph-related-ac__cta .ph-related-arrow-svg {
	display: block;
	flex-shrink: 0;
}

.ph-related-ac__card:hover .ph-related-ac__cta {
	color: var(--ph-green-dark);
}

@media (max-width: 900px) {
	.ph-related-ac__grid {
		grid-template-columns: 1fr;
	}
}
