/**
 * @package    hubzero-cms
 * @copyright  Copyright (c) 2005-2020 The Regents of the University of California.
 * @license    http://opensource.org/licenses/MIT MIT
 */

/* About page */
	.tagline {
		font-size: 1.8em;
		line-height: 1.2;
		margin: 1em 0;
		padding: 0;
		text-align: center;
	}
	.about-odd h2,
	.about-even h2 {
		margin-top: 0.5em;
	}
	.about-odd {
		background: #e9e9e9;
		background: rgba(0, 0, 0, 0.05);
		border: none;
		position: relative;
		padding: 100px 20px 20px 20px;
		margin: 0 -20px;
	}
	.about-even {
		border: none;
		position: relative;
		padding: 100px 20px 20px 20px;
		margin: 0 -20px;
	}
	.about-odd:after,
	.about-even:after {
		content: "";
		display: block;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 30px;
		left: 0;
		right: 0;
		text-align: center;
		z-index: 100;
		font-family: 'Fontcons';
		font-size: 50px;
		line-height: 1;
		color: #bbb;
	}
	.about-odd.posts:after {
		content: "\f08c";
	}
	.about-even.collections:after {
		content: "\f005";
	}
	.about-odd.following:after {
		content: "\f06e";
	}
	.about-even.unfollowing:after {
		content: "\f070";
	}
	.about-odd.livefeed:after {
		content: "\f056";
	}

@media (min-width: 40em) {
	.about-odd {
		padding: 20px 20px 20px 50%;
	}
	.about-even {
		padding: 20px 50% 20px 20px;
	}
	.about-odd:after,
	.about-even:after {
		left: 17.5%;
		right: auto;
		font-size: 150px;
	}
	.about-even:after {
		left: auto;
		right: 17.5%;
	}
}