body {
	font-family: "Open Sans", sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin: 0;
}

main {
    display: flex;
}

h1, .h1 {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 60px;
    color: #ffa600;
}

h2, .h2 {
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    font-size: 90px;
    line-height: 72px;
}

.custom-lobby-banner {
    width: 100%;
    aspect-ratio: 412 / 153;
    margin: 0 auto;
    overflow: hidden;
    background-image: url('/images/lobby/vue/live-banners/comp-points-bg.jpg');
    height: 100%;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
 
.custom-banner-inner {
    display: flex;
    height: 100%;
}
 
.custom-banner-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 
.custom-banner-left img {
    /* max-height: 70%; */
    width: 100%;
}
 
.custom-banner-right {
    width: 34%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
 
.custom-banner-right-image {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-height: 390px;
}
 
.custom-banner-right-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
}
 
.custom-banner-mid {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 
.custom-banner-promo-card {
    background-color: rgba(22, 22, 22, 0.8);
    border-radius: 6px;
    overflow: hidden;
    text-align: center;
	padding: 15px;
    font-size: calc(1vw + 0.5em);
}
 
.custom-banner-promo-card p {
    color: white;
    margin: 0;
    padding: 0;
    font-size: 26px; /* relative to card font-size */
    line-height: 1.2em;
}
 
.custom-banner-promo-header-test {
    background: #006830;
    color: white;
    text-align: center;
    font-size: clamp(10px, 1.5vw, 16px); /* scales but stays readable */
    padding: 0.3em 0;
}
 
.custom-banner-promo-timer {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 0.5em 0;
    width: 100%;
}
 
.custom-banner-time-block span {
    font-size: clamp(12px, 3vw, 60px); /* scales relative to banner width */
    font-weight: bold;
    color: white;
    display: block;
}
 
.custom-banner-time-block label {
    font-size: clamp(8px, 1.2vw, 25px);
    display: block;
    color: #ffa600;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
	h1, .h1 {
    	font-size: 36px;
	}

	h2, .h2 {
		font-size: 50px;
		line-height: 72px;
	}

    .custom-banner-promo-card p {
        font-size: 22px;
    }
}

@media only screen and (max-width: 1024px) and (orientation: landscape) {
	h1, .h1 {
		font-size: 33px;
	}

	h2, .h2 {
		font-size: 40px;
    	line-height: 72px;
	}

    .custom-banner-promo-card p {
        font-size: 22px;
    }
}

@media only screen and (max-width: 600px) {
	h1, .h1 {
    	font-size: 14px;
	}

	h2, .h2 {
		font-size: 20px;
        line-height: 32px;
	}

    .custom-banner-promo-card p {
        font-size: 12px; /* relative to card font-size */
    }
}