/**
 * Article Suggestion Shortcode
 */

.t10v-article-suggestion {
	width: 100%;
	margin: 26px 0;
}

.t10v-article-suggestion__box {
	padding: 18px 22px;
	background: #fafafa;
	border-radius: 6px;
}

.t10v-article-suggestion__title {
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.4;
	color: #222;
}

.t10v-article-suggestion__list {
	margin: 0 0 16px 0;
	padding: 0;
	list-style: none;
}

.t10v-article-suggestion__list li {
	position: relative;
	margin: 0 0 7px;
	padding-left: 22px;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.55;
	color: #555;
}

.t10v-article-suggestion__list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #111;
	font-size: 13px;
	font-weight: 800;
}

.t10v-article-suggestion__more {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr);
	gap: 12px;
	align-items: flex-start;
	padding: 14px 16px;
	border: 1px solid #ff9b9b;
	border-radius: 6px;
	background: #fff;
}

.t10v-article-suggestion__more-label {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.45;
	color: #e50914;
}

.t10v-article-suggestion__more-links {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
}

.t10v-article-suggestion__more-links a {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.45;
	color: #2f65b8;
	text-decoration: none;
}

.t10v-article-suggestion__more-links a:hover {
	color: #e50914;
}

.t10v-article-suggestion__button-wrap {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

.t10v-article-suggestion__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 360px;
	min-height: 44px;
	padding: 10px 28px;
	border-radius: 4px;
	background: #e50914;
	color: #fff !important;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	box-shadow: 0 3px 10px rgba(229, 9, 20, 0.22);
	transition:
		background 0.22s ease,
		transform 0.22s ease,
		box-shadow 0.22s ease;
}

.t10v-article-suggestion__button:hover {
	background: #c9000a;
	color: #fff !important;
	transform: translateY(-1px);
	box-shadow: 0 5px 16px rgba(229, 9, 20, 0.28);
}

.t10v-article-suggestion__button span {
	font-size: 16px;
	line-height: 1;
}

/* Mobile */
@media (max-width: 640px) {
	.t10v-article-suggestion__box {
		padding: 16px;
	}

	.t10v-article-suggestion__more {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.t10v-article-suggestion__button {
		width: 100%;
		min-width: 0;
	}
}