.see-more-wrapper * {
	font-family: var(--e-global-typography-primary-font-family);
}

.see-more-content-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.see-more-content-container:not(.first) {
	padding-top: 4em;
}

.see-more-btn {
	position: relative;
	display: flex;
	align-items: center;
	background: transparent;
	color: var(--e-global-color-primary);
	cursor: pointer;
}

.project-analysis .see-more-btn {
	justify-content: center;
}

.see-more-btn:after {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	background: var(--e-global-color-primary);
	margin: .25em 0 0 1.5em;
}

.item-title {
	font-family: var(--e-global-typography-text-font-family);
	font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
	font-weight: 700;
	color: var(--e-global-color-primary);
	line-height: 115%;
}

.see-more-text {
	font-size: var(--main-text-body);
	font-weight: 300;
	overflow: hidden;
	opacity: 0;
	max-height: 0;
	transition: all 0.3s;
}

.see-more-mobile-text {
	display: none;
}

.see-more-text--is-shown {
	max-height: 100%;
	opacity: 1;
	transition: max-height 0.3s, opacity 0.3s 0.3s;
}

.see-more-content-container .item-content {
	font-size: var(--main-text-body);
	font-weight: 300;
	padding-top: 0.5em;
}

.see-more-text p,
.see-more-content-container .item-content p {
	font-family: var(--e-global-typography-text-font-family);
	font-size: 16px;
	font-weight: 500;
	color: rgba(21,11,102,0.8);
	line-height: 26px;
	margin-bottom: 0.5em;
}

.see-more-btn-text {
	display: none;
}

.see-more-btn-text--is-active {
	display: block;
}

.item-content-mobile {
	display: none;
}