.dst-scroll-header {
	--dst-scroll-header-bg: rgba(155, 18, 34, 0.94);
	--dst-scroll-header-top: 0px;
	--dst-scroll-header-z-index: 999999;
	--dst-scroll-header-duration: 260ms;
	position: fixed;
	top: var(--dst-scroll-header-top);
	left: 0;
	z-index: var(--dst-scroll-header-z-index);
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	color: #f8f4f0;
	background: var(--dst-scroll-header-bg);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translate3d(0, -8px, 0);
}

.dst-scroll-header.has-fade {
	transition:
		opacity var(--dst-scroll-header-duration) ease,
		visibility var(--dst-scroll-header-duration) ease,
		transform var(--dst-scroll-header-duration) ease;
}

.dst-scroll-header.is-visible,
.dst-scroll-header.is-editor-preview {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translate3d(0, 0, 0);
}

.dst-scroll-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 24px 7%;
}

.dst-scroll-header__logo {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	color: inherit;
	text-decoration: none;
	flex: 0 1 auto;
}

.dst-scroll-header__logo img {
	display: block;
	width: 208px;
	height: auto;
	max-width: min(42vw, 100%);
	object-fit: contain;
}

.dst-scroll-header__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	min-width: 0;
	box-sizing: border-box;
	padding: 20px 54px;
	color: #f8f4f0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 38px;
	font-style: italic;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	background: transparent;
	border: 2px solid rgba(248, 244, 240, 0.22);
	border-radius: 999px;
	transition:
		color 180ms ease,
		background-color 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.dst-scroll-header__button:hover,
.dst-scroll-header__button:focus-visible {
	color: #f8f4f0;
	text-decoration: none;
	border-color: rgba(248, 244, 240, 0.48);
}

.dst-scroll-header__button:focus-visible {
	outline: 3px solid rgba(248, 244, 240, 0.42);
	outline-offset: 5px;
}

.dst-scroll-header__button-dot {
	display: block;
	width: 21px;
	height: 21px;
	background: #ef2528;
	border-radius: 999px;
	flex: 0 0 auto;
}

.dst-scroll-header__button-text {
	display: block;
	min-width: 0;
	overflow-wrap: anywhere;
}

@media (max-width: 767px) {
	.dst-scroll-header__inner {
		gap: 18px;
		padding: 16px 5%;
	}

	.dst-scroll-header__logo img {
		width: 132px;
		max-width: 38vw;
	}

	.dst-scroll-header__button {
		gap: 12px;
		max-width: 58vw;
		padding: 13px 18px;
		font-size: 21px;
		white-space: normal;
	}

	.dst-scroll-header__button-dot {
		width: 12px;
		height: 12px;
	}
}
