.editor-styles-wrapper{
	.aktuelles{
		.row{
			gap: var(--bs-gutter-x) 0;
		}

		.first-post{
			text-decoration: none;

			p{
				text-wrap: balance;
			}

			.first-inner{
				padding: 40px 0;
			}

			.wp-block-cover{
				min-height: 600px;
				margin-right: var(--snap);

				@media (max-width: 991px){
					min-height: 500px;
				}

				@media (max-width: 767px){
					min-height: 400px;
					margin-left: var(--snap);
				}

				@media (max-width: 575px){
					min-height: 300px;
				}
			}
			.wp-block-cover__inner-container{
				display: flex;
				justify-content: center;

				&::before{
					content: '';
					position: absolute;
					z-index: 1;
					top: 0;
					left: 0;
					width: 100%;
					height: 100%;
					background: #322B2A40;
					transition: background-color .3s ease;
				}

				img{
					position: relative;
					z-index: 2;
					max-width: 50%;
					max-height: 50%;
				}
			}
			&:hover .wp-block-cover__inner-container::before{
				background-color: #322B2A8C;
			}
		}
	}
}