#wrapper .fw-title {
	--fw-dark: #2d2d2d;
	--fw-shadow: #e7e7e7;

	.title {
		.hero-card {
			margin: 0px;

			.hero-card__primary-image-container {
				background-color: var(--fw-dark);
			}

			.hero-card__primary .hero-card__primary-title {
				font-size: 32px;
				line-height: 1.25em;
			}

			.hero-card__secondary {
				width: auto;
				background-color: var(--fw-shadow);
			}

			.caption-text li {
				font-size: 1rem;
			}
		}

		.hero-title-component {
			.hero-title-row--compaign {
				background: #fff;

				@media (width >= 768px) {
					background: none;
				}
			}

			h1 {
				color: #a32020;
			}

			p {
				color: #000;
			}
		}

		.summary-text {
			background-color: var(--fw-shadow);
			box-shadow: 0px calc(-50vw + 20px) 0px 50vw var(--fw-shadow);

			p {
				margin: 5px 0px 0px 0px;
				font-size: 1rem;
				line-height: 1.05em;
				color: #000;
			}

			ul.caption-text {
				display: flex;
				flex-flow: row;
				gap: 5px;
				margin: 0px;
				padding: 0px;
				list-style-type: none;

				& > li {
					display: flex;
					flex-flow: row;
					align-items: center;
					gap: 5px;
					margin: 0px;
					padding: 0px;
					font-size: 1rem;
					color: #000;

					&::before {
						display: none;
					}

					&:not(:last-of-type)::after {
						content: "";
						display: block;
						margin: 0px;
						width: 1px;
						height: 0.9rem;
						background: #000;
					}
				}
			}
		}
	}
}

#wrapper .fw-column-image {
	--fw-text-color: #fff;

	color: var(--fw-text-color);
	background-color: #464646;

	.parsys > .columnControl {
		margin: 0px;

		& > .parsys_column {
			margin: auto;
			width: 100%;
			max-width: 1800px;

			& > .parsys_column {
				padding: 0px;
			}
		}

		.text-component {
			:is(h2, h3, h4, h5, h6, p, em, a) {
				color: var(--fw-text-color);
			}

			ul > li::before {
				background-color: var(--fw-text-color);
			}
		}

		.quote-component blockquote p {
			padding: 0px;
			color: var(--fw-text-color);
			border: none;
		}
		
		.cmp-container {
			display: flex;
			flex-flow: column;
			justify-content: center;
			height: 100%;

				& > .image {
				margin: 0px;
				height: 100%;
				line-height: 0px;

				* {
					height: 100%;
				}

				img {
					object-fit: cover;
				}
			}
		}
	}
}

#wrapper .fw-accordion {
	.accordion {
		counter-reset: fw-accordion;

		.cmp-accordion {
			width: auto;
		}

		.cmp-accordion__item {
			.cmp-accordion__header .cmp-accordion__title::before {
				content: counter(fw-accordion);
				display: inline-flex;
				justify-content: center;
				align-items: center;
				margin-right: 20px;
				width: 40px;
				height: 40px;
				border: 1px solid #000;
				counter-increment: fw-accordion;
			}
		}
	}
}

#wrapper .fw-note {
	--fw-text-color: #fff;

	color: var(--fw-text-color);
	background-color: #464646;

	.text-component {
		width: auto;

		p {
			font-size: 1.25rem;
		}

		:is(h2, h3, h4, h5, h6, p, em, a) {
			color: var(--fw-text-color);
		}
	}
}

#wrapper .fw-social-share {
	display: flex;
	flex-direction: row;
	gap: 10px;
	width: auto;
	max-width: 38px;
	background-color: transparent;

	@media screen and (orientation:portrait) {
		margin-bottom: 10px;
	}

	.social-icons {
		display: flex;
		flex-shrink: 0;
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: 10px;
		width: 0px;
		height: 34px;
		background-color: transparent;
		transition: width .4s ease-in-out;
		overflow: hidden;

		&.expand {
			width: 90px;
		}

		a {
			img {
				margin: 0px;
				width: 20px;
				height: 20px;
			}
		}
	}

	.share-icon {
		display: flex;
		flex-shrink: 0;
		align-items: center;
		justify-content: center;
		width: 30px;
		height: 30px;
		background-color: #a32020;
		border-radius: 50%;
		cursor: pointer;

		.hero-title-component & {
			background-color: #000;
		}

		img {
			margin: 0px;
		}
	}
}
