.guides-content,
.guides-content * {
	box-sizing: border-box;
}

.guides-content {
	width: 100%;
	padding: 0 30px;
	background: var(--guides-background, #eaf1fa);
	color: #020202;
	overflow: hidden;
}

.guides-content__inner {
	display: flex;
	flex-direction: column;
	gap: 64px;
	width: 100%;
	max-width: 1380px;
	margin: 0 auto;
}

.guides-content__heading {
	width: 100%;
	margin: 0;
	color: #333;
	font-size: 60px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -1.8px;
	text-align: center;
}

.guides-content__layout {
	display: grid;
	grid-template-columns: 326px minmax(0, 912px);
	align-items: start;
	justify-content: space-between;
	gap: 48px;
	width: 100%;
}

.guides-content__sidebar {
	position: sticky;
	top: 24px;
	width: 100%;
}

.admin-bar .guides-content__sidebar {
	top: 56px;
}

.guides-content__category-navigation,
.guides-content__category-list {
	width: 100%;
}

.guides-content__category-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.guides-content__category-item {
	width: 100%;
	border-bottom: 1px solid #d9d9d9;
}

.guides-content__category-button {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
	padding: 20px 0;
	border: 0;
	background: transparent;
	color: #333;
	font: inherit;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.66px;
	text-align: left;
	cursor: pointer;
}

.guides-content__category-button:hover,
.guides-content__category-button:focus-visible {
	color: #1169ec;
}

.guides-content__category-button.is-active > span:first-child {
	background: linear-gradient(90deg, #c883d4, #fe5f35);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.guides-content__category-icon {
	display: inline-flex;
	flex: 0 0 16px;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	color: #1169ec;
	line-height: 1;
}

.guides-content__category-icon svg {
	display: block;
	width: 16px;
	height: 16px;
}

.guides-content__categories,
.guides-content__category-panel,
.guides-content__articles {
	width: 100%;
	min-width: 0;
}

.guides-content__category-panel[hidden],
.guides-content__article[hidden] {
	display: none;
}

.guides-content__dropdown-toggle,
.guides-content__dropdown-option,
.guides-content__category-button,
.guides-content__article-tab {
	cursor: pointer;
}

.guides-content__dropdown-toggle:focus-visible,
.guides-content__dropdown-option:focus-visible,
.guides-content__category-button:focus-visible,
.guides-content__article-tab:focus-visible {
	outline: 2px solid #1169ec;
	outline-offset: 2px;
}

.guides-content__article-tabs {
	--guides-tabs-edge-offset: max(
		30px,
		calc((100vw - 1380px) / 2)
	);
	--guides-indicator-left: 0px;
	--guides-indicator-width: 0px;
	--guides-slider-end-space: 0px;

	position: relative;
	display: flex;
	align-items: center;
	width: calc(100% + var(--guides-tabs-edge-offset));
	max-width: none;
	margin-right: calc(var(--guides-tabs-edge-offset) * -1);
	margin-bottom: 48px;
	padding-right: max(
		var(--guides-tabs-edge-offset),
		var(--guides-slider-end-space)
	);
	overflow-x: auto;
	overflow-y: hidden;
	border-bottom: 1px solid #d9d9d9;
	cursor: grab;
	scroll-padding-right: var(--guides-tabs-edge-offset);
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior-x: contain;
	touch-action: pan-y;
	user-select: none;
	-webkit-user-select: none;
}

.guides-content__article-tabs::after {
	content: '';
	position: absolute;
	z-index: 5;
	left: 0;
	bottom: 0;
	width: var(--guides-indicator-width);
	height: 1px;
	background: #c883d4;
	transform: translateX(var(--guides-indicator-left));
	transition:
		transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
		width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	pointer-events: none;
}

.guides-content__article-tabs.is-indicator-initializing::after {
	transition: none;
}

.guides-content__article-tabs::-webkit-scrollbar {
	display: none;
}

.guides-content__article-tabs.is-dragging {
	cursor: grabbing;
}

.guides-content__article-tab {
	position: relative;
	z-index: 1;
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	min-width: max-content;
	padding: 16px;
	border: 0;
	background: transparent;
	color: #000;
	font: inherit;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.18px;
	white-space: nowrap;
	pointer-events: auto;
	cursor: pointer;
	transition: color 0.25s ease;
}

.guides-content__article-tab:hover,
.guides-content__article-tab:focus-visible {
	color: #1169ec;
}

.guides-content__article-tab.is-active {
	background: linear-gradient(90deg, #c883d4, #fe5f35);
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.guides-content__article {
	display: flex;
	flex-direction: column;
	gap: 48px;
	width: 100%;
}

.guides-content__article-header {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.guides-content__article-title {
	width: 100%;
	margin: 0;
	color: #020202;
	font-size: 38px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -1.14px;
}

.guides-content__article-intro,
.guides-content__rich-text {
	width: 100%;
	color: #020202;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
}

.guides-content__article-intro p,
.guides-content__rich-text p {
	margin-top: 0;
}

.guides-content__article-intro p:last-child,
.guides-content__rich-text p:last-child {
	margin-bottom: 0;
}

.guides-content__article-intro a,
.guides-content__rich-text a {
	color: #1169ec;
	text-decoration: underline;
}

.guides-content__article-intro ul,
.guides-content__article-intro ol,
.guides-content__rich-text ul,
.guides-content__rich-text ol {
	margin: 24px 0;
	padding-left: 24px;
}

.guides-content__text-block {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.guides-content__text-heading {
	width: 100%;
	margin: 0;
	color: #020202;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.72px;
}

.guides-content__image-pair {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	width: 100%;
}

.guides-content__pair-image,
.guides-content__single-image {
	width: 100%;
	overflow: hidden;
	border-radius: 8px;
}

.guides-content__pair-image {
	aspect-ratio: 446 / 434;
}

.guides-content__single-image {
	aspect-ratio: 912 / 434;
}

.guides-content__pair-image img,
.guides-content__single-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.guides-content__cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
	margin-top: 48px;
	text-align: center;
}

.guides-content__cta-text {
	margin: 0;
	color: #333;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5;
}

.guides-content__cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 33px;
	padding: 6px 16px;
	border-radius: 4px;
	background: #1169ec;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
}

.guides-content__cta-button:hover,
.guides-content__cta-button:focus-visible {
	background: #0e5dcc;
	color: #fff;
}

.guides-content__mobile-navigation {
	display: none;
}

.guides-content__empty {
	width: 100%;
	padding: 24px;
	border: 1px dashed #1169ec;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.6);
	text-align: center;
}

@media (max-width: 1100px) {
	.guides-content__layout {
		grid-template-columns: 260px minmax(0, 1fr);
		gap: 40px;
	}

	.guides-content__heading {
		font-size: 48px;
	}
}

@media (max-width: 767px) {
	.guides-content {
		padding: 64px 16px 32px;
		margin-top: 32px !important;
	}

	.guides-content__inner {
		gap: 48px;
	}

	.guides-content__heading {
		font-size: 40px;
		line-height: 1.1;
		letter-spacing: -1.2px;
	}

	.guides-content__mobile-navigation {
		position: relative;
		z-index: 20;
		display: flex;
		flex-direction: column;
		gap: 8px;
		width: 100%;
	}

	.guides-content__dropdown-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 8px;
		width: 100%;
		min-height: 56px;
		padding: 16px;
		border: 0;
		border-radius: 8px;
		background: #000;
		color: #fff;
		font: inherit;
		font-size: 22px;
		font-weight: 500;
		line-height: 1.1;
		letter-spacing: 0.22px;
		text-align: left;
		cursor: pointer;
	}

	.guides-content__dropdown-chevron {
		flex: 0 0 10px;
		width: 10px;
		height: 10px;
		border-right: 1px solid #fff;
		border-bottom: 1px solid #fff;
		transform: rotate(45deg) translateY(-3px);
		transition: transform 0.2s ease;
	}

	.guides-content__dropdown-toggle[aria-expanded='true']
		.guides-content__dropdown-chevron {
		transform: rotate(225deg) translate(-2px, -2px);
	}

	.guides-content__dropdown-options {
		position: absolute;
		top: calc(100% + 8px);
		left: 0;
		z-index: 30;
		display: flex;
		flex-direction: column;
		width: 100%;
		overflow: hidden;
		border-radius: 8px;
		background: #fff;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	}

	.guides-content__dropdown-options[hidden] {
		display: none;
	}

	.guides-content__dropdown-option {
		display: flex;
		align-items: center;
		width: 100%;
		min-height: 56px;
		padding: 16px;
		border: 0;
		background: #fff;
		color: #333;
		font: inherit;
		font-size: 22px;
		font-weight: 500;
		line-height: 1.1;
		letter-spacing: 0.22px;
		text-align: left;
		cursor: pointer;
	}

	.guides-content__dropdown-option:hover,
	.guides-content__dropdown-option:focus-visible {
		background: #f7f7f7;
	}

	.guides-content__dropdown-option.is-active {
		background:
			linear-gradient(90deg, #c883d4, #fe5f35) text;
		color: transparent;
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}

	.guides-content__layout {
		display: block;
	}

	.guides-content__sidebar {
		display: none;
	}

	.guides-content__article-tabs {
		--guides-tabs-edge-offset: 16px;
	}

	.guides-content__article {
		gap: 48px;
	}

	.guides-content__article-title {
		font-size: 28px;
		line-height: 1.1;
		letter-spacing: -0.84px;
	}

	.guides-content__article-intro,
	.guides-content__rich-text {
		font-size: 18px;
		line-height: 1.5;
	}

	.guides-content__image-pair {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.guides-content__pair-image {
		aspect-ratio: 1 / 1;
	}

	.guides-content__single-image {
		aspect-ratio: 357 / 240;
	}

	.guides-content__cta-text {
		white-space: normal;
	}
}