/* Team */
.is-pattern-team {}

.is-pattern-team .is-team-card {}

.is-pattern-team .is-team-card:nth-child(1) figure.wp-block-image {
	clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

.is-pattern-team .is-team-card:nth-child(2) figure.wp-block-image {
	clip-path: polygon(10% 0%, 95% 0%, 95% 100%, 0% 100%);
}

.is-pattern-team .is-team-card:nth-child(3) figure.wp-block-image {
	clip-path: polygon(5% 0, 90% 0, 100% 100%, 5% 100%);
}


/* Timeline */
.is-pattern-timeline {}
.is-pattern-timeline .is-timeline-number {}

.is-pattern-timeline > div:nth-child(even) .is-timeline-number {
	 clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);	
}

.is-pattern-timeline > div:nth-child(odd) .is-timeline-number {
	clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}

/* Centered Text */
.has-background-skewed-right {
	clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
}

.has-background-skewed-left {
	clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}

.is-overlapping-above {
	margin-top: -6rem !important;
}

@media screen and (max-width: 786px) {
	/* Team */
	.is-pattern-team {
		grid-template-columns: 1fr;
		row-gap: 2.5rem;
	}
	
	.is-pattern-team .is-team-card:nth-child(even) figure.wp-block-image {
		clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
	}
	
	.is-pattern-team .is-team-card:nth-child(odd) figure.wp-block-image {
		clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
	}
	
	/* Centered Text */
	.has-background-skewed-right {
		clip-path: polygon(0 0, 100% 2%, 100% 98%, 0% 100%);
	}

	.has-background-skewed-left {
		clip-path: polygon(0 2%, 100% 0, 100% 100%, 0 98%);
	}
	
	.is-overlapping-above {
		margin-top: -2rem !important;
	}
}