/*OSTERGEWINNSPIEL ÜBERSICHT*/
/*block: easter*/
.pagewrapper .content-container.easter {
    position: relative;
    height: 750px;
    z-index: 1;
    display:  grid; 
}

.content-container.easter .content-container-box {
	width: 100%;
	max-width: 1024px;
	position: relative;
	padding: 0;
	background: var(--isarblue);
 	overflow: hidden;
}

.easter__rabbit {
	position: absolute; 
	width: 150px;  
	bottom: 0; 
	right: 30px; 
	transform: scaleX(-1);
}

.easter__grass {
	position: absolute;
	bottom: -30px;
	width: fit-content;
	z-index: 2;
}

.easter__eggs {
    position: absolute; 
    bottom: 0; 
    z-index: 1; 
    left: 70px;
}

.easter__eggs img {
    position: absolute; 
    left: 50px; 
    bottom: 0; 
    width: 100px;
}

.easter__bubble {
    width: 150px;
    position: absolute;
    left: 440px;
    top: 20px;
}

.easter__ra-logo {
    width: 200px;
    position: absolute;
    right: 100px;
    top: 150px;
}

.easter__headlines {
    position: absolute;
    top: 150px;
    left: 100px;
}

.easter__headlines img {
    width: 290px;
}

.easter__headlines p {
    font-size: 22px; 
    font-weight: 700; 
    margin: 0; 
}

.easter__egg-grid {
    display: grid;
    grid-template-areas:
      "a b c d"
      "e f g h";
    min-width: 50%;
    max-width: 70%;
    margin: 300px auto 50px auto;
    grid-row-gap: 2%;
    grid-column-gap: 1%;
    justify-items: center;
    position: relative;
}

.easter__egg-link {
    align-self: self-end;
    padding: 10px;
}

.easter__egg-link img {
    height: 130px; 
    width: 103px;
}

.easter__egg-link:hover {
    opacity: 0.7;
}

/*block: easter-footer*/
.easter-footer {
	padding: 10px;
}

.easter-footer__text-block {
	font-size: 18px;
}

.easter-footer__text-block--smaller {
	font-size: 16px;
}

.easter-footer__link {
	border-bottom: 1px solid var(--az-red);
}

.easter-footer__link--fat {
    font-weight: 500; 
}

@media screen and (max-width: 900px) {  
	.pagewrapper .content-container.easter {
		height: 1350px;
	}
    
    .easter__headlines, .easter__ra-logo, .easter__bubble {
		position: relative; 
		display: block; 
		top: 40px; 
	}

	.easter__headlines {
		text-align: center; 
		left: 0;
	}
  
  	.easter__ra-logo {
		display: block; 
		right: 0; 	
        margin: 0 auto 20px auto;
	}
  
	.easter__bubble {
		left: 0; 
		margin: 0 auto;
	}
    
    .easter-egg-grid {
		grid-template-areas:
			"a b"
			"c d"
			"e f"
			"h i"; 
		padding: 0 8%;
		margin-top: 110px; 
	}
}

@media screen and (max-width: 767px) {
	.easter-footer {
		padding: 0%;
	}
}