/**
 * Partner With Us Widget Styles
 */

/* Main Wrapper */
.mc-partner-wrapper {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	text-align: center;
}

/* Content Container */
.mc-partner-content {
	width: 100%;
	/* Max-width handled by control */
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Section Title */
.mc-partner-title {
	margin: 0 0 20px 0;
	line-height: 1.2;
}

/* Intro Text */
.mc-partner-intro {
	margin: 0 0 25px 0;
	line-height: 1.6;
	font-size: 1.1em;
}

/* List Styling */
.mc-partner-list {
	list-style: none;
	padding: 0;
	margin: 0 0 40px 0;
	text-align: left; /* Keep list items left-aligned for readability even if container is centered */
	display: inline-block; /* Allows text-align center on parent to center this block */
}

.mc-partner-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	line-height: 1.5;
}

.mc-partner-list li:last-child {
	margin-bottom: 0;
}

/* Custom Dash Bullet */
.mc-partner-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px; /* Aligns with first line of text */
	width: 12px;
	height: 2px;
	/* Background color set by control */
}

/* Button Wrapper */
.mc-partner-btn-wrapper {
	margin-top: 10px;
}

/* Button Styling */
.mc-partner-btn {
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	line-height: 1;
}

.mc-partner-btn:hover {
	opacity: 0.9;
	transform: translateY(-2px);
}
