.image-banner {
	display: flex;
	overflow: hidden;
}

.image-banner--one-low {
	height: 192px;
}

.image-banner--aspect-726-256 {
	aspect-ratio: 726 / 256;
}

.image-banner--aspect-480-256 {
	aspect-ratio: 480 / 256;
}

.image-banner--aspect-357-256 {
	aspect-ratio: 357 / 256;
}

.image-banner__img--absolute {
	position: absolute;
	object-fit: cover;
	object-position: center;
	height: 100%;
	width: 100%;
}

@media (max-width:1079px) {
	.image-banner--one-low {
		height: auto;
		aspect-ratio: 5.2;
	}
}


@media (any-hover: hover) {
	.brightness:hover {
		animation: brightness 0.8s ease forwards;
	}
}

@keyframes brightness {
	10% {
		filter: brightness(0.7);
	}
}