#centdist {
	margin: 0.5rem 0;
}

#centdist h2.main-title {
	margin: 0 0 1rem 0;
	color: #069;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
	font-size: 1.3rem;
}

#centdist .centdist-layout {
	display: grid;
	grid-template-columns: max-content minmax(0, clamp(530px, 39vw, 875px));
	justify-content: center;
	gap: clamp(1rem, 1.8vw, 2.25rem);
	align-items: start;
}

#centdist .centdist-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, clamp(300px, 13vw, 260px)));
	justify-content: start;
	gap: clamp(0.75rem, 1vw, 1.25rem);
}

#centdist .action-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: clamp(0.5rem, 0.6vw, 0.85rem);
	border: 1px solid #666;
	padding: clamp(0.5rem, 0.6vw, 0.85rem);
	min-height: clamp(210px, 13vw, 250px);
	background: #fff;
	text-align: center;
	text-decoration: none;
	width: 100%;
	max-width: clamp(220px, 13vw, 260px);
	transition: max-width 200ms ease, min-height 200ms ease, padding 200ms ease;
}

#centdist .action-card:hover,
#centdist .action-card:focus {
	background: #efefef;
	text-decoration: none;
}

#centdist .action-card:focus-visible {
	outline: 3px solid #005ea2;
	outline-offset: 2px;
}

#centdist .action-title {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	color: #111;
	margin-bottom: 0;
	text-align: center;
	font-weight: 650;
	font-size: clamp(1rem, 0.92rem + 0.2vw, 1.1rem);
	line-height: 1.3;
	text-wrap: balance;
	min-height: calc(1.3em * 3);
}

#centdist .action-icon {
	height: clamp(95px, 6.5vw, 135px);
	width: min(90%, 135px);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	flex-shrink: 0;
}

#centdist .action-icon svg {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	display: block;
}

#centdist .centdist-sidebar {
	border: 1px solid #666;
	background: #fff;
	max-width: clamp(530px, 39vw, 875px);
	width: 100%;
}

#centdist .side-panel {
	border-bottom: 1px solid #666;
}

#centdist .side-panel:last-child {
	border-bottom: 0;
}

#centdist .side-panel-title {
	margin: 0;
	padding: 0.5rem;
	background: #06678b;
	color: #fff;
	text-align: center;
}

#centdist .side-panel ul {
	margin: 0.7rem 1.3rem;
	padding-left: 1rem;
}

#centdist .side-panel li {
	margin-bottom: 0.6rem;
}

#centdist .side-panel a {
	color: #006d95;
}

#centdist .quick-guides-table {
	width: 100%;
	border-collapse: collapse;
}

#centdist .quick-guides-table td {
	padding: 0.25rem 0.4rem;
	border: 1px solid #666;
	vertical-align: top;
	line-height: 1.25;
}

#centdist .quick-guides-table .section td {
	font-weight: 700;
	color: #065f82;
	background: #fff;
	padding-top: 0.2rem;
	padding-bottom: 0.2rem;
}

#centdist .quick-guides-table td.doc-col {
	white-space: nowrap;
	width: 22%;
}

#centdist .quick-guides-table a {
	color: #006d95;
}

@media screen and (max-width: 1500px) {
	#centdist .centdist-layout {
		grid-template-columns: 1fr;
		justify-content: start;
		gap: 1rem;
	}

	#centdist .centdist-actions {
		grid-template-columns: repeat(3, minmax(220px, 260px));
		justify-content: center;
		justify-items: center;
		gap: 1rem;
	}

	#centdist .centdist-sidebar {
		max-width: none;
		width: 100%;
	}
}

@media screen and (max-width: 1100px) {
	#centdist .centdist-actions {
		grid-template-columns: repeat(2, minmax(220px, 260px));
	}
}

@media screen and (max-width: 760px) {
	#centdist h2.main-title {
		font-size: 1.55rem;
	}
}

@media screen and (max-width: 700px) {
	#centdist .centdist-actions {
		grid-template-columns: 1fr;
		justify-content: center;
		justify-items: center;
	}
}
