/* Stuart Recommended Instruments Widget */

.sri-wrapper {
	display: flex;
	flex-direction: column;
	gap: 0;
	background-color: #1e1e24;
	border-radius: 12px;
	overflow: hidden;
}

/* ── Row ── */
.sri-row {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 20px;
	border-bottom: 1px solid rgba(255,255,255,0.07);
}

.sri-row:last-child {
	border-bottom: none;
}

/* ── Icon box ── */
.sri-icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	min-width: 48px;
	background-color: #2a2a32;
	border-radius: 10px;
	flex-shrink: 0;
}

.sri-icon-box i,
.sri-icon-box svg {
	font-size: 20px;
	color: #e0304a;
	width: 20px;
	height: 20px;
}

/* ── Content ── */
.sri-content {
	flex: 1;
	min-width: 0;
}

.sri-title {
	margin: 0 0 4px;
	padding: 0;
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
}

.sri-description {
	margin: 0;
	padding: 0;
	font-size: 13px;
	color: #9090a0;
	line-height: 1.5;
}

/* ── Label ── */
.sri-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	flex-shrink: 0;
	background-color: #3a3a45;
	color: #ffffff;
	border: 1px solid transparent;
}

/* ── Responsive ── */
@media (max-width: 767px) {
	.sri-row {
		gap: 12px;
		padding: 14px 16px;
	}

	.sri-icon-box {
		width: 40px;
		height: 40px;
		min-width: 40px;
	}

	.sri-title {
		font-size: 14px;
	}

	.sri-description {
		font-size: 12px;
	}

	.sri-label {
		font-size: 10px;
		padding: 4px 9px;
	}
}
