/* 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							*/

/* Unit Map */
.map-container {
	position: relative;
	width: 100%;
	max-width: 1024px;
	margin: auto;
}
.world-map {
	width: 100%;
	height: auto;
	display: block;
}
.unit-crest {
	position: absolute;
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
}
	.unit-crest img {
		width: 50px;
		height: 50px;
		object-fit: contain;
		background-color: transparent;
		border: none;
		box-shadow: none;
		transition: transform 0.2s ease;
	}
		.unit-crest img:hover {
			transform: scale(1.1);
		}
.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(180px, 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;
	}