/* ---------------------------------------- 
 *
 *	Single Manifesto Styles
 *
 * ---------------------------------------- */
 .single-manifesto figure img {
	width: auto;
	max-width: 100%;
}
.single-manifesto figure {
	margin-top: 40px;
	margin-bottom: 40px;
}
.single-manifesto p {
	margin: 0 0 25px;
}
.single-manifesto .manifesto-header {
	margin-top: 0;
	margin-bottom: 30px;
}

/* Footnotes
 * ---------------------------------------- */
.single-manifesto .chapter-footnotes,
.single-manifesto-policy .chapter-footnotes {
	position: relative;
	margin-top: 60px;
	padding-top: 30px;
	padding-bottom: 30px;
}
.single-manifesto .chapter-footnotes:before,
.single-manifesto-policy .chapter-footnotes:before {
	content: '';
	position: absolute;
	top: 0;
	width: 100%;
	height: 2px;
	background-color: var(--brand-black);
}
.single-manifesto .chapter-footnote,
.single-manifesto-policy .chapter-footnote {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px;
	margin-bottom: 20px;
}
.single-manifesto .chapter-footnote .footnote-number,
.single-manifesto-policy .chapter-footnote .footnote-number {
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	line-height: normal;
}
.single-manifesto .chapter-footnote .footnote-content > *,
.single-manifesto-policy .chapter-footnote .footnote-content > * {
	font-size: 14px;
	font-style: italic;
	font-weight: 400;
	line-height: normal;
	margin: 0;
}
.single-manifesto .chapter-footnote .footnote-content a,
.single-manifesto-policy .chapter-footnote .footnote-content a {
	word-break: break-word;
	color: var(--brand-orange) !important;
}

/* Same as sidebar styles but for accordion
 * ---------------------------------------- */
.single-manifesto .manifesto-chapters {
	border-top: 2px solid var(--brand-black);
	display: flex;
	flex-direction: column;
	margin-top: 40px;
	padding-top: 40px;
}
.single-manifesto .manifesto-chapters .custom-accordion .accordion-header {
	background-color: var(--brand-orange);
	border-radius: 5px;
	color: var(--brand-white);
	min-height: 150px;
	height: 1px;
	margin-bottom: 10px;
	display: flex;
	font-size: 28px;
	font-style: normal;
	font-weight: 800;
	line-height: 42px; /* 150% */
}
.single-manifesto .manifesto-chapters .custom-accordion .accordion-header.active,
.single-manifesto .manifesto-chapters .custom-accordion .accordion-header:hover,
.single-manifesto .manifesto-chapters .custom-accordion .accordion-header:active {
	background-color: #C15730;
}
.single-manifesto .manifesto-chapters .custom-accordion .accordion-header .number {
	background-color: #C15730;
	flex: 0 0 80px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	color: var(--brand-white);
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	height: 100%;
	padding: 13px 0 10px;
}
.single-manifesto .manifesto-chapters .custom-accordion .accordion-header > .content {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	justify-content: center;
	padding: 15px !important;
}
.single-manifesto .manifesto-chapters .custom-accordion .accordion-header .content .title {
	flex-grow: 1;
	line-height: 1.4; /* 114.286% */
}
.single-manifesto .manifesto-chapters .custom-accordion .accordion-header .content .toggle {
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 20px; /* 142.857% */
	text-transform: uppercase;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 4px;
}
.single-manifesto .manifesto-chapters .custom-accordion .accordion-header .content .toggle span {
	line-height: 1;
}
.single-manifesto .manifesto-chapters .custom-accordion .accordion-header .content .toggle .icon {
	border-radius: 5px;
	background-color: var(--brand-white);
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--brand-orange);
	font-size: 16px;
}
.single-manifesto .manifesto-chapters .custom-accordion .accordion-inner .content {
	padding: 13px 0 10px;
}



/* 
 *
 *	MOBILE
 *
 */
@media screen and (max-width: 768px) {

	.single-manifesto .manifesto-chapters .custom-accordion .accordion-header {
		font-size: 1rem;
		line-height: 1.3; /* 150% */
	}
	.single-manifesto .manifesto-chapters .custom-accordion .accordion-header .number {
		align-items: center;
		flex: 0 0 55px;
	}
	.single-manifesto .manifesto-chapters .custom-accordion .accordion-header > .content {
		grid-template-columns: repeat(2, 1fr);
		align-items: center;
		padding: 16px 15px 15px !important;
	}
	.single-manifesto .manifesto-chapters .custom-accordion .accordion-header .content .toggle {
		justify-content: flex-end;
	}
	.single-manifesto .manifesto-chapters .custom-accordion .accordion-header .content .toggle span {
		display: none;
	}
	.single-manifesto .manifesto-chapters .custom-accordion .accordion-header {
		min-height: auto;
		height: auto;
	}
	.single-manifesto .manifesto-chapters .custom-accordion .accordion-header .number {
		height: auto;
	}
	

}