// Main content
html, body {
	width: 100%;
	height: 100%;
}
body {
	font: $font;
	-webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.container {
	@include media-breakpoint-up(xl) {
		width: 1440px;
	};
}
.content {
  padding-top: $header-height + $gutter;
	@include media-breakpoint-up(lg) {
		padding-top: $gutter * 8;
	}
}
// Post and page entry
.heading {
	.title {
		margin-bottom: $gutter;
	}
	.description {
		p {
			margin-bottom: 0;
		}
	}
}
.entry-category {

}
.entry-content {
  a {
    text-decoration: underline;
  }
}
// Responsive images
img, figure, iframe {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: $gutter * 2;
  }
// Anchor states
a {
	&:link, &:visited {
		color: $theme-colour;
    text-decoration: none;
	}
	&.genericon {
    font-size: calc-em($icon-size);
  }
}
.alert {
  text-transform: uppercase;
	margin-bottom: 0;
  a {
    color: $brand-primary
  }
}
