.abclub-fsm {
	position: relative;
	display: flex;
	width: 100%;
	min-height: 100vh;
	background: transparent;
}

.abclub-fsm__close {
	position: absolute;
	top: 32px;
	left: 48px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0;
	border: 0;
	background: none;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	color: #000;
	cursor: pointer;
	font-family: DM Sans;
font-weight: 400;
font-style: Regular;
font-size: 14px;
}
.abclub-fsm__close span:nth-child(1) {
	font-size: 1.5em;
	line-height: 1em;
}

.abclub-fsm__close:hover {
	opacity: 0.9;
}
.abclub-fsm__close:focus {
	outline: none;
	color: #000;
}

.abclub-fsm__sidebar {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 26%;
	min-width: 280px;
	padding: 100px 48px 48px 50px;
	box-sizing: border-box;
	background: #fff;
	position: relative;
	&::before {
		content: '';
		position: absolute;
		left: 0;
		width: 100%;
		height: 0px;
		border-top: 1px solid #EEEEEE;
		top: 80px;

	}
}

.abclub-fsm__primary {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.abclub-fsm__nav-item,.abclub-fsm__nav-item:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 8px 0;
	border: 0;
	background: none;
	font-family: Montserrat, sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.4;
	color: #8BA0B2;
	text-align: left;
	text-decoration: none;
	cursor: pointer;
	letter-spacing: 0;
}

.abclub-fsm__nav-item.is-active {
	color: #000000;
	background: transparent;
	padding-left: 10px;
}

.abclub-fsm__nav-item:hover {
	color: #000000;
	background: transparent;
	padding-left: 10px;
}

.abclub-fsm__nav-arrow {
	width: 16px;
	height: 16px;
	opacity: 0;
}

.abclub-fsm__nav-item.is-active .abclub-fsm__nav-arrow {
	opacity: 1;
}

.abclub-fsm__utility {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid #eee;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.abclub-fsm__utility-link {
	font-family: Inter, Roboto, sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #8ba0b2;
	text-decoration: none;
}

.abclub-fsm__utility-link:hover {
	color: #282828;
}

.abclub-fsm__panel {
	flex: 1;
	padding: 75px 80px 48px 80px;
	background: rgba(255, 255, 255, 0.9);
	box-sizing: border-box;
	overflow-y: auto;
	border-left: 1px solid #ccc;
}

.abclub-fsm__panel-content[hidden] {
	display: none !important;
}

h2.abclub-fsm__panel-title {
	margin: 0 0 32px;
	padding-bottom: 16px;
	font-size: 28px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #000;
	font-family: DM Sans;
font-weight: 300;
font-style: Light;
font-size: 28px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 8%;
position: relative;
&::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 3px;
	width: 71px;
	height: 0px;
	border-top: 1px solid #3B3B3B;
}
}

.abclub-fsm__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px 20px;
}

.abclub-fsm__card {
	display: block;
	text-decoration: none;
	color: inherit;
	text-align: center;
}

.abclub-fsm__card-image {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	background: #d3d3d3;
}

.abclub-fsm__card-title {
	margin-top: 12px;
	font-family: Inter, Roboto, sans-serif;
	font-size: 18px;
	line-height: 1.4;
	text-align: center;
	color: #1F2937;
	letter-spacing: 0;
	margin-top: 10px;
	display: inline-block;
}

.abclub-fsm__empty {
	font-family: Roboto, sans-serif;
	font-size: 14px;
	color: #8ba0b2;
}

@media (max-width: 1200px) {
	.abclub-fsm__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.abclub-fsm {
		flex-direction: column;
	}

	.abclub-fsm__sidebar {
		width: 100%;
		min-width: 0;
		padding: 80px 24px 24px;
	}

	.abclub-fsm__panel {
		padding: 24px;
	}

	.abclub-fsm__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.abclub-fsm__close {
		top: 16px;
		left: 16px;
	}
}

@media (max-width: 600px) {
	.abclub-fsm__grid {
		grid-template-columns: 1fr;
	}
}
