.rfzj_simple_card {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 1rem;
	border: 1px solid var(--rfj-color-border, #e6eaf0);
	border-radius: var(--rfj-radius-md, 6px);
	background: var(--rfj-color-bg-panel, #fff);
	transition: all 0.25s ease;
	overflow: hidden;
}

.rfzj_simple_card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(135deg, #ff6b6b 0%, #d1191a 40%, #b81c1c 60%, #ff8e53 100%);
	opacity: 0;
	transition: opacity 0.25s ease;
}

.rfzj_simple_card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(20, 32, 51, 0.08);
	border-color: var(--rfj-color-primary, #d1191a);
}

.rfzj_simple_card:hover::before {
	opacity: 1;
}

.rfzj_simple_card__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.rfzj_simple_card__logo {
	width: 100%;
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	transition: transform 0.25s ease;
}

.rfzj_simple_card:hover .rfzj_simple_card__logo {
	transform: scale(1.05);
}

.rfzj_simple_card__logo img {
	max-width: 120px;
	max-height: 48px;
	width: auto;
	height: auto;
	object-fit: contain;
	background-color: #fff;
	border-radius: 4px;
	padding: 4px;
}

.rfzj_simple_card__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 8px;
	background: var(--rfj-color-bg-soft, #f5f7fb);
	color: var(--rfj-color-text-secondary, #4f5b6c);
	font-size: 1.25rem;
	font-weight: 700;
}

.rfzj_simple_card__title {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-primary, #181f2a);
	text-align: center;
	line-height: 1.4;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
	margin: 0;
	transition: color 0.25s ease;
}

.rfzj_simple_card:hover .rfzj_simple_card__title {
	color: var(--rfj-color-primary, #d1191a);
}

.rfzj_simple_card--software::before {
	background: linear-gradient(135deg, #4f81ff 0%, #6366f1 50%, #8b5cf6 100%);
}

.rfzj_simple_card--software:hover {
	border-color: #4f81ff;
}

.rfzj_simple_card--software:hover .rfzj_simple_card__title {
	color: #4f81ff;
}

.rfzj_simple_card_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

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

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