/* ------------------------------------------------------------ *\
    Section Quote Featured
\* ------------------------------------------------------------ */

.section-quote-featured {
	--shell-gutter: 4rem;
	--shell-max-width: 121.4rem;
	--headings-color: currentColor;
	--section-quote-featured-bg-bg: rgb(25, 62, 92);
	--section-quote-featured-bg-opacity: 0.7;
min-height: calc(100vh - 98px) !important;
	position: relative;
	isolation: isolate;
	color: #fff;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
  

	@media (max-width: 1023px) {
		& {
			--shell-gutter: 2.4rem;
		}
	}

	@media (max-width: 767px) {
		& {
			--shell-gutter: 1.6rem;
		}
	}

	& .section__inner {
		max-width: 79.1rem;

		@media (max-width: 1023px) {
			& {
				max-width: 64rem;
			}
		}
	}

	& .section__quote {
		max-width: 60rem;
		margin-bottom: 1.5em;

		>* {
			font-family: var(--ff-secondary);
			font-weight: 300;
			line-height: 1.5385;
		}

		&:last-child {
			margin-bottom: 0;
		}
	}

	& .section__entry {
		margin-bottom: 5rem;

		@media (max-width: 1023px) {
			& {
				margin-bottom: 8rem;
			}
		}

		&:last-child {
			margin-bottom: 0;
		}
	}

	& .section__actions {
		margin-bottom: 2.3rem;

		&:last-child {
			margin-bottom: 0;
		}
	}

	& .section__foot {
		--gap: 8rem;

		display: flex;
		gap: var(--gap);
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		padding-top: 3rem;
		list-style: none;

		@media (max-width: 1023px) {
			& {
				--gap: 5.6rem;
			}
		}

		@media (max-width: 767px) {
			& {
				--gap: 2.4rem;

				flex-direction: column;
			}
		}

		&>li:not(:first-child) {
			border-left: 1px solid rgba(255, 255, 255, 0.1);
			padding-left: var(--gap);

			@media (max-width: 767px) {
				& {
					border-top: 1px solid rgba(255, 255, 255, 0.1);
					padding-top: var(--gap);
					border-left: none;
					padding-left: 0;
				}
			}
		}
	}

	& .section__background {
		position: absolute;
		inset: 0;
		z-index: -1;

		@media (max-width: 1023px) {
			background-position: var(--mobile-pos-x) var(--mobile-pos-y) !important;
		}

		&:before {
			content: '';
			position: absolute;
			inset: 9.4rem 0 0;
			background-image: linear-gradient(360deg, #000 0%, transparent 100%);
		}

		& figure {
			width: 100%;
			height: 100%;

			& img {
				width: 100%;
				height: 100%;
				object-fit: cover;
				object-position: top;
			}
		}
	}

	& .section__disclosure {
		margin-top: 3rem;
		font-size: .9rem;
		line-height: 1.667;
		font-weight: 500;
	}
}

/* ------------------------------------------------------------ *\
    Ratings Google
\* ------------------------------------------------------------ */

.ratings-google {
	max-width: 34.8rem;

	& .ratings__stars {
		margin-bottom: 1.5rem;
	}

	& .ratings__text {
		margin-bottom: 1.2rem;
		font-size: 1.8rem;
		line-height: 1.5556;
		letter-spacing: -0.02em;

		@media (max-width: 1023px) {
			& {
				font-size: 1.6rem;
			}
		}

		&:last-child {
			margin-bottom: 0;
		}
	}
}

/* ------------------------------------------------------------ *\
    Stars
\* ------------------------------------------------------------ */

.stars {
	display: flex;
	gap: 0.5rem;
	list-style: none;

	& li {
		display: flex;

		& .icon-star-solid {
			--icon-size: 4.1rem;

			@media (max-width: 1023px) {
				& {
					--icon-size: 3.6rem;
				}
			}
		}
	}
}

/* ------------------------------------------------------------ *\
    Stat
\* ------------------------------------------------------------ */

.stat {
	max-width: 32.8rem;

	& .stat__title {
		margin-bottom: 0.2rem;
		font-weight: 600;
		font-size: 3.6rem;
		letter-spacing: -0.02em;

		@media (max-width: 1023px) {
			& {
				font-size: 2.8rem;
			}
		}

		&:last-child {
			margin-bottom: 0;
		}
	}

	& .stat__text {
		margin-bottom: 1.2rem;
		font-size: 1.8rem;
		line-height: 1.5556;
		letter-spacing: -0.02em;

		@media (max-width: 1023px) {
			& {
				font-size: 1.6rem;
			}
		}

		&:last-child {
			margin-bottom: 0;
		}
	}
}

.shell {
      flex-grow: 1;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;

/* ------------------------------------------------------------ *\
    Audio
\* ------------------------------------------------------------ */

.audio {
	--play-opacity: 1;
	--pause-opacity: 0;

	display: flex;
	align-items: center;
	gap: 1.4rem;
	cursor: pointer;

	& .audio__toggle {
		display: flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 1.3rem;

		&>span {
			display: inline-grid;
			border: none;
			background: none;

			& :where(.audio__play, .audio__pause) {
				--icon-size: 3.7rem;

				grid-row: 1 / 2;
				grid-column: 1 / 2;
				transition: opacity 0.2s linear;
			}

			& .audio__play {
				opacity: var(--play-opacity);
			}

			& .audio__pause {
				opacity: var(--pause-opacity);
			}
		}
	}

	& .audio__label {
		font-size: 1.8rem;
		line-height: 1.5556;
		letter-spacing: -0.02em;
		text-decoration: underline;
	}

	&.playing {
		--play-opacity: 0;
		--pause-opacity: 1;
	}
}

/* ------------------------------------------------------------ *\
    Signature
\* ------------------------------------------------------------ */

.signature {
	& .signature__handwritten {
		display: block;
		margin-bottom: 0.25em;
		font-family: 'Meow Script';
		font-size: 4rem;
		line-height: 1;
		letter-spacing: -0.02em;
		/* text-decoration: underline; */

		@media (max-width: 1023px) {
			& {
				font-size: 3.2rem;
			}
		}

		@media (max-width: 767px) {
			& {
				font-size: 2.8rem;
			}
		}

		@media (max-width: 374px) {
			& {
				font-size: 2.4rem;
			}
		}

		&:last-child {
			margin-bottom: 0;
		}
	}

	& .signature__role {
		display: block;
		margin-bottom: 0;
		font-weight: 600;
		font-family: 'DM Sans';
		font-size: 1.5rem;
		line-height: 1.3333;
		letter-spacing: -0.02em;

		@media (max-width: 1023px) {
			& {
				font-size: 1.4rem;
			}
		}

		@media (max-width: 767px) {
			& {
				font-size: 1.3rem;
			}
		}

		@media (max-width: 374px) {
			& {
				font-size: 1.2rem;
			}
		}
	}
}