/*
 * Disease Linker Styling - Patient Stories <-> Diseases
 */

.ac-story-disease-chips {
	margin: 24px 0;
	font-family: 'Montserrat', sans-serif;
}

.ac-story-disease-label {
	font-weight: 700;
	font-size: 14px;
	color: #2c3e50;
	margin-bottom: 10px;
	display: block;
}

.ac-story-disease-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.ac-disease-chip {
	display: inline-block;
	background-color: #f4f8f5;
	color: #008f39; /* ARGE CANNA Green */
	border: 1px solid #d9ede1;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.ac-disease-chip:hover {
	background-color: #008f39;
	color: #ffffff !important;
	border-color: #008f39;
	box-shadow: 0 4px 12px rgba(0, 143, 57, 0.2);
	transform: translateY(-2px);
}
