.stph-stores-wrapper {
	margin: 24px 0 10px;
}

.stph-stores-notice {
	padding: 20px 22px;
	border: 1px solid #e5e7eb;
	border-radius: 18px;
	background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.stph-stores-title {
	margin: 0 0 8px;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 700;
	color: #0f172a;
}

.stph-stores-message {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #475569;
}

.stph-stores-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 16px;
	margin-top: 18px;
}

.stph-stores-card {
	height: 100%;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	background-color: #ffffff;
	box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.stph-stores-card:hover {
	transform: translateY(-3px);
	border-color: #3a7a1a;
	box-shadow: 0 16px 36px rgba(58, 122, 26, 0.08);
}

.stph-stores-card-link {
	display: flex;
	align-items: center;
	gap: 14px;
	height: 100%;
	padding: 16px;
	text-decoration: none;
}

.stph-stores-media {
	flex: 0 0 auto;
}

.stph-stores-logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 110px;
	height: 68px;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	background: #f8fafc;
	transition: border-color 0.2s ease;
}

.stph-stores-card:hover .stph-stores-logo-wrap {
	border-color: #3a7a1a;
}

.stph-stores-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 40px;
	font-size: 34px;
	line-height: 1;
	color: #0f172a;
}

.stph-stores-content {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.stph-stores-name {
	display: block;
	margin-bottom: 6px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	color: #0f172a;
	word-break: break-word;
	transition: color 0.2s ease;
}

.stph-stores-card:hover .stph-stores-name {
	color: #3a7a1a;
}

.stph-stores-count {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(58, 122, 26, 0.1);
	font-size: 13px;
	line-height: 1.3;
	font-weight: 600;
	color: #3a7a1a;
}

@media (max-width: 640px) {
	.stph-stores-card-link {
		align-items: flex-start;
	}

	.stph-stores-logo-wrap {
		width: 96px;
		height: 60px;
	}

	.stph-stores-logo {
		width: 90px;
		height: 40px;
	}
}