.instCard {
	width: 45%;
	background-color: #103544;
	border-radius: 20px;
	padding: 16px 24px;
	margin: 20px 20px 0 0;
	float: left;
	color: #eee;
	box-shadow: 6px 6px 5px #aaa;
}
.instCard h3 {
	color: #eee;
	border-bottom: 1px dotted #ccc;
}
.instCard img {
	margin-bottom: -2px;
	height: 18px;
}
.instCard span {
	font-size: 12px;
}
.instCard p {
	line-height: 32px;
}
.instCard a:hover {
	color: #888;
	border-bottom: 1px dotted #888;
}

/* ===== Installer directory cards (pfg-dir) ===== */
.pfg-dir {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
	gap: 22px;
	margin: 26px 0;
	clear: both;
}
.pfg-card {
	background: #fff;
	border: 1px solid #e3e8ec;
	border-top: 4px solid #103544;
	border-radius: 10px;
	padding: 20px 22px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}
.pfg-card:hover {
	box-shadow: 0 6px 16px rgba(16, 53, 68, 0.13);
	transform: translateY(-2px);
}
.pfg-card .pfg-name {
	margin: 0 0 6px;
	font-size: 1.18em;
	line-height: 1.25;
	color: #103544;
}
.pfg-stars {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	letter-spacing: 2px;
	margin-bottom: 15px;
}
.pfg-stars::before {
	content: "\2605\2605\2605\2605\2605";
	color: #dcdfe2;
}
.pfg-stars i {
	position: absolute;
	left: 0;
	top: 0;
	width: var(--pct, 0%);
	overflow: hidden;
	white-space: nowrap;
	color: #e6a817;
}
.pfg-stars i::before {
	content: "\2605\2605\2605\2605\2605";
}
.pfg-details {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 7px 14px;
	font-size: 0.95em;
}
.pfg-details dt {
	margin: 0;
	color: #71808a;
	font-size: 0.72em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	font-weight: 600;
	padding-top: 2px;
}
.pfg-details dd {
	margin: 0;
	color: #2b3a42;
}
.pfg-details a {
	color: #1d6fa5;
	word-break: break-word;
}
.pfg-details a:hover {
	text-decoration: underline;
}
@media (max-width: 480px) {
	.pfg-card { padding: 16px 18px; }
}

/* ===== State pool-law tables (pfg-law-table) ===== */
.pfg-law-table {
	width: 100%;
	border-collapse: collapse;
	margin: 18px 0 30px;
	font-size: 0.95em;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.pfg-law-table td,
.pfg-law-table th {
	border: 1px solid #d9e0e4;
	padding: 11px 15px;
	vertical-align: top;
	line-height: 1.55;
	text-align: left;
}
/* header row */
.pfg-law-table tr:first-child td {
	background: #103544;
	color: #fff;
	font-weight: 600;
}
.pfg-law-table tr:first-child td strong {
	font-weight: 600;
}
/* category column */
.pfg-law-table td:first-child {
	width: 165px;
	font-weight: 600;
	background: #f5f8fa;
	color: #103544;
}
/* mid-table section sub-headers (full-width colspan rows) */
.pfg-law-table td[colspan] {
	background: #eaf1f6;
	color: #103544;
	text-align: center;
	width: auto;
}
/* zebra striping on body cells for readability */
.pfg-law-table tr:nth-child(even) td:not(:first-child):not([colspan]) {
	background: #fafcfd;
}
@media (max-width: 600px) {
	.pfg-law-table { display: block; overflow-x: auto; white-space: normal; }
	.pfg-law-table td:first-child { width: auto; }
}
