@media (max-width: 767px) {

	.item-content-mobile {
		display: block;
		font-weight: 300;
	}

	.see-more-mobile-text {
		display: block;
		font-weight: 300;
		overflow: hidden;
		opacity: 0;
		max-height: 0;
		transition: all 0.3s;
	}

	.see-more-mobile-text--is-shown {
		opacity: 1;
		transition: max-height 0.3s, opacity 0.3s 0.3s;
	}

}