.section--content-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.section--content-header h1 {
margin-bottom: 6rem;
}
.section--aktuality {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.6rem;
}
@media screen and (max-width: 768px) {
.section--aktuality {
grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 500px) {
.section--aktuality {
grid-template-columns: 1fr;
}
}
.section--aktuality .actuality-box {
-webkit-box-shadow: 0px 5px 10px 0px rgba(77, 83, 88, 0.1);
box-shadow: 0px 5px 10px 0px rgba(77, 83, 88, 0.1);
}