/**
 * Auction Header — layout only.
 *
 * Logo and title sit in a flex box. Desktop is a left-to-right row,
 * vertically centered. Phone (Divi’s 767px breakpoint) stacks them and
 * centers on the cross axis. Type, colour and logo size stay with Divi.
 */

.spruce-am-auction-header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem 1.25rem;
}

@media (max-width: 767px) {
	.spruce-am-auction-header {
		flex-direction: column;
		align-items: center;
		justify-content: flex-start;
		text-align: center;
	}
}

.spruce-am-auction-header__logo,
.spruce-am-auction-header__title {
	color: inherit;
	text-decoration: none;
}

.spruce-am-auction-header__logo img {
	display: block;
	max-width: 220px;
	max-height: 80px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.spruce-am-auction-header__title {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.2;
}

.spruce-am-auction-header__empty {
	margin: 0;
}
