.dots-content__item {
	border-radius: 20px;
	background-color: white;
	padding: 30px;
}

@media(max-width: 768px) {
	.dots-content__item {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
		padding-bottom: 40px;
	}
}

@media(max-width: 768px) {
	.dots-content__item::before {
		content: "";
		position: absolute;
		top: 20px;
		right: 10px;
		transform: translateX(-50%);
		width: 30px;
		height: 30px;
		background-image: url('data:image/svg+xml,<svg width="30" height="30" viewBox="0 0 30 30" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="15" cy="15" r="14.5" fill="white" stroke="%23EEEEEE"/><path d="M11 11L19 19" stroke="black" stroke-width="2" stroke-linecap="round"/><path d="M19 11L11 19" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>');
	}
}

.dots-content__item img {
	border-radius: 20px;
	max-height: 160px;
	object-fit: cover;
}

#content .dots-content__item h2 {
	font-weight: 700;
	font-size: 18px;
	line-height: 26px;
	letter-spacing: 0%;
	color: var(--dots-item-title-color, #000000);
	margin-bottom: 10px;
}

.dots-content__item h1 {
	font-weight: 700;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 5%;
	color: var(--dots-item-headline-color, #662538);
}

.dots-content__item p {
	color: var(--dots-item-paragraph-color, #555555);
}

@media (min-width: 992px) {
	.dots-content__dot-wrapper svg {
		width: 22px;
		height: 22px;
    margin-bottom: -1px;
	}
}

@media(max-width: 768px) {
	.dots-content__line,
	.dots-content__line-marker {
		display: none;
	}
}

.dots-content__expanded {
	transition: all 0.3s ease;
}

@media(max-width: 768px) {
	.dots-content__expanded {
		position: fixed !important;
		bottom: -100vh !important;
		left: 0 !important;
		top: unset !important;
		z-index: 100 !important;
		max-width: 100% !important;
		right: unset !important;
		transition: all 0.3s ease !important;
		transform: unset !important;
	}
}

@media(max-width: 768px) {
	.dots-content__expanded.active {
		bottom: 0 !important;
		transition: all 0.3s ease !important;
	}
}

@media(max-width: 768px) {
	.dots-content__expanded::before {
		content: "" !important;
		position: fixed !important;
		top: 0 !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		width: 100vw !important;
		height: 100vh !important;
		z-index: -1;
		background-color: var(--dots-item-dragger-color, black) !important;
		opacity: 0.6;
	}
}

.dots-content__item .card__headline {
	padding-bottom: 6px;
	font-weight: 700;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 5%;
	color: var(--dots-card-headline-color, #662538);
}

.dots-content__item .card__link {
	font-family: Moderat;
	font-weight: 700;
	font-size: 16px;
	line-height: 22px;
	text-decoration: underline;
	color: var(--dot-color, #000000);
	margin-top: 15px;
	text-transform: unset;
}

.dots-content__content > img {
	margin-bottom: 20px;
}

.dots-content__closed {
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.15);
	transition: all 0.3s ease;
}

.dots-content__closed:hover {
	box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.35);
	transition: all 0.3s ease;
}

.dots-content__open::before {
	content: '';
	position: absolute;
	inset: 0px;
	bottom: 0.16px;
	width: calc(100% - 0.16px);
	box-shadow: 0 0 10px 8px var(--dot-color);
	opacity: 0.3;
	border-radius: 50%;
	pointer-events: none;
	transition: all 0.3s ease;
}

/* Dot indicators */
.dots-content__closed,
.dots-content__open,
.dots-content__line {
	transition: all 0.3s ease;
}

#content .dots-content__item h1,
#content .dots-content__item h2{
  margin-block: 0 10px;
}
#content .dots-content__item p{
  margin-block: 0;
}
.dots-content__item .card__text{
  padding-inline: 0;
}