.hero-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url(https://cavalliisland.se/wp-content/uploads/2026/02/thumb-scaled.jpg);
    background-size: cover;
    background-position: center;
}

.hero-video video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* Overlay CTA */
.titleCTA {
    color: var(--white);
    position: absolute;
    inset: 0;
    z-index: 2;
    text-align: center;
    
    /* optional centering */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.sub-title {
    margin: 0 auto;
    padding: 0 120px;
    text-align: center;
    max-width: 700px;
}

.sub-title span {
	font-size: 42px;
	color: var(--secondary-color);
}

.banner-cta {
    background-size: cover;
}

.banner-cta__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	text-align: center;
	display: flex;
	padding: 40px;
	color: var(--white);
	font-family: var(--secondary-font);
	gap: 40px;
}

.safari .banner-cta__inner {
    -webkit-font-smoothing: antialiased;
}

.banner-cta__inner .banner-cta__title {
    max-width: 700px;
    font-size: 56px;
}

.fullwidth-card {
	padding: 0 80px;
	display: flex;
	flex-direction: column;
}

.fullwidth-card img {
	width: 100%;
	max-height: 450px;
	object-fit: cover;
}

.fullwidth-card__content {
	display: inline-block;
}
.fullwidth-card__ingress {
    font-size: 20px;
    line-height: 1.3em;
}

@media (max-width: 1024px) {
    .fullwidth-card {
		padding: 0px 40px;
	}
}

@media (max-width: 747px) {	
	.sub-title {
    	padding: 0 20px;
    	max-width: 700px;
	}
	.sub-title span {
		font-size: 36px;
	}

	.banner-cta__inner .banner-cta__title{
		font-size: 36px;
	}
}