:root {
	--yellow: #f4cf00;
	--black: #000000;
	--white: #ffffff;
	--light-gray: #efefef;
	--mid-gray: #e7e7e7;
	--text: #111111;
}

body {
	margin: 0;
	font-family: 'Jost', sans-serif;
	background: #f3f3f3;
	color: var(--text);
}

.community-support {
	background: #f3f3f3;
}

.community-support .container {
	max-width: 1120px;
}

.community-support__placeholder-note {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 12px;
	line-height: 1.4;
	color: #222;
	background: #fff;
	padding: 16px;
	min-height: 140px;
}

.community-support__empty {
	margin: 0;
	padding: 14px;
	background: #fff;
	border: 1px solid #d1d5db;
}

.community-support--landing .hero picture,
.community-support--landing .hero picture img {
	display: block;
	width: 100%;
	height: auto;
}

.community-support--landing .explore-section {
	padding: 32px 0 40px;
}

.community-support--landing .explore-section .container {
	background: var(--mid-gray);
	padding: 24px 20px 20px;
}

.community-support--landing .explore-title {
	text-align: center;
	font-size: 52px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 24px;
}

.community-support--landing .category-img {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.community-support--landing .category-img picture,
.community-support--landing .category-img a {
	display: block;
}

.community-support--landing .category-img img {
	display: block;
	width: 100%;
	height: 296px;
	object-fit: cover;
}

.community-support--category .hero-banner {
	position: relative;
	text-align: center;
	border-bottom: 6px solid var(--yellow);
}

.community-support--category .hero-banner picture,
.community-support--category .hero-banner img {
	display: block;
	width: 100%;
	height: auto;
}

.community-support--category .hero-title {
	position: relative;
	z-index: 1;
	color: #fff;
	font-size: clamp(2rem, 5vw, 4rem);
	font-weight: 800;
	letter-spacing: 1px;
	margin: 0;
	text-transform: uppercase;
	padding: 80px 12px;
}

.community-support--category .category-wrap {
	padding: 24px 0 18px;
}

.community-support--category .category-tabs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 12px;
}

.community-support--category .category-btn {
	display: block;
	border: 0;
	background: var(--black);
	color: var(--white);
	font-weight: 500;
	font-size: 20px;
	line-height: 1;
	padding: 22px 12px;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.community-support--category .category-btn.active,
.community-support--category .category-btn:hover {
	background: var(--yellow);
	color: var(--black);
}

.community-support--category .content-panel {
	background: var(--mid-gray);
	padding: 36px 16px 28px;
	margin-top: 18px;
}

.community-support--category .section-heading {
	text-align: center;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.1;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.community-support--category .css-accordion-item {
	margin-bottom: -5px;
}

.community-support--category .accordion-label {
	appearance: none;
	background: #fff;
	color: var(--text);
	font-weight: 600;
	text-transform: uppercase;
	font-size: 1.2rem;
	padding: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
	margin: 0;
	width: 100%;
	border: 0;
	text-align: left;
}

.community-support--category .accordion-label::after {
	content: '+';
	font-size: 2rem;
	font-weight: 500;
	color: #46506a;
	line-height: 1;
	flex-shrink: 0;
	margin-left: 16px;
}

.community-support--category .accordion-label[aria-expanded='true']::after {
	content: '\2212';
}

.community-support--category .accordion-content {
	background: #fff;
	padding: 0 24px 24px;
}

.community-support--category .accordion-content[hidden] {
	display: none !important;
}

.community-support--category .accordion-content p {
	margin-bottom: 20px;
	color: #444;
}

.community-support--category .contact-list {
	font-size: 12pt;
	line-height: 45px;
	list-style: none;
	margin: 0;
	padding: 0 0 0 15px;
}

.community-support--category .contact-list li {
	display: flex;
	align-items: center;
	gap: 15px;
}

.community-support--category .contact-list a {
	color: #000;
	text-decoration: none;
	word-break: break-word;
}

.community-support--category .ulimg {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.community-support--category .logo-img {
	margin: 0 20px 0 0;
	max-width: 220px;
	height: auto;
	display: block;
}

@media (max-width: 1199.98px) {
	.community-support--landing .explore-title {
		font-size: 40px;
	}

	.community-support--category .category-btn {
		font-size: 26px;
	}

	.community-support--category .section-heading {
		font-size: 24px;
	}
}

@media (max-width: 991.98px) {
	.community-support--landing .category-img img {
		height: 260px;
	}

	.community-support--category .category-tabs {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.community-support--category .category-btn {
		font-size: 20px;
		padding: 16px 10px;
	}

	.community-support--category .section-heading {
		font-size: 24px;
	}

	.community-support--category .accordion-label {
		font-size: 1.05rem;
		padding: 18px;
	}

	.community-support--category .accordion-content {
		padding: 0 18px 18px;
	}
}

@media (max-width: 767.98px) {
	.community-support--landing .explore-section {
		padding: 24px 0;
	}

	.community-support--landing .explore-section .container {
		padding: 18px 14px 12px;
	}

	.community-support--landing .explore-title {
		font-size: 28px;
		margin-bottom: 16px;
	}

	.community-support--landing .category-img img {
		height: auto;
	}

	.community-support--category .ulimg {
		flex-direction: column;
		align-items: flex-start;
	}

	.community-support--category .logo-img {
		margin: 10px 0 0;
		max-width: 180px;
	}

	.community-support--category .contact-list {
		line-height: 32px;
		padding-left: 0;
	}
}

@media (max-width: 575.98px) {
	.community-support--category .category-wrap {
		padding-top: 16px;
	}

	.community-support--category .category-tabs {
		display: flex;
		gap: 16px;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.community-support--category .category-tabs::-webkit-scrollbar {
		display: none;
	}

	.community-support--category .category-tabs .category-btn {
		display: none;
	}

	.community-support--category .category-tabs .mobile-main-btn {
		display: block;
		width: 100%;
	}

	.community-support--category .content-panel {
		padding: 24px 12px 18px;
	}

	.community-support--category .section-heading {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.community-support--category .accordion-label {
		font-size: 1rem;
		padding: 16px;
	}

	.community-support--category .accordion-content {
		padding: 0 16px 18px;
	}
}
