#galerie {
	position: relative;
	overflow: hidden;
	transition: all 1s;
	height: auto;

	&::after {
		content: '';
		position: absolute;
		bottom: 0;
		display: block;
		width: 100%;
		height: 0;
		background-image: linear-gradient( to top,
			white 25%,
			transparent );
		transition: all 1s;
	}

	&.galerie-reduziert {
		height: 50vw;

		&::after {
			height: 50%;
		}
	}
}

.galerie-button {
	position: sticky;
	bottom: 25px;
}

#galerie-mehr-anzeigen {
	cursor: pointer;
}
