/* Partners Page Sections */

/* Hero Section */
.page-partners .page-hero {
	position: relative;
	min-height: 600px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.page-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 0;
}

.page-hero.partners-hero {
	margin-top: -157px;
	padding-top: 157px;
}

.page-hero .hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(26, 58, 95, 0.65) 0%, rgba(16, 42, 74, 0.7) 100%);
	z-index: 1;
}

.page-hero .container {
	position: relative;
	z-index: 2;
}

.page-hero .hero-content {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	text-align: center;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.page-hero-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.02em;
	font-family: "Merriweather", serif;
}

.page-hero-desc {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.92);
	margin: 0 auto;
	max-width: 640px;
	line-height: 1.6;
}

.page-hero .hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	margin-top: 1rem;
	justify-content: center;
}

.page-hero .btn {
	padding: 14px 28px;
	font-size: 1rem;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.page-hero .btn-primary-hero {
	background: linear-gradient(135deg, #d4af37 0%, #f0d98f 100%);
	color: #1a3a5f;
	box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.page-hero .btn-primary-hero:hover {
	background: linear-gradient(135deg, #f0d98f 0%, #d4af37 100%);
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.4);
	transform: translateY(-2px);
}

.page-hero .btn-outline-hero {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.6);
}

.page-hero .btn-outline-hero:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
}

@media (max-width: 1024px) {
	.page-hero.partners-hero {
		min-height: 500px;
	}

	.page-hero-title {
		font-size: 2.5rem;
	}

	.page-hero-desc {
		font-size: 1.1rem;
	}
}

@media (max-width: 768px) {
	.page-hero.partners-hero {
		margin-top: -157px;
		min-height: 420px;
	}

	.page-hero-title {
		font-size: 2.3rem;
	}

	.page-hero-desc {
		font-size: 1rem;
	}

	.page-hero .hero-buttons {
		flex-direction: column;
		gap: 0.75rem;
	}

	.page-hero .btn {
		width: 100%;
		padding: 12px 20px;
		font-size: 0.95rem;
	}
}

/* Partner Types Section */
.partners-types-section {
	padding: 5rem 1rem;
}

.partners-types-section .section-header {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 3.5rem;
}

.partners-types-section .section-header h2 {
	font-size: clamp(2.2rem, 3vw, 2.75rem);
	font-weight: 800;
	color: var(--care-inf-primary-dark);
	margin: 0 0 1rem;
}

.partners-types-section .section-header p {
	font-size: 1.05rem;
	color: rgba(26, 58, 95, 0.75);
	line-height: 1.7;
	margin: 0;
}

.partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.partner-type-card {
	background: #ffffff;
	border: 1px solid rgba(26, 58, 95, 0.08);
	border-radius: 16px;
	padding: 2rem;
	box-shadow: 0 10px 30px rgba(16, 42, 74, 0.05);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.partner-type-card:hover {
	box-shadow: 0 15px 40px rgba(16, 42, 74, 0.1);
	transform: translateY(-4px);
	border-color: rgba(26, 58, 95, 0.15);
}

.partner-type-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.06) 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--care-inf-accent);
}

.partner-type-card h3 {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 700;
	color: var(--care-inf-primary-dark);
}

.partner-type-card p {
	margin: 0;
	color: rgba(26, 58, 95, 0.75);
	line-height: 1.6;
	font-size: 0.95rem;
}

.btn-link {
	align-self: flex-start;
	color: var(--care-inf-accent);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-link:hover {
	color: var(--care-inf-primary-dark);
	transform: translateX(2px);
}

/* Founding Partners Section */
.founding-partners-section {
	padding: 5rem 0;
	background: linear-gradient(135deg, #ffffff 0%, #faf8f3 50%, #f5ede0 100%);
	margin-left: -100vw;
	margin-right: -100vw;
	padding-left: 100vw;
	padding-right: 100vw;
}

.founding-partners-section .container {
	padding: 0 1rem;
}

.founding-partners-section .section-header {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 3.5rem;
}

.section-kicker {
	font-size: 0.85rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--care-inf-accent);
	font-weight: 700;
	margin: 0 0 0.75rem;
	display: block;
}

.founding-partners-section .section-header h2 {
	font-size: clamp(2.2rem, 3vw, 2.75rem);
	font-weight: 800;
	color: var(--care-inf-primary-dark);
	margin: 0 0 1rem;
}

.founding-partners-section .section-header p {
	color: rgba(26, 58, 95, 0.75);
	font-size: 1.05rem;
	line-height: 1.7;
	margin: 0;
}

.founding-partners-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}

.founding-partner-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 2.5rem 2rem;
	box-shadow: 0 10px 30px rgba(16, 42, 74, 0.08);
	border: 2px solid rgba(212, 175, 55, 0.2);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.founding-partner-card:hover {
	box-shadow: 0 15px 40px rgba(16, 42, 74, 0.12);
	border-color: var(--care-inf-accent);
	transform: translateY(-4px);
}

.founding-partner-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #d4af37 0%, #f0d98f 100%);
}

.partner-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	width: fit-content;
	padding: 0.6rem 1rem;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
	border: 1px solid rgba(212, 175, 55, 0.3);
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--care-inf-accent);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.badge-icon {
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: currentColor;
}

.badge-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.partner-name {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--care-inf-primary-dark);
	margin: 0;
}

.partner-location {
	font-size: 0.95rem;
	color: rgba(26, 58, 95, 0.65);
	font-weight: 600;
	margin: 0;
}

.partner-description {
	flex-grow: 1;
	font-size: 0.95rem;
	color: rgba(26, 58, 95, 0.75);
	line-height: 1.65;
	margin: 0;
}

.founding-benefits {
	margin: 0;
	padding-left: 1.2rem;
	display: grid;
	gap: 0.85rem;
	color: rgba(26, 58, 95, 0.85);
	font-size: 1rem;
	line-height: 1.65;
}

.founding-benefits li::marker {
	color: var(--care-inf-accent);
}

.partner-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: rgba(26, 58, 95, 0.6);
}

.meta-icon {
	width: 16px;
	height: 16px;
	color: var(--care-inf-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.meta-icon svg {
	width: 100%;
	height: 100%;
	stroke-width: 2;
}

.partners-cta {
	text-align: center;
	padding: 3rem 1rem;
	margin: 2rem auto 0;
	max-width: 700px;
	background: rgba(212, 175, 55, 0.1);
	border: 2px solid var(--care-inf-accent);
	border-radius: 12px;
}

.partners-cta p {
	color: var(--care-inf-primary-dark);
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 500;
}

.founding-enrollment-status {
	margin-top: 1.25rem;
	margin-bottom: 0;
	font-size: 0.96rem;
	line-height: 1.6;
	color: rgba(26, 58, 95, 0.9);
	font-weight: 700;
}

@media (max-width: 1024px) {
	.partners-grid,
	.founding-partners-grid {
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	}
}

@media (max-width: 768px) {
	.partners-types-section,
	.founding-partners-section {
		padding: 3.5rem 1rem;
	}

	.partners-types-section .section-header,
	.founding-partners-section .section-header {
		margin-bottom: 2.5rem;
	}

	.partners-types-section .section-header h2,
	.founding-partners-section .section-header h2 {
		font-size: 1.75rem;
	}

	.partner-type-card,
	.founding-partner-card {
		padding: 1.75rem 1.5rem;
	}

	.partner-name {
		font-size: 1.25rem;
	}
}
