/*
 * Banner Ad Catalog Styles
 */
.hfwc-banner-image-wrapper {
	width: 100%;
	margin-bottom: 1em;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5em 0 1.5em;
}

.hfwc-banner-inner {
	max-width: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hfwc-banner-image {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.2s;
	display: block;
}

.hfwc-banner-image:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

@media (max-width: 900px) {
	.hfwc-banner-image-wrapper {
		padding: 1em 0.2em;
	}

	.hfwc-banner-inner {
		flex-direction: column;
	}
}

@media (max-width: 600px) {
	.hfwc-banner-image-wrapper {
		padding: 0.5em 0;
		border-radius: 8px;
	}

	.hfwc-banner-image {
		border-radius: 4px;
	}
}