.community-showcase {
	--community-blue: #075b91;
	--community-ink: #103f65;
	box-sizing: border-box;
	width: 100%;
	margin-top: 30px;
	padding: 26px;
	overflow: hidden;
	border: 1px solid #d9e6ee;
	border-radius: 18px;
	background:
		radial-gradient(circle at 100% 0, rgba(37, 154, 194, .12), transparent 28%),
		linear-gradient(145deg, #fff 0%, #f8fbfd 100%);
	box-shadow: 0 12px 32px rgba(18, 59, 89, .09);
}

.community-showcase__heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;
}

.community-showcase h2 {
	margin: 0;
	color: var(--community-ink);
	font-size: clamp(22px, 2.2vw, 30px);
	line-height: 1.12;
}

.community-showcase__heading p {
	max-width: 660px;
	margin: 8px 0 0;
	color: #668096;
	font-size: 13px;
	line-height: 1.55;
}

.community-showcase__featured {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.community-profile {
	position: relative;
	min-width: 0;
	overflow: hidden;
	border: 1px solid #dce7ed;
	border-radius: 15px;
	background: #fff;
	box-shadow: 0 6px 18px rgba(20, 62, 91, .08);
	color: var(--community-ink);
}

.community-profile:focus-visible {
	border-color: #9fc8da;
	color: var(--community-ink);
}

.community-profile__cover {
	position: relative;
	display: block;
	height: 56px;
	overflow: hidden;
	background: #d9e8f1;
}

.community-profile__cover img {
	position: absolute;
	inset: -45%;
	width: 190%;
	height: 190%;
	max-width: none;
	object-fit: cover;
	filter: blur(32px) saturate(.9);
	transform: scale(1.18);
}

.community-profile__cover::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(7, 52, 91, .22), rgba(255, 255, 255, .08));
	content: "";
}

.community-profile__body {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
	grid-template-areas:
		"avatar identity activity"
		"avatar cta cta";
	gap: 3px 11px;
	min-height: 56px;
	padding: 8px 14px;
}

.community-profile__avatar {
	grid-area: avatar;
	margin-top: -27px;
}

.community-profile__identity {
	display: grid;
	grid-area: identity;
	min-width: 0;
	gap: 2px;
}

.community-profile__name,
.community-member__name {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.community-profile__reviews {
	color: #7c909f;
	font-size: 90%;
}

.community-member__activity {
	color: #7c909f;
	font-size: 90%;
}

.community-profile__activity {
	grid-area: activity;
	align-self: start;
	color: #6e8799;
	font-size: 90%;
	white-space: nowrap;
}

.community-profile__cta {
	grid-area: cta;
	align-self: end;
	color: var(--community-blue);
}

.community-profile__arrow {
	display: inline-block;
	margin-left: 3px;
}

.community-showcase__recent {
	margin-top: 20px;
	padding-top: 17px;
	border-top: 1px solid #e1eaef;
}

.community-showcase__recent-title {
	margin: 0 0 11px;
	color: #58758a;
}

.community-showcase__recent-list {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 8px;
}

.community-member {
	display: flex;
	min-width: 0;
	align-items: center;
	gap: 8px;
	padding: 8px;
	border: 1px solid transparent;
	border-radius: 10px;
	color: var(--community-ink);
	transition: border-color .18s ease, background-color .18s ease;
}

.community-member > .user_container {
	flex: 0 0 32px;
	margin: 0;
}

.community-member:hover,
.community-member:focus-visible {
	border-color: #dbe8ee;
	background: #fff;
	color: var(--community-ink);
}

.community-member > span:last-child {
	display: grid;
	min-width: 0;
	gap: 2px;
}

.community-showcase__empty {
	margin: 0;
	padding: 28px;
	border: 1px dashed #cfdee7;
	border-radius: 13px;
	color: #708798;
	text-align: center;
}

@media (max-width: 1050px) {
	.community-showcase__recent-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.community-showcase {
		padding: 20px;
	}

	.community-showcase__featured {
		grid-template-columns: 1fr;
	}

	.community-profile__cover {
		height: 64px;
	}
}

@media (max-width: 560px) {
	.community-showcase {
		padding: 16px;
		border-radius: 14px;
	}

	.community-showcase__recent-list {
		display: flex;
		margin-right: -16px;
		padding-right: 16px;
		overflow-x: auto;
		scroll-snap-type: x proximity;
	}

	.community-member {
		flex: 0 0 145px;
		scroll-snap-align: start;
	}
}
