/* teaser boxes */

.mc-teaser-double-wrapper {
	width: 100%;
}

.mc-teaser-double {
	display: flex;
    justify-content: space-between;
    max-width: 1440px;
    padding: 56px 64px;
    margin: 0 auto;
}

.mc-teaser-double-box {
    width: 50%;
    border-radius: 24px;
}

.mc-teaser-double-box {
  width: 50%;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--color_4);
}

.mc-teaser-double-box:first-child {
	margin-right: 16px;
}

.mc-teaser-double-box:last-child {
	margin-left: 16px;
}

.mc-teaser-double-img {
    height: 360px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 24px 24px 0 0;
    border-bottom: 0;
}

.mc-teaser-double-border {
    display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	border-top: 0;
    border-radius: 0 0 24px 24px;
	padding-bottom: 24px;
}

.mc-teaser-double-txt-box {
	font-size: 16px;
	line-height: 1.5em;
}

.mc-teaser-double-txt-box-nospace {
    margin-bottom: 0;
}

.mc-teaser-double p {
	padding: 0 48px;
}

.mc-teaser-double p.intro {
	font-weight: 600;
	padding: 48px 48px 0;
	margin-bottom: 8px;
}

html .editor-styles-wrapper .mc-teaser-double-box h2, 
.mc-teaser-double-txt-box h2 {
	font-size: 40px;
	padding: 0 48px;
    margin-bottom: 24px;
}

.mc-teaser-double-button {
    margin: 8px 48px 24px;
}

html .editor-styles-wrapper .mc-teaser-double-button span, 
.mc-teaser-double-button a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    /*white-space: nowrap;*/
    color: var(--color_1);
    background-color: #fff;
    border: 2px solid var(--color_1);
    border-radius: 28px;
    padding: 8px 20px 8px 20px;
}

html .editor-styles-wrapper .mc-teaser-double-button span:hover, 
.mc-teaser-double-button a:hover  {
    border-color: var(--color_2);
    color: var(--color_2);
}

html .editor-styles-wrapper .mc-teaser-double-button span.double, 
.mc-teaser-double-button a.double {
    height: 71px;
}

html .editor-styles-wrapper .mc-teaser-double-button span.double {
    padding: 0;
}

@media (max-width: 768px) {
	.mc-teaser-double {
		flex-direction: column;
	    padding: 56px 20px;
	}
	
	.mc-teaser-double-box {
		width: 100%;
	}
	
    .mc-teaser-double-box:first-child, 
    .mc-teaser-double-box:last-child {
		margin: 0;
	}
	
	.mc-teaser-double-box:first-child {
		margin-bottom: 64px;
	}
}