/* Section 07 — see resources/design/homepage/sections/07-cta-banner/brief.md */
.cta-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.cta-banner-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    padding: 80px var(--skin-gutter);
}
.cta-banner-heading { color: var(--skin-red); margin: 0; }
.cta-banner-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

@media (max-width: 767px) {
	.cta-banner-content {
    	padding-bottom: 120px;
	}
    .cta-banner-buttons { flex-direction: column; width: 100%; max-width: 320px; }
    .cta-banner-buttons .skin-btn { width: 100%; }
}
