// Our Team
div.our-team {
	color: $cmo-purple-dark;
	// color: white;
	font: 300 1em $header-font-family;
	text-align: center;
	padding: 2em 1em;

	h2 {
		color: $cmo-purple-light;
		font: normal 1.3em/1.2 $header-font-family;
		line-height: 1;
		text-transform: uppercase;
		margin-top: 0;

		strong {
		 	display: block;
		 	font-size: 1.5em;
			margin-bottom: 10px;
		}
	}

	.flex {
		display: flex;
		align-items: flex-start;
		justify-content: center;
		flex-wrap: wrap;

		.item {
			flex: 0 0 33%;
			padding: 1em;
			text-align: center;

			@media only screen and ( min-width:600px ) {
				padding: 2em;
				max-width: 400px;
			}

			img {
				max-width: 180px;
				border-radius: 100%;
				margin: 0 auto 1rem;
			}

			p.title {
				font: 700 1.2em $base-font-family;
				margin-bottom: 1em;
			}

			a {
				text-decoration: underline;
			}
		}
	}
}