/* CSS Resource Document for: Army Sustainment Command -> History Office 	*
!  Global classes should be defined in portal.css  							*
*  The proponent agency for this source is AMAS-PC 							*/

.tour-section {
	font-family: "GI4", sans-serif;
	color: #2c2c2c;
	line-height: 1.6;
}
.tour-header {
	text-align: center;
	margin-bottom: 2rem;
}
.tour-subtitle {
	font-size: 1.2rem;
	color: #666;
}
.tour-layout {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}
.tour-gallery,
.tour-content {
	flex: 1;
	min-width: 300px;
}
.tour-images {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: center;
}
	.tour-images a {
		display: block;
	}
	.tour-images img {
		width: 196px;
		height: auto;
		border-radius: 4px;
		box-shadow: 0 2px 6px rgba(0,0,0,0.1);
		transition: transform 0.2s ease;
	}
		.tour-images img:hover {
			transform: scale(1.03);
		}
.tour-note {
	font-size: 0.9rem;
	color: #444;
	margin-top: 0.5rem;
	text-align: center;
}
@media screen and (max-width: 600px) {
	.tour-layout {
		flex-direction: column;
	}
	.tour-images a {
		flex: 1 1 100%;
	}
}