/*
Theme Name:  Alchemists Child
Description: Child theme for Alchemists — holds soccersmithers.com customisations
             so they survive parent-theme updates.
Author:      The Fall Classic
Template:    alchemists
Version:     1.0.2
Text Domain: alchemists-child
*/

/* ---------------------------------------------------------------------------
   Team squad photos
   Team pages use the full-width layout, so let the photo fill the content
   column instead of sitting at its intrinsic size.
   --------------------------------------------------------------------------- */
.team-photo {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 24px;
	border-radius: 2px;
}

/* ---------------------------------------------------------------------------
   Teams page — team crests in a row, each linking to its team page.
   Teams without a logo fall back to their name as text.
   --------------------------------------------------------------------------- */
.team-logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin: 0 0 40px;
}

.team-logos__item {
	flex: 1 1 0;
	min-width: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 12px 8px;
	text-decoration: none;
}

.team-logos__item img {
	display: block;
	width: auto;
	height: auto;
	max-height: 130px;
	max-width: 100%;
	transition: transform .2s ease;
}

.team-logos__item:hover img {
	transform: scale(1.06);
}

.team-logos__name {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.25;
	transition: opacity .2s ease;
}

.team-logos__item:hover .team-logos__name {
	opacity: .7;
}

@media (max-width: 575px) {
	.team-logos { gap: 12px; }
	.team-logos__item { flex: 0 0 calc(50% - 6px); }
}
