.image-cta {
	position: relative;
}
.image-cta--image {
    width: 100%;
}
.image-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.image-cta-intro {
    max-width: 660px;
    margin-bottom: 2rem;
}
.image-cta-row .image-cta {
    flex: 1 1 100%;
}
.image-cta-row.shape-square img.image-cta--image {
    aspect-ratio: 1;
    object-fit: cover;
}
.image-cta .image-cta--content {
	display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    gap: 0.65rem;
	margin: 0 auto;
    position: absolute;
    left: 0;
    bottom:0;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 80%);
}
.image-cta .image-cta--text {
    flex: 0 0 auto;
	max-width: 800px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    line-height: 1;
}
.image-cta .image-cta--heading {
    font-size: calc(var(--font-size__base) + 2px);
    font-weight: 600;
}
.image-cta .image-cta--text p:last-of-type {
    margin: 0;
}
.image-cta .image-cta--action {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
.image-cta .image-cta--action .button {
    line-height: 1;
}

@media screen and (min-width: 700px) {
	.image-cta .content-container {
		flex-wrap: nowrap;
	}
    .image-cta .image-cta--content {
        gap: 1rem;
        padding: 1rem 1.5rem;
    }
	.image-cta .image-cta--text {
		min-width: 0;
		padding: 0;
	}
    .image-cta-row .image-cta {
        flex: 1 1 calc(50% - 1rem);
    }
}
