.dst-event-field {
	--dst-event-field-gap: 64px;
	--dst-event-field-item-min-width: 165px;
	--dst-event-field-icon-size: 35px;
	--dst-event-field-icon-gap: 18px;
	--dst-event-field-separator-color: rgba(248, 244, 240, 0.7);
	--dst-event-field-separator-height: 38px;
	--dst-event-field-gradient-width: 92px;
	width: 100%;
	color: #f8f4f0;
}

.dst-event-field,
.dst-event-field * {
	box-sizing: border-box;
	letter-spacing: 0;
}

.dst-event-field__title {
	margin: 0 0 28px;
	color: inherit;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(42px, 7vw, 72px);
	font-style: italic;
	font-weight: 700;
	line-height: 1;
}

.dst-event-field__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.dst-event-field__scroller {
	display: flex;
	align-items: center;
	gap: var(--dst-event-field-gap);
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 0 var(--dst-event-field-gradient-width) 6px 0;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.dst-event-field__scroller::-webkit-scrollbar {
	display: none;
}

.dst-event-field__item {
	position: relative;
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	min-width: var(--dst-event-field-item-min-width);
	color: inherit;
}

.dst-event-field--has-separators .dst-event-field__item + .dst-event-field__item::before {
	position: absolute;
	top: calc(var(--dst-event-field-icon-size) / 2);
	left: calc(var(--dst-event-field-gap) / -2);
	width: 1px;
	height: var(--dst-event-field-separator-height);
	background: var(--dst-event-field-separator-color);
	content: "";
	transform: translate(-50%, -50%);
}

.dst-event-field__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: var(--dst-event-field-icon-size);
	height: var(--dst-event-field-icon-size);
	margin-bottom: var(--dst-event-field-icon-gap);
	color: inherit;
	line-height: 1;
}

.dst-event-field__icon i,
.dst-event-field__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	color: currentColor;
	font-size: var(--dst-event-field-icon-size);
	fill: currentColor;
	stroke: currentColor;
}

.dst-event-field__icon svg [fill="none"] {
	fill: none;
}

.dst-event-field__icon svg *:not([fill="none"]) {
	fill: currentColor;
	stroke: currentColor;
}

.dst-event-field__text {
	display: block;
	min-width: 0;
	max-width: 100%;
	color: inherit;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(18px, 2.8vw, 24px);
	font-weight: 700;
	line-height: 1.18;
	white-space: nowrap;
}

.dst-event-field__prefix,
.dst-event-field__suffix,
.dst-event-field__value {
	color: inherit;
}

.dst-event-field--has-gradient .dst-event-field__scroller {
	-webkit-mask-image: linear-gradient(
		to right,
		#000 0,
		#000 calc(100% - var(--dst-event-field-gradient-width)),
		rgba(0, 0, 0, 0.6) calc(100% - 28px),
		transparent 100%
	);
	mask-image: linear-gradient(
		to right,
		#000 0,
		#000 calc(100% - var(--dst-event-field-gradient-width)),
		rgba(0, 0, 0, 0.6) calc(100% - 28px),
		transparent 100%
	);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}

@media (max-width: 767px) {
	.dst-event-field {
		--dst-event-field-gap: 42px;
		--dst-event-field-item-min-width: 145px;
		--dst-event-field-gradient-width: 68px;
	}

	.dst-event-field__title {
		font-size: clamp(38px, 13vw, 58px);
	}
}
