.fc-channels {
	padding: 56px 0 48px;
	background:
		radial-gradient(circle at 50% 0%, rgba(0, 191, 106, 0.05), transparent 42%),
		#ffffff;
}

.fc-channels .fc-container {
	width: min(100% - 56px, 1360px);
}

.fc-channels .fc-section__header {
	max-width: 720px;
	margin: 0 auto 30px;
	text-align: center;
}

.fc-channels .fc-eyebrow {
	margin-bottom: 9px;
	color: var(--fc-green, #00bf6a);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0;
}

.fc-channels .fc-section__header h2 {
	margin: 0 0 12px;
	font-size: clamp(28px, 2.15vw, 32px);
	font-weight: 700;
	line-height: 1.18;
	letter-spacing: 0;
}

.fc-channels .fc-section__header p {
	margin: 0 auto;
	max-width: 540px;
	color: var(--fc-muted);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.58;
}

.fc-channels__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	min-width: 0;
}

.fc-channel {
	display: flex;
	min-width: 0;
	min-height: 296px;
	flex-direction: column;
	align-items: center;
	padding: 24px 20px 19px;
	border: 1px solid rgba(15, 23, 42, 0.08);
	border-radius: 12px;
	color: var(--fc-ink);
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
	text-align: center;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fc-channel:hover {
	border-color: rgba(0, 191, 106, 0.28);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
	transform: translateY(-2px);
}

.fc-channel__icon {
	display: inline-flex;
	width: 66px;
	height: 66px;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border: 1px solid color-mix(in srgb, var(--fc-green, #00bf6a) 44%, transparent);
	border-radius: 999px;
	color: var(--fc-green-dark, #005931);
	background: #ffffff;
}

.fc-channel__icon svg {
	width: 30px;
	height: 30px;
	stroke-width: 1.45;
}

.fc-channel h3 {
	max-width: 100%;
	margin: 0;
	color: var(--fc-ink);
	font-size: 16.5px;
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}

.fc-channel p {
	min-height: 46px;
	margin: 12px 0 19px;
	color: #5f6772;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.55;
	overflow-wrap: anywhere;
}

.fc-channel__button {
	display: inline-flex;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	min-height: 40px;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: auto;
	padding: 0 15px;
	border-radius: 25px;
	color: #ffffff !important;
	background: linear-gradient(135deg, var(--fc-green, #00bf6a) 0%, #00a85c 100%);
	border: 0;
	box-shadow: 0 12px 24px rgba(0, 191, 106, 0.22);
	cursor: pointer;
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none;
	transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fc-channel__button span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.fc-channel__button:hover {
	color: #ffffff !important;
	background: linear-gradient(135deg, #00ad61 0%, #008f50 100%);
	box-shadow: 0 14px 28px rgba(0, 159, 90, 0.28);
	transform: translateY(-1px);
}

.fc-channel__button:focus-visible {
	outline: 3px solid rgba(0, 191, 106, 0.25);
	outline-offset: 3px;
}

.fc-channel__button svg {
	width: 17px;
	height: 17px;
	flex: 0 0 auto;
}

.fc-channel__note {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin-top: 15px;
	color: #7b828c;
	font-size: 12px;
	font-weight: 500;
	line-height: 1.3;
}

.fc-channel__note svg {
	width: 15px;
	height: 15px;
	color: #8b939d;
}

@media (max-width: 1100px) {
	.fc-channels__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fc-channel {
		min-height: 286px;
	}
}

@media (max-width: 640px) {
	.fc-channels {
		padding: 36px 0 34px;
	}

	.fc-channels .fc-container {
		width: min(100% - 30px, 720px);
	}

	.fc-channels .fc-section__header {
		margin-bottom: 22px;
	}

	.fc-channels .fc-section__header h2 {
		font-size: 24px;
		line-height: 1.2;
	}

	.fc-channels .fc-section__header p {
		font-size: 14.5px;
	}

	.fc-channels__grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.fc-channel {
		display: grid;
		min-height: 0;
		grid-template-columns: 46px minmax(0, 1fr);
		grid-template-areas:
			"icon title"
			"icon desc"
			"button button"
			"note note";
		column-gap: 14px;
		align-items: center;
		padding: 17px 16px 15px;
		border-radius: 10px;
		text-align: left;
	}

	.fc-channel__icon {
		grid-area: icon;
		width: 46px;
		height: 46px;
		margin: 0;
	}

	.fc-channel__icon svg {
		width: 22px;
		height: 22px;
	}

	.fc-channel h3 {
		grid-area: title;
		font-size: 15.5px;
	}

	.fc-channel p {
		grid-area: desc;
		min-height: 0;
		margin: 6px 0 14px;
		font-size: 13px;
	}

	.fc-channel__button {
		grid-area: button;
		min-height: 38px;
		margin-top: 0;
		font-size: 13px;
	}

	.fc-channel__note {
		grid-area: note;
		justify-content: center;
		margin-top: 12px;
		text-align: center;
	}
}
