/* CSS Resource Document for: Army Sustainment Command -> Interactives   	*
!  Global classes should be defined in portal.css  							*
*  The proponent agency for this source is AMAS-PC							*/

.other-units-section {
	margin-top: 40px;
	text-align: center;
	font-family: GI5, sans-serif;
}
	.other-units-section h2 {
		font-family: GI7, sans-serif;
		font-size: 1.8rem;
		margin-bottom: 16px;
		color: #1A5276;
	}
.other-units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(max(250px, 30%), 1fr));
    gap: 16px;
    justify-content: center;
    padding: 0 20px;
}

.other-unit {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px;
	text-decoration: none;
	color: #1A5276;
	background-color: #f9f9f9;
	border-radius: 6px;
	transition: transform 0.2s ease, background 0.3s ease;
	cursor: pointer;
	font-family: GI5, sans-serif;
}
	.other-unit:hover {
		transform: scale(1.02);
		background-color: #eaf2f8;
	}
	.other-unit img {
		width: 50px;
		height: 50px;
		flex-shrink: 0;
	}
	.other-unit span {
		text-align: left;
		line-height: 1.4;
		font-size: 13px;
	}
		.other-unit span strong {
			display: block;
			font-size: 14px;
			margin-bottom: -2px;
			color: #1A5276;
		}
	.other-unit:hover span {
		background: #eaf2f8;
	}