.partner-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 48px;
}

.partner-card {
	background: #fff;
	padding: 32px;
	text-align: left;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-card);
	transition: var(--transition);
}

.partner-card:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-4px);
}

.partner-card h3 {
	font-family: var(--font-heading);
	color: #4a3b52;
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 12px;
}

.partner-card p {
	color: var(--color-text);
	font-size: 0.95rem;
	line-height: 1.6;
	font-weight: 500;
}

.partner-card-wide {
	grid-column: 1 / -1;
	display: flex;
	background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-card);
	transition: var(--transition);
}

.partner-card-wide:hover {
	box-shadow: var(--shadow-hover);
	transform: translateY(-4px);
}

.mcw-content {
	flex: 1.2;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mcw-content h3 {
	font-family: var(--font-heading);
	color: #fff;
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 12px;
}

.mcw-content p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1rem;
	line-height: 1.6;
	font-weight: 500;
}

.mcw-image {
	flex: 1;
	position: relative;
	min-height: 250px;
}

.mcw-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Align container width with vesak-theme */
#partnership .container {
    max-width: 900px;
    margin: 0 auto;
}

#partnership .section-title {
    font-size: 3rem;
    margin-bottom: 40px;
}

.mcw-img--right {
    object-position: 90% 10%;
}

/* Replaces: style="left: 70%; width: auto; height: 100%; object-position: 10% 10%"
   on second .mcw-image img */
.mcw-img--left {
	left: 70%; width: auto; height: 100%; object-position: 10% 10%;
}

.partnership-cta {
    margin-top: 50px;
}

/* Replaces long inline style on the CTA h4 */
.partnership-cta-title {
    font-family: var(--font-heading);
    color: #4a3b52;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}