.wf-box-width-drawer {
	--wf-box-width-drawer-width: 35%;
 
}

body.wf-box-width-drawer-lock {
	overflow: hidden;
}

.wf-box-width-drawer__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.wf-box-width-drawer__box {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100%;
	padding: 24px;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	background: #ffffff;
	color: #111827;
	text-align: left;
	cursor: pointer;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.wf-box-width-drawer__box:hover {
	border-color: #cbd5e1;
	transform: translateY(-2px);
}

.wf-box-width-drawer__box:focus-visible,
.wf-box-width-drawer__close:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.wf-box-width-drawer__image {
	display: block;
	width: 100%;
	height: 180px;
	margin-bottom: 18px;
	border-radius: 12px;
	object-fit: cover;
}

.wf-box-width-drawer__box-title {
	margin: 0 0 10px;
	color: inherit;
	font-size: 18px;
	line-height: 1.25;
}

.wf-box-width-drawer__box-description {
	color: #4b5563;
	font-size: 15px;
	line-height: 1.6;
}

.wf-box-width-drawer__box-description > :first-child,
.wf-box-width-drawer__drawer-column > :first-child {
	margin-top: 0;
}

.wf-box-width-drawer__box-description > :last-child,
.wf-box-width-drawer__drawer-column > :last-child {
	margin-bottom: 0;
}

.wf-box-width-drawer__overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: transparent;
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease;
}

.wf-box-width-drawer__panel {
	position: fixed;
	inset-block: 0;
	inset-inline-end: 0;
	z-index: 999999;
	width: min(var(--wf-box-width-drawer-width), 100vw);
	max-width: 100vw;
	height: 100vh;
	padding: 88px 40px 40px;
	background: #ffffff;
	color: #111827;
	box-shadow: none;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 260ms ease;
}

.wf-box-width-drawer.is-open .wf-box-width-drawer__overlay {
	opacity: 1;
	pointer-events: auto;
}

.wf-box-width-drawer__panel.is-active {
	transform: translateX(0);
}

.wf-box-width-drawer__close {
	position: absolute;
	inset-block-start: 16px;
	inset-inline-end: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: #111827 !important;
	color: #fff;
	cursor: pointer;
	font-size: 26px;
	line-height: 1;
}

.wf-box-width-drawer__drawer-content {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	color: #374151;
	font-size: 16px;
	line-height: 1.7;
}

.wf-box-width-drawer__drawer-column--left {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 35px;
}

.wf-box-width-drawer__drawer-column--right {
	padding-top: 35px;
}

.wf-box-width-drawer__drawer-left-title {
	margin: 0 0 16px;
	color: #111827;
	font-size: 22px;
	line-height: 1.3;
}

.wf-box-width-drawer__drawer-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 35px;
	border-radius: 87px;
	background-color: #000;
	color: #ffffff !important;
	font-family: var(--e-global-typography-f63e51c-font-family), Sans-serif;
	font-size: var(--e-global-typography-f63e51c-font-size);
	line-height: var(--e-global-typography-f63e51c-line-height);
	text-decoration: none;
	transition: background-color 180ms ease, transform 180ms ease;
	font-weight: 400;
}

.wf-box-width-drawer__drawer-button:hover {
	background-color: #333;
	color: #ffffff !important;
	transform: translateY(-1px);
}

@media (max-width: 767px) {
	.wf-box-width-drawer__panel {
		width: 100vw;
		padding: 48px 24px 32px;
	}

	.wf-box-width-drawer__drawer-content {
		grid-template-columns: 1fr;
	}
}
