$spacing: 1.5em;

.entry-content {

	> * {
		margin-bottom: $spacing;

		&:first-child {
			margin-top: 0 !important;
		}

		&:last-child {
			margin-bottom: 0 !important;
		}
	}

	p {
		margin-bottom: $spacing;

		&:last-child {
			margin-bottom: 0;
		}
	}

	h1, h2, h3, h4, h5, h6 {
		margin-top: calc(10px + 1.2em);
		margin-bottom: calc(10px + 0.2em);

		+ * {
			margin-top: 0;
		}
	}

	li {
		margin-bottom: 0.5em;

		> ul, > ol {
			margin-top: 0.7em;
			margin-bottom: 0.7em;
		}
	}

	.alignwide, .alignfull {
		margin-top: calc(40px + 0.25vw);
		margin-bottom: calc(40px + 0.25vw);
	}


	// clear fix for image alignment
	> p:last-child:after {
		content: '';
		clear: both;
		display: block;
	}

}