.fc-5133-grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 12px;
	align-items: stretch;
}

@media (min-width: 768px) {
	.fc-5133-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.fc-5133-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.fc-5133-card {
	padding: 18px;
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: transform 0.3s ease;
	box-sizing: border-box;
}

.fc-5133-card:hover {
	transform: translateY(-2px);
}

.fc-5133-icon-wrapper {
	width: 45px;
	height: 46px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 9px;
}

.fc-5133-icon-wrapper svg {
	width: 20px;
	height: 20px;
}

.fc-5133-icon-wrapper i {
	font-size: 20px;
}

.fc-5133-title {
	font-size: 16px;
	font-weight: 700;
	margin: 9px 0 0 0;
	line-height: 1.3;
}

.fc-5133-desc {
	font-size: 12px;
	line-height: 1.5;
	margin: 5px 0 12px 0;
	flex-grow: 1;
}

.fc-5133-link {
	font-size: 12px;
	font-weight: 600;
	text-decoration: none;
	margin-top: auto;
	display: inline-block;
	transition: opacity 0.2s ease;
	padding: 0;
	background: transparent;
	border: none;
}

.fc-5133-link:hover {
	opacity: 0.8;
}

/* Light Theme */
.fc-5133-theme-light {
	background-color: #FFFFFF;
	box-shadow: 0px 3px 12px 0px rgba(0,0,0,0.08);
}

.fc-5133-theme-light .fc-5133-icon-wrapper {
	background-color: #F2F2F5;
	color: #1A1F5E;
}

.fc-5133-theme-light .fc-5133-icon-wrapper svg {
	fill: #1A1F5E;
}

.fc-5133-theme-light .fc-5133-title {
	color: #1A1F5E;
}

.fc-5133-theme-light .fc-5133-desc {
	color: #6B7280;
}

.fc-5133-theme-light .fc-5133-link {
	color: #3B4EC8;
}

/* Dark Theme */
.fc-5133-theme-dark {
	background-color: #1A2280;
	box-shadow: 0px 6px 20px 0px rgba(26,34,128,0.35);
}

.fc-5133-theme-dark .fc-5133-icon-wrapper {
	background-color: #F2F2F5;
	color: #1A1F5E;
}

.fc-5133-theme-dark .fc-5133-icon-wrapper svg {
	fill: #1A1F5E;
}

.fc-5133-theme-dark .fc-5133-title {
	color: #FFFFFF;
}

.fc-5133-theme-dark .fc-5133-desc {
	color: #C7D2FE;
}

.fc-5133-theme-dark .fc-5133-link {
	color: #FFFFFF;
}