/*
Theme Name: V4.6
Theme URI: http://phillipwong.net
Description: Framework for phw.co.nz.
Author: Phillip Wong
Author URI: http://phillipwong.net
Version: 4.6
License: Copyright Phillip Wong.  All rights reserved.
*/

/***** RESET *****/
/* http://meyerweb.com/eric/tools/css/reset/   v2.0 | 20110126   License: none (public domain) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {margin:0; padding:0; border:0; /*font-size:100%;*/ font:inherit; vertical-align:baseline}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {display:block}
body {line-height:1}
ol, ul {list-style:none}
blockquote, q {quotes:none}
blockquote:before, blockquote:after, q:before, q:after {content:''; content:none}
table {border-collapse:collapse; border-spacing:0}

/***** Universal *****/
* { -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box}
img {-ms-interpolation-mode:bicubic}

/***** GENERAL *****/
:root {
	--link: #f1893a;
	--link_border: #ffa561;
	--sans_serif_fontstack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	--serif_fontstack: lora, serif;
}
html {
	-webkit-text-size-adjust: none;
	font-synthesis: none;
	-moz-font-feature-settings: 'kern';
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	width: 100%;
}

h2,
h3,
h4,
h5,
h6,
li {
	color: #444;
	font-family: var(--sans_serif_fontstack);
	font-weight: 700;
	line-height: 1.625em;
}
h1,
li,
blockquote,
input,
label,
p,
blockquote {
	color: #444;
	font-family: var(--sans_serif_fontstack);
	font-weight:400;
	line-height: 1.625em;
}

h1 {
	font-size: 22px;
	line-height: 1.25em;
	text-align:center;
}
h2 {
	font-size: 17px;
}
h3 {
	font-size: 16px;
	font-weight: 600;
}
h4 {
	font-size: 15px;
}
p {
	font-size: 17px;
	margin-bottom: 1.625em
}
a {
	color: var(--link);
	text-decoration: none
}
input {
  font-size: 14px;
}
blockquote {
	color: #333;
}
strong {
	font-weight: 700
}
em,
i {
	font-style: italic
}
.center_text {
	text-align: center
}

.divider {
	padding: 1em 0;
	text-align: center
}
.divider span {
	background-color: #eee;
	border-radius: 6px;
	display: inline-block;
	height: 12px;
	margin: 0 2px;
	width: 12px
}

.edit-link {
	display: block;
	margin-top: 30px
}
.post-edit-link {
	background-color: #666;
	color: #fff;
	font-family: sans-serif;
	font-size: 14px;
	padding: 5px 10px;
}

/***** PAGE STRUCTURE *****/
.container {
	margin: 0 auto;
	max-width: 900px;
}

/***** HEADER *****/
header {
	min-height: 50px;
}
.header--bar {
	background-color: #fff;
	border-top: 3px solid #444;
	position: relative;
	z-index: 100;
}

header .container {
  height: 50px;
	position: relative;
}
.header--bar--personal {
	display: flex;
}
header .logo {
	align-items: center;
	display: inline-flex;
	padding: 0.5rem 0.75em;	
}
header .logo img {
	margin-right: 0.25rem;
	width: 40px;
}

header .logo h1 {
	color: #999;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}
header h1 span {
	font-weight: 400
}
.small_menu {
	position: absolute;
	padding: 1.5em 1em;
	right: 0;
	top: 0;
	z-index: 1000;
}
.menu {
	background-color: #fff;
	padding: 4rem 1rem 0.25rem 1rem;
	position: absolute;
	top: 0;
	transition: 0.3s all ease-in-out;
	transform: translateY(-100%);
	width: 100%;
	z-index: 90;
}
.search form {
	position: relative;
}
.search input[type="text"] {
	background: #f7f7f7 url('https://phw.co.nz/media/i/icon--search.svg') no-repeat 1rem center;
	background-size: 16px 16px;
	border: none;
	border-radius: 3px;
	height: 48px;
	outline: none;
	padding-left: 1rem;
	padding-right: 0.75rem;
	width: 100%;
}
.search input[type="text"]::-webkit-input-placeholder {
	opacity: 0;
}
.search input[type="text"]:focus {
	background: #f7f7f7;
	cursor: auto;
}
.search input[type="submit"] {
	appearance: none;
	background-color: transparent;
	border: none;
	color: #ccc;
	cursor: pointer;
	font-size: 20px;
	height: 48px;
	position: absolute;
	right: 0;
	top: 0;
	transition: 0.3s color ease;
	width: 48px;
}
.search input[type="submit"]:hover {
	color: var(--link);	
}
.active .menu {
	transform: translateY(0);
	box-shadow: 0px 7px 14px rgba(0,0,0,0.5);
}
.bar1,
.bar2 {
	background-color: #333;
	display: block;
	height: 2px;
	transition: 0.5s all ease;
	transform-origin: center;
	width: 20px;
}
.bar1 {
	margin-bottom: 8px;
}
.active .bar1 {
	margin-bottom: 4px;
	transform: translateY(3px) rotateZ(-45deg) scaleX(1.2);
}
.active .bar2 {
	transform:  translateY(-3px) rotate(45deg) scaleX(1.2);
}
.menu li a {
	color: #333;
	display: block;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.5px;
	padding: 1rem;
	transition: 0.1s color ease;
}
.menu li a:hover {
	color: var(--link);
}
.list-item {
	border-bottom: 1px solid #ddd;
}
.menu .mobile_updates {
	padding: 0
}
.menu .mobile_updates ul li {
  display: inline-block;
}
.menu .mobile_updates ul li a {
	padding: 0.5em 1em;
}
.menu .mobile_updates a img {
  width: 32px;
}

.icon {
	display: block;
	padding: 0.5rem 0.25rem;
	opacity: 0.25;
	transition: 0.2s all ease;
}
.icon:hover {
	opacity: 0.6;
}
.icon--instagram {
	background: transparent url('https://phw.co.nz/media/i/icon--instagram.svg') no-repeat center center;
	background-size: contain;
	height: 24px;
	width: 24px;
}
.icon--twitter {
	background: transparent url('https://phw.co.nz/media/i/icon--twitter.svg') no-repeat center center;
	background-size: contain;
	height: 24px;
	width: 24px;
}
.icon--rss {
	background: transparent url('https://phw.co.nz/media/i/icon--rss.svg') no-repeat center center;
	background-size: contain;
	height: 24px;
	width: 24px;
}
.icon--flickr {
	background: transparent url('https://phw.co.nz/media/i/icon--flickr.svg') no-repeat center center;
	background-size: contain;
	height: 24px;
	width: 24px;
}
.icon--dribbble {
	background: transparent url('https://phw.co.nz/media/i/icon--dribbble.svg') no-repeat center center;
	background-size: contain;
	height: 24px;
	width: 24px;
}
.icon--youtube {
	background: transparent url('https://phw.co.nz/media/i/icon--youtube.svg') no-repeat center center;
	background-size: contain;
	height: 24px;
	width: 24px;
}
.icon--linkedin {
	background: transparent url('https://phw.co.nz/media/i/icon--linkedin.svg') no-repeat center center;
	background-size: contain;
	height: 24px;
	width: 24px;
}
.social {
	display: flex;
}


/***** POSTS *****/
article {
	border-bottom: 1px solid #ddd;
  padding: 3rem 0 2rem;
  width: 100%;
}
article:first-of-type {
	padding-top: 2rem;
}
article h1 {
	font-family: var(--serif_fontstack);
  padding: 0 10px;
}
article h1 a {
  color: #444;
  transition: 0.2s all ease;
}
article h1 a:hover {
  color: var(--link);
}
article h2 {
  padding: 0 10px;
}
article p {
  padding: 0 10px;
}
article p a {
  border-bottom: 2px solid var(--link_border);
  color: inherit;
  transition: 0.1s all ease;
}
article p a:hover {
	color: var(--link);
}
article p.date {
	color: #ccc;
  font-size: 13px;
  margin: 0;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}
article blockquote {
  border-left: 8px solid var(--link);
  color: #444;
  display: block;
  font-style: italic;
  line-height: 1.6em;
  margin: 0 auto 1.5em;
  padding: 1em 10px 1em 1em;
}
article ul {
  margin-bottom: 1.5em;
  padding: 0 10px 0 30px;
}
article ul li {
  font-size: 17px;
  line-height: 1.5em;
  list-style: disc;
}

article img {
  margin: 20px 0;
  width: 100%;
}
article p.wp-caption-text {
  color: #666;
  display: block;
  font-size: 13px;
  font-style: italic;
  margin: -20px 0 0;
  padding: 5px 10px 1em;
  text-align: right;
  width: 100%;
}
.share h5 {
	color: #ccc;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 0.5em;
	padding-left: 10px;
	text-transform: uppercase;
}
.share ul {
	display: flex;
	padding-left: 10px;
}
.share ul li {
	border: 1px solid #e3e3e3;
	list-style: none;
}
.share ul li a {
	display: block;
	height: 40px;
	width: 42px;
}
.share ul li:not(:first-of-type) {
	border-left: none;
}
.share ul li.share--facebook a {
	background: url(../../../media/i/icon--facebook.svg) no-repeat center center;
	background-size: 20px 20px;
	opacity: 0.15;
}
.share ul li.share--twitter a {
	background: url(../../../media/i/icon--twitter.svg) no-repeat center center;
	background-size: 20px 20px;
	opacity: 0.15;
}
.share ul li.share--facebook a:hover,
.share ul li.share--twitter a:hover {
	opacity: 0.4;
}

.articles .divider {
  padding: 2em 0;
  text-align: center;
}

.page_nav {
	font-family: var(--sans_serif_fontstack);
  font-weight: 400;
  padding: 3rem 0;
  text-align: center;
/*   text-transform: uppercase; */
}
.page_nav a {
/* 	background-color: rgba(241,137,58,0.1); */
	align-items: center;
	border: 2px solid #ccc;
	border-radius: 24px;
	color: #999;
	display: inline-flex;
	height: 48px;
	justify-content: center;
  margin: 0 1rem;
  padding: 0 1.5rem;
  transition: 0.2s all ease;
}
.page_nav a:hover {
	border-color: var(--link);
	color: var(--link);
/* 	background-color: rgba(241,137,58,0.2); */
}

.inter_post_nav {
  text-align: center;
  padding: 1em 0 0;
}
.inter_post_nav a {
	font-family: var(--sans_serif_fontstack);
}
.newer_post {
  padding-bottom: 0.5em;
}
.newer_post,
.older_post {
  margin-bottom: 1em;
}
.newer_post h4,
.older_post h4 {
  text-transform: uppercase;
}

.video-container {
	background-color: #f7f7f7;
	height: 0;
	margin: 10px 0 20px;
	max-width: 100%;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
} 
.video-container iframe,
.video-container object,
.video-container embed {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/***** LICENSING *****/
.licensing article {
	border-bottom: none;
}
.licensing .main h1 {
  margin-bottom: 0.5em;
}

/***** FOOTER *****/
footer {
	background-color: #F7F7F7;
	padding: 3rem 10px 1rem;
	text-align: center;
}
footer .container {
	max-width: 400px;
}
footer .social {
	justify-content: center;
	margin-top: 2rem;
}
footer .icon {
	padding: 0.75rem 0.625rem;
}
footer p {
	color: #aaa;
	font-size: 14px;
}
footer p.copyright {
	margin-top: 0.5rem;
	width: 100%;
}
footer p.copyright span {
	white-space: nowrap;
}
footer p.copyright a {
	color: #aaa;
	border-bottom: 1px solid #ddd;
	padding-bottom: 0.125rem;
	transition: 0.1s all ease;
}
footer p.copyright a:hover {
	color: var(--link);
	border-color: var(--link_border);
}
footer p.made_by {
	margin-bottom: 0;
	margin-top: 2rem;
}
footer p.made_by a {
	color: #ccc;
	font-size: 13px;	
	font-weight: 600;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	transition: 0.2s all ease;
}
footer p.made_by a:hover {
	color: #444;	
}
.newsletter-subscribe--input {
	background-color: #fff;
	border: 1px solid #eee;
	border-radius: 24px;
	display: flex;
	height: 48px;
	margin-top: 0.5rem;
}
.newsletter-subscribe label {
	font-weight: 500;
}
.newsletter-subscribe input[type="email"] {
	background-color: transparent;
	border: none;
	font-size: 15px;
	font-weight: var(--sans_serif_fontstack);
	height: 48px;
	outline: none;
	padding-left: 1rem;
	width: 100%;
}
.newsletter-subscribe input[type="submit"] {
	background-color: transparent;
	border: none;
	color: #999;
	cursor: pointer;
	font-size: 20px;
	font-weight: 400;
	height: 48px;
	padding-left: 1rem;
	padding-right: 1rem;
	transition: 0.1s color ease;
}
.newsletter-subscribe input[type="email"]:valid + input[type="submit"] {
	color: var(--link);
}


/***** ABOUT*****/
.about article {
	border-bottom: none;
}
.about .divider {
  padding: 1em 0 2.5em;
  text-align: center;
}

/***** ARCHIVES *****/
.archives section {
	margin-bottom: 4rem;
	margin-top: 2rem;
}
.archives section h1 {
	font-family: var(--serif_fontstack);
  margin-bottom: 1rem;
}
.journal_gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-left: 10px;
	padding-right: 10px;
}
.journal_gallery a {
  display: block;
  width: calc(50% - 0.25rem);
}
.journal_link {
  margin-bottom: 0.5em;
}
.journal_link img {
  margin: 0 10px 0 0;
  width: 100%;
}
.journal_link h2 {
  font-size: 13px;
  padding-top: 4px;
  text-transform: uppercase;
}
.journal_link p {
  font-size: 13px;
  line-height: 1.375em;
}
.archivelist {
  border-top: 1px solid #eee;
}
.archivelist li {
  border-bottom: 1px solid #eee;
  list-style: none;
}
.archivelist h2 {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  overflow: hidden;
  padding-left: 0;
  text-transform: none;
}
.archivelist li a {
  display: flex;
  justify-content: space-between;
  padding: 0.75em 10px;
}
.archivelist li p {
  color: #ccc;
  font-size: 11px;
  line-height: 18px;
  margin-bottom: 0;
  padding: 0;
  white-space: nowrap;
}
.archivelist li a:hover {
  background-color: #eee;
}

/***** JOURNAL *****/
.journal_hero {
	align-items: center;
  background-size: 960px 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 250px;
  width: 100%;
}
.dubai .journal_hero {
  background: url(../../../media/i/dubai-header2.jpg) no-repeat center center;
}
.barcelona .journal_hero {
  background: url(../../../media/i/barcelona-header.jpg) no-repeat center center;
}
.stroke-and-stride .journal_hero {
  background: url(../../../media/i/stroke-and-stride-header.jpg) no-repeat center center;
}
.london .journal_hero {
  background: url(../../../media/i/london-header.jpg) no-repeat center center;
}

.journal_hero h1 {
  color: #fff;
  font-family: var(--serif_fontstack);
  line-height: 1.125em;
  margin-top: -1rem;
  padding-bottom: 8px;
}
.journal_hero h3 {
  border-bottom: 1px solid #fff;
  border-top: 1px solid #fff;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  padding: 0 10px;
}
.journal_hero_meta {
  text-align: center;
}
.journal_entry {
  padding: 2em 0;
}
.journal_entry h2 {
  margin-top: 1.25em;
}
.journal_entry p {
  color: #666;
  font-size: 16px;
  margin: 0 auto 1em;
  padding: 0 10px;
}
.journal_entry img {
  display: block;
  margin-bottom: 6px;
}
.journal_entry blockquote {
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  font-size: 20px;
  font-weight: 700;
  margin: 1em 10px;
  padding: 1em 0;
  text-align: center;
}
.journal_entry blockquote p {
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.journal_entry .divider {
  padding: 1em 0 1em;
}
.journal_entry h2 {
  line-height: 2em;
  text-align: center;
}
.journal_mosaic {
  margin: 0 auto;
  padding: 3em 0 3em;
  width: 100%;
}
.journal_mosaic img {
  width: 100%;
}
.london_feature {
  background: #f7f7f7;
  padding-bottom: 1.5em;
}
.london_feature h2 {
  background-color: #cc0000;
  border-top: 6px solid #f1f1f1;
  color: #fff;
  font-size: 28px;
  margin-bottom: 6px;
  padding: 0.25em 0;
}
.london_feature p {
  color: #333;
}
.london_feature img {
  margin-bottom: 1em;
  width: 100%;
}
.london_feature__content {
  margin: 0 auto;
}

/***** 404 *****/
.error_404 {
  background-color: #000;
}
.error_404 header {
  border-color: #444;
}
.error_404 .menu li {
  background-color: #000;
  border-color: #444;
}
.error_404 .menu li a {
  color: #ccc;
}
.error_404 .menu .mobile_updates a {
  border-color: #444;
}
.error_404 .error_message a {
  color: #fff;
  display: block;
  text-align: center;
  width: 100%;
}
.error_404 .error_message h1 {
  color: #fff;
  font-size: 140px;
}
.error_404 h2 {
  text-align: center;
}




/***** MEDIA QUERIES *****/
@media screen and (min-width:400px) {
footer .icon {
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
}




@media screen and (min-width:500px) {
h1 {
  font-size: 28px;
}
header {
	border-top: 3px solid #444;
	display: flex;
	justify-content: space-between;
}
header .container {
  width: 100%;
}
.header--bar {
	border-top: none;
	z-index: 0;
}
.menu {
	align-items: center;
	background-color: transparent;
	display: flex;
  padding-top: 0;
  position: static;
  transform: none;
  width: auto;
}
.menu li:first-of-type {
	order: 10;
}
.list-item {
	border-bottom: none;
}
.search input[type="text"] {
	background: transparent url('https://phw.co.nz/media/i/icon--search.svg') no-repeat 8.5px center;
	background-size: 18px 18px;
	border-radius: 18px;
	color: transparent;
	cursor: pointer;
	height: 36px;
	outline: none;
	transition: 0.3s all ease;
	width: 36px;
}
.search input[type="text"]:hover {
	background-color: #f7f7f7;
}
.search input[type="text"]:focus {
	color: #444;
	width: 160px;
}
.search input[type="text"]:focus::-webkit-input-placeholder {
	opacity: 1;
}
.search input[type="submit"] {
	visibility: hidden;
}

.active .menu {
box-shadow: none;
}
.menu li a {
	color: #999;
	font-weight: 500;
	padding: 1.25em 0.75em;
}
.small_menu {
  display: none;
}
.menu li a.icon {
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}
.icon--instagram,
.icon--twitter,
.icon--rss,
.icon--flickr,
.icon--dribbble,
.icon--youtube,
.icon--linkedin {
	height: 18px;
	width: 18px
}

.page_nav a {
	width: 10rem;
}


/***** ARCHIVES *****/
.archives section h1 {
	margin-bottom: 2rem
}


/***** JOURNAL *****/
.journal_entry blockquote {
  font-size: 18px;
}
.journal_mosaic--triple {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	padding-left: 0.5%;
	padding-right: 0.5%;
}
.journal_mosaic--triple img {
  margin-bottom: 0;
  padding: 0.5%;
  width: 50%;
}

/***** 404 *****/
.error_404 header .container {
  border-color: #444;
}
.error_404 .error_message h1 {
  font-size: 160px;
}

/***** FOOTER *****/
.updates,
.contact {
	margin-right: 2rem;
  width: auto;
}

}



@media screen and (min-width:680px) {
header {
/*   margin-bottom: 2em; */
}
header h1 a {
  line-height: 21px;
  padding: 1.5rem;
}
.menu li a {
  padding: 1.25rem 1rem;
}
.search input[type="text"]:focus {
	width: 240px;
}


/***** POSTS *****/
article h2,
article p,
article ul,
article blockquote,
.share h5 {
	margin-left: auto;
  margin-right: auto;
	width: 680px;
}
article p.date {
	width: 100%;
}

/***** ARCHIVES *****/
.journal_gallery a {
  display: block;
  width: calc(25% - 0.5rem);
}
.journal_link p {
  padding:0;
  width: auto;
}

.archives h2 {
  font-size: 14px;
/*   line-height: 18px; */
  padding-left: 0;
}
.archives ul {
  width: auto;
}
.archivelist h2 {
  font-size: 15px;
}
.archivelist li p {
  font-size: 13px;
  line-height: 18px;
}
.journal_link h2 {
  font-size: 13px;
  line-height: 1.375em;
  padding-top: 4px;
  text-transform: uppercase;
}
.journal_link p {
  padding-right: 10px;
}

/***** 404 *****/
.error_404 .error_message h1 {
  font-size: 180px;
}

}



@media screen and (min-width:700px) {
/***** HEADER *****/
.large_nav {
  padding-right: 8px;
}


article p.wp-caption-text {
	padding-bottom: 2em;
}
/***** JOURNAL *****/
.journal_entry blockquote {
  font-size: 22px;
}
.london_feature h2 {
  margin-bottom: 1em;
}
.london_feature img {
  float: right;
  margin: 0 0 1em 2em;
  padding: 1%;
  width: 300px;
}


/***** FOOTER *****/

}



@media screen and (min-width:760px) {
h1 {
  font-size: 32px;
}

/***** POSTS *****/
.journal header {
  border-bottom: none;
  margin-bottom: 0;
}
article {
  padding: 4rem 0 3rem;
}
article:first-of-type {
	padding-top: 3rem;
}
article p.date {
  font-size: 14px;
  margin-right: 0;
  width: 100%;
}


/***** ARCHIVES *****/
.archives section {
	margin-bottom: 5rem;
	margin-top: 3rem;
}


/***** JOURNAL *****/
.journal_hero {
  background-size: 1920px 500px;
  height: 400px;
  width: 100%;
}
.journal_hero h1 {
  color: #fff;
  line-height: 1.125em;
}
.journal_entry p {
  width: 700px;
}
.journal_entry blockquote {
  margin: 1em auto;
  padding: 1em 20px;
  width: 700px;
}
.journal_mosaic {
  padding: 3em 0;
  width: 756px;
}
.journal_mosaic--single img {
  padding: 0.5%;
  width: 100%;
}
.journal_mosaic--triple img {
  padding: 0.5%;
  width: 50%;
}
.london_feature__content {
  width: 756px;
}
.london_feature__content p {
  width: auto;
}

}



@media screen and (min-width:900px) {
.container {
/*   width: 900px; */
}
.journal .container {
  width: 900px;
}

/***** HEADER *****/
header h1 {
  font-size: 13px;
}

/***** JOURNAL *****/
.journal_entry blockquote {
	font-size: 24px
}

.journal_mosaic {
	display: flex;
	width: 880px;
}
.journal_entry blockquote {
	width: 880px;
}
.journal_entry img {
	margin: 0 auto
}
.journal_mosaic--single {
	align-items: flex-start;
}
.journal_mosaic--double {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
}
.journal_mosaic--double img {
	padding: 0.5%;
	width: 50%
}
.journal_mosaic--triple img {
	padding: 0.5%;
	width: 33.3333%
}
.journal_mosaic--2-3__col1 {
	width: 60%
}
.journal_mosaic--2-3__col1 img {
/* 	padding: 0.8333% */
	padding: 4px;
}
.journal_mosaic--2-3__col2 {
	width: 40%
}
.journal_mosaic--2-3__col2 img {
/* 	padding: 1.25% */
	padding: 4px;
}
.journal_mosaic--1-2-vertical {
	flex-wrap: wrap;
}
.journal_mosaic--1-2-vertical__row1 {
	width: 100%
}
.journal_mosaic--1-2-vertical__row1 img {
	padding: 0.5%
}
.journal_mosaic--1-2-vertical__row2 {
	align-items: flex-start;
	display: flex;
}
.journal_mosaic--1-2-vertical__row2 img {
	padding: 0.5%;
	width: 50%;
}

.journal_mosaic--1-2-horizontal {
	display: flex;
	justify-content: space-between;	
}
.journal_mosaic--1-2-horizontal__col1 {
	width: calc(66.6666%);
}
.journal_mosaic--1-2-horizontal__col1 img {
	padding: 0.75%;
}
.journal_mosaic--1-2-horizontal__col2 {
	width: calc(33.3334%);
}
.journal_mosaic--1-2-horizontal__col2 img {
	padding: 1.5%;
}

.london_feature__content {
	width: 880px
}
.london_feature__content p {
	width: auto
}
.london_feature img {
	float: right;
	margin: 0 0 2em 3em;
	padding: 1%;
	width: 360px;
}

/***** ARCHIVES *****/
.archivelist h2 {
	font-size: 16px
}

/***** 404 *****/
.error_404 .error_message h1 {
	font-size: 200px
}
}



@media screen and (min-width:940px) {
/***** ARTICLES *****/
article {
	padding: 6rem 0 5rem;
}
article:first-of-type {
	padding-top: 4rem;
}
article h1 {
	padding: 0
}

/***** ARCHIVES *****/
.archives section {
	margin-bottom: 6rem;
	margin-top: 4rem;
}

}



@media screen and (min-width:1040px) {
.container {
	max-width: 980px
}

/***** HEADER *****/
header .container {
	width: 980px
}

/***** JOURNAL *****/
.journal .container,
.journal_mosaic, 
.journal_entry blockquote,
.london_feature__content {
	width: 980px
}

}
