/*
Theme Name: 20200510
Text Domain: 20200510
*/


/* SITE BASICS */
* {
  margin: 0;
  padding: 0;
}
html {
	font-size: 16px;
  line-height: 1;
  color: #333;
	font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
}
body {
	display: flex;
	align-items: center;
  flex-direction: column;
  background: #fff;
}




/* LAYOUT ELEMENTS */
a {
  text-decoration: none;
  color: #d23f23;
  transition: 300ms;
}
a:hover {
  color: #333;
}

.hovereffect {
  display: inline-block;
  text-indent: 0;
}
.hovereffect:after {
  content: '';
  width: 0px;
  height: 1px;
  display: block;
  background: #333;
  transition: 200ms;
  margin: 0 50%;
}
.hovereffect:hover:after {
  width: 100%;
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  line-height: 1.2;
}
h1 {
  font-family: Buenard;
  font-size: 3em;
  line-height: 1.05;
  margin-bottom: 10px;
}
h2 {
  font-size: 1.6em;
  margin-bottom: 35px;
  font-weight: bold;
}
h3 {
  font-size: 1.4em;
  font-weight: normal;
}

.breadcrumbs {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: bold;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.columns > div {
  text-align: center;
}
.columns-two > div {
  width: 48%;
  min-width: 48%;
  margin-right: 4%;
}
.columns-three > div {
  width: 31%;
  margin-top: 3.5%;
  margin-right: 3.5%;
}
.columns-two > div:nth-of-type(2n+0) {
  margin-right: 0;
}
.columns-three > div:nth-of-type(3n+0) {
  margin-right: 0;
}

input[type=text] {
  padding: 10px;
  font-size: .9rem;
  border: 1px solid #000;
  border-radius: 3px;
  box-sizing: border-box;
}
input[type=submit],.button {
  border: none;
  background: #d23f23;
  color: #fff;
  padding: 12px;
  line-height: 1;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 6px;
  transition: 0.3s;
  position: relative;
}
.subscribe .button {
  background: #216693;
}
.subscribe input[type=submit] {
  background: #385;
}
input[type=submit]:hover,#sidebar .subscribe input[type=submit]:hover,.button:hover,#sidebar .button:hover {
  background: #333;
}




/* HEADER */
#header {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 0;
}
.single #header {
  border-bottom: 1px solid #333;
}

/* logo */
.logo-container {
	display: inline-block;
  text-indent: 0;
  text-align: left;
	width: 100%;
  background: #035;
}
.logo-container .maxwidth > a {
	display: inline-block;
  box-sizing: border-box;
  width: 96%;
  overflow: hidden;
  text-indent: 0;
	margin: 20px 0;
	background-image: url(https://www.t1dwanderer.com/wp-content/uploads/2019/01/jeremy-cartoon-head.png);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
  max-width: 340px;
}
.home .logo-container .maxwidth > a {
  max-width: 540px;
}
svg.logo {
  width: 83.3%;
  float: right;
}
.logo-t1d {
	fill: #f0cd32;
}
.logo-wanderer {
	fill: #f0cd32;
}
rect.logo-wanderer {
	fill: #d23f23;
}
.logo-tagline {
	fill: #fff;
}
.logo text {
	fill: #999;
  text-decoration: none;
	font-size: 15px;
	font-style: italic;
}
.home .logo text {
  font-size: 9px;
}




/* H1 STUFF */
#h1stuff {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: calc(100vh - 137px);
}
#h1stuff .inner {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.1));
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  box-sizing: border-box;
}
.inner .hovereffect:after {
  background: #fff;
}
.inner h1 {
  display: flex;
  font-size: 3rem;
  padding: 0 40px;
  flex-direction: column;
  justify-content: space-around;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.7);
  }
.inner .metainfo {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-self: center;
}
.inner .metainfo > div {
  padding: 40px;
  background: rgba(0,0,0,0.4);
  max-width: 75%;
  line-height: 1.3;
  margin-right: auto;
  margin-left: auto;
}
.inner .metainfo.none > div {
  padding: 0;
  background: none;
  height: 0;
}
.inner .metainfo .daycount {
  font-size: 1.6em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}
.inner .metainfo .daycount a {
  color: #fff;
}
.inner .metainfo .daycount .prevpost a:before {
  content: '\f0d9';
  font-family: FontAwesome;
}
.inner .metainfo .daycount .nextpost a:before {
  content: '\f0da';
  font-family: FontAwesome;
  text-align: right;
}
.inner .metainfo .geo {
  font-weight: bold;
  margin: 20px 100px 0;
}
/* Top stuff for pages */
.page .hovereffect:after {
  background: #d23f23;
}



/* INTRO (for index) */
#intro {
  width: 100%;
  background-image: url(https://www.t1dwanderer.com/wp-content/uploads/2017/09/finger-check-beside-pacific-ocean-california-coast.jpg);
  background-size: cover;
  background-position: 100% 100%;
  padding: 30px 50px;
  margin-bottom: 35px;
}
div.intro-left {
  width: 30%;
  background: #333;
  background: rgba(0,0,0,0.8);
  padding: 30px;
  color: #fff;
  text-align: left;
}
.intro-left img {
  float: right;
  margin: 30px 0 10px 20px;
}
.intro-left p {
  margin-top: 30px;
  line-height: 1.3;
  font-size: 0.9em;
}
.intro-left p:first-of-type {
  font-weight: bold;
  color: #f0cd32;
  font-family: Buenard;
  font-size: 2em;
  line-height: 1.1;
  margin-top: 0;
}



/* CONTENT */
#content-wrap {
  width: 1055px;
  max-width: calc(100% - 40px);
  margin: 40px 20px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#content-wrap > * {
  width: 100%; /* #content and #sidebar shouldn't be 100% and will be overridden later */
}
#content {
/*  width: 700px;*/
  width: calc(100% - 350px);
}
.home #content {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
.home #content > div {
  padding: 35px 0;
}
.maxwidth {
  margin: 0 auto;
  max-width: 1055px;
}
.toplinks-wrap {
  background: #fff;
}
.subscribe-wrap {
}
.testimonials-wrap {
}
.indexother-wrap {
}
.featuredon-wrap {
}
.single #content {
}
.article-meta {
  font-size: 14px;
  line-height: 1.3;
  color: #999;
  margin-bottom: 25px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.article {
  line-height: 1.6;
  margin-bottom: 70px;
}
.dateline {
  text-transform: uppercase;
  font-weight: bold;
  color: #216693;
}
.dateline:after {
  content: " \2014\00a0";
}
div.featured-image {
  border: 1px solid #999;
  margin-bottom: 30px;
  position: relative;
}
div.featured-image img {
  display: block;
}
.search .article {
  border-bottom: none;
}
.post-quote {
  font-size: 0.8em;
  color: #fff;
  font-style: italic;
  line-height: 1.4;
  position: absolute;
  top: 0;
  left: 0;
  background: #333;
  background: rgba(0, 0, 0, .4);
  padding: 10px 18px;
}
.post-quote-source {
  float: right;
  display: inline-block;
  font-style: normal;
  font-weight: bold;
  margin-top: 6px;
  font-size: .8em;
}
.post-quote .youtube-container {
  margin-top: 20px;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.post-quote .youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.article > p,.article > div,.article ol,.article ul {
  margin-bottom: 35px;
}
.article > *:last-child,.boxincontent > *:last-child {
  margin-bottom: 0;
}
.article li {
  padding-left: 0;
  margin-left: 1em;
  text-indent: -1em;
  list-style-position: inside;
}
img {
	-ms-interpolation-mode: bicubic;
}
img, object, embed {
	max-width: 100%;
	margin: 0px auto;
}
div.alignnone p {
  margin-bottom: 0;
}
div.alignnone,div.aligncenter,.article img {
	display: block;
	max-width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
div.alignnone img,div.aligncenter img {
	max-width: 100%;
}
.article img {
	border: 1px solid #999;
	box-sizing: border-box;
}
.wp-caption-text {
  padding-top: 6px;
  line-height: 1.2;
  text-align: center;
  color: #999;
  font-size: 0.8em;
}
.article p.wp-caption-text {
  margin-bottom: 0;
}
.bgnow {
  background: #ffe;
  border: 1px solid #999;
  font-size: 0.8em;
  font-weight: bold;
  padding: 0 5px;
  font-family: monospace;
  color: #900;
  border-radius: 2px;
}
.boxincontent {
  background: #ddd;
  line-height: 1.4;
  box-shadow: 8px 8px 8px rgba(0,0,0,.3);
  padding: 20px;
  margin: 20px 0;
  font-size: .9em;
}
.diabetes-report:before {
  content: 'T1D REPORT\A';
  color: #d23f23;
  white-space: pre;
  font-size: 0.9em;
  font-weight: bold;
}





/* CATEGORY LINKS (for index) */
.category-links > div {
  margin-bottom: 8%;
  display: flex;
}
.home .category-links > div {
  margin-bottom: 0;
}
.category-links a {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  color: #333;
  background: #e0e8ef;
  padding: 15px;
  box-sizing: border-box;
}
.category-links a > div {
  margin: 0;
}
.category-links .title {
  font-family: Buenard;
  font-size: 1.6em;
  line-height: 1;
  margin: 0 0 20px;
  color: #333;
}
.toplinks > div:nth-child(1) .title {
}
.toplinks > div:nth-child(2) .title {
}
div.category-links .image {
  padding-bottom: 66.66%;
  margin: 0 0 25px;
  height: 0;
  background-size: cover;
  border: 1px solid #999;
}
div.category-links .image:hover {
  border-color: #000;
}
.toplinks > div:nth-child(1) .image {
  background-image: url(https://www.t1dwanderer.com/wp-content/uploads/2016/07/jeremy-hopital-mahosot-vientiane-laos-hospital.jpg);
  background-position: 50% 50%;
}
.toplinks > div:nth-child(2) .image {
  background-image: url(https://www.t1dwanderer.com/wp-content/uploads/2016/05/jeremy-painted-figures-doors-deyuan-taxiacun-china.jpg);
  background-position: 50% 50%;
}
.category-links p.blurb {
  line-height: 1.3;
  font-size: .9em;
  margin: 0 0 15px 0;
}
.category-links p.button {
  margin: auto 0 0 0;
  align-self: center;
}
.toplinks .button {
  align-self: center;
  margin: 0 auto;
}





/* TESTIMONIALS (for index) */
.testimonials {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.testimonials .title {
	width: 100%;
	font-size: 2em;
	color: #216693;
  font-weight: bold;
  text-transform: uppercase;
	margin-bottom: 16px;
}
.testimonials div {
	width: 14%;
	line-height: 1.3;
}
.testimonials div p:first-child {
	font-style: italic;
}
.testimonials div p:last-child {
	text-align: right;
  margin-top: 16px;
  font-size: 0.8em;
}
.testimonials div p:last-child:before {
	content: "\2014 ";
}



/* OTHER LINKS boxes (index and about) */
.indexother > div {
  text-align: left;
}
.indexother .header {
  width: 100%;
  margin-bottom: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #216693;
  font-size: 2em;
}
.indexother-image {
	background-size: cover;
	width: 100%;
	box-sizing: border-box;
	height: 0;
	padding-bottom: 66%;
	margin-bottom: 10px;
	position: relative;
  border: 1px solid #999;
}
.indexother-image a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.indexother-title {
	margin: 10px 0 6px;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.2;
}
.indexother-meta {
  margin-bottom: 6px;
  font-size: 0.8em;
  color: #999;
}
.indexother-blurb {
  line-height: 1.2;
}
.home .indexother a {
  color: #d23f23;
}
.home .indexother a.hovereffect:hover:after {
  background: #d23f23;
}



/* FEATURED ON (for index) */
.featuredon {
	background: #216693;
	padding: 30px;
	border-radius: 15px;
  box-sizing: border-box;
}
.featuredon-imgs {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	justify-content: space-around;
	width: 100%;
}
.featuredon-imgs p {
	color: #fff;
	font-size: 1.4em;
	font-weight: bold;
  width: 50%;
  line-height: 1.2;
}






/* SIDEBAR */
#sidebar {
  width: 300px;
}
.sidebar-box p {
  line-height: 1.3;
}
.sidebar-box {
  margin-bottom: 70px;
  font-size: .85rem;
  background: #eee;
  padding: 20px;
  text-align: left;
}
p.sidebar-title {
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1;
  color: #216693;
  padding-bottom: 4px;
  border-bottom: 2px solid #216693;
  margin: -20px -20px 20px -20px;
  text-shadow: 1px 1px 1px #fff;
  background: #fff;
  text-transform: uppercase;
}
.aboutme {
  box-sizing: border-box;
}
.aboutme p.sidebar-title {
}
.aboutme .headshot {
  border: 1px solid #999;
  display: block;
  margin: 0 auto 20px;
}
.aboutme .social {
  display: flex;
  justify-content: space-around;
  font-size: .6rem;
  margin-top: 20px;
}
.aboutme .social a {
  color: #f23d23;
}
.aboutme .social a:hover {
  color: #333;
}



/* SUBSCRIBE BOX */
.subscribe {
  box-sizing: border-box;
  background: #ff8;
  padding: 20px;
}
.page .subscribe {
  text-align: center;
}
.subscribe-textcontainer {
  text-align: center;
}
.subscribe-title {
  font-weight: bold;
  font-family: Buenard;
  font-size: 2em;
  line-height: 1;
}
.subscribe-subhead {
  line-height: 1.3;
  margin-top: 25px;
}
.subscribe .sidebar-title {
  margin: -20px -20px 20px -20px;
}
.subscribe .input-container {
  margin: 20px 0 0;
  display: flex;
  justify-content: space-between;
}
.subscribe .input-container input {
  margin-top: 8px;
  width: 32%;
}
#sidebar .input-container {
  flex-direction: column;
}
#sidebar .subscribe .input-container input {
  width: 100%;
}
.subscribe input[type=submit] {
}
.subscribe input[type=submit]:hover {
}



.row-link {
  margin-top: 50px;
}
.row-link a {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  color: #333;
}
div.row-link-image {
  width: 30%;
  min-width: 30%;
  height: 0;
  padding-bottom: 19.8%;
  background-size: cover;
  margin: 0 25px 0 0;
  border: 1px solid #999;
}
div.row-link-text {
  display: flex;
  flex-direction: column;
  margin: 0;
}
p.row-link-text-meta {
  font-size: .8em;
  margin: 0 0 4px;
  line-height: 1;
  text-transform: uppercase;
  color: #999;
}
p.row-link-text-title {
  font-size: 1.5em;
  line-height: 1.1;
  font-weight: bold;
  font-family: Buenard;
  color: #d23f23;
  margin: 0;
  transition: 0.3s;
}
p.row-link-text-title:hover {
  color: #333;
}
p.row-link-text-blurb {
  font-size: .9em;
  line-height: 1.3;
  margin: 4px 0;
  color: #333;
}
p.row-link-text-link {
  margin: auto 0 0;
  font-size: .9em;
  line-height: 1;
  color: #216693;
  font-weight: bold;
}
p.row-link-text-link:hover {
  color: #333;
}

.pagelinks-header {
  text-align: center;
  font-size: 1.1em;
  color: #fff;
/*  margin: 50px 0 30px;*/
}
.pagelinks-header span {
  background: #d23f23;
  padding: 10px 20px;
  border-radius: 4px;
}
.pagelink {
  background-size: cover;
  background-position: 50% 50%;
  height: 0;
  position: relative;
}
.columns-three .pagelink {
  padding-bottom: 20.46%;
}
#sidebar .pagelink {
  padding-bottom: 66%;
  margin-top: 25px;
}
.pagelink a {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.3s;
  border: 1px solid #d23f23;
}
.pagelink a:hover {
  border-color: #d23f23;
}
.pagelink-meta {
  font-size: .7em;
  line-height: 1.1;
}
p.pagelink-title {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  padding: 6px 10px;
  transition: 0.3s;
  margin-top: auto;
  background: rgba(210,64,35,0.7);
}
.pagelink a:hover p.pagelink-title {
  background: #d23f23;
}
p.biglink {
  margin: 25px 0 0;
  text-align: center;
}
p.biglink a {
  color: #fff;
}



.twitterfeed {
  background: #fff;
  padding: 0;
}
.twitterfeed .sidebar-title {
  margin: 0;
}
#ctf .ctf-item {
  padding: 10px 0;
}








/* FOOTER */
#footer {
	background-color: #000;
  font-size: .9rem;
  width: 100%;
	background-image: url(https://www.t1dwanderer.com/wp-content/uploads/2017/07/jeremy-looking-at-painted-desert-from-rock-cliff-fade.jpg);
	background-size: cover;
  background-position: 0 0;
	padding-top: 30px;
}
.footer_content {
	color: #fff;
  margin: 220px 40px 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	box-sizing: border-box;
}
.footer_content > div {
	box-sizing: border-box;
}
.footer_about {
	line-height: 1.3;
	background: rgba(0,0,0,.3);
	padding: 20px;
  width: 50%;
  margin-right: 5%;
  margin-left: 15%;
}
.footer_about .title {
	font-weight: bold;
	font-size: 2em;
	margin-bottom: 15px;
}

.footer_metas {
	flex: 1;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
  max-width: 30%;
  overflow: hidden;
}
.footer_metas > div {
	margin-bottom: 50px;
	width: 100%;
}
.footer_metas > div:last-child {
	margin-bottom: 0;
}
.footer_metas .title {
	text-transform: uppercase;
  font-weight: bold;
	background: #d23f23;
	color: #fff;
	font-size: 1.2em;
	padding: 8px;
	margin-bottom: 10px;
}
.footer_search form {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}
.footer_search input[type=text] {
	width: 60%;
}
.footer_search input[type=submit] {
	width: 35%;
  border: 1px solid #fff;
}
#footer .social {
  font-size: .7em;
}
#footer a {
  color: #fff;
}
#footer .fa-inverse {
  color: #216693;
  transition: 0.3s;
}
#footer .fa-inverse:hover {
  color: #d23f23;
}
div.footer_pages {
	width: 47%;
}
.footer_pages p {
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 1.1em;
}
.footer_pages p:last-of-type {
	margin: 0;
}
.footer_pages a:after {
  background: #fff;
}
.footer_bottom {
	background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.3));
	font-size: .9em;
	line-height: 1.2;
	color: #ddd;
	text-align: center;
	padding: 0 10% 3%;
}
.footer_bottom p {
	padding: 3% 0 0;
}








/* SOCIAL SHARE BUTTONS */
.social-share {
  display: flex;
  justify-content: center;
}
.social-share.article-meta-sns {
  font-size: 1.5em;
  align-items: center;
}
.social-share.article-after {
  justify-content: space-between;
  font-size: 2em;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.social-share.article-after p {
  text-align: center;
  width: 100%;
  color: #216693;
}
.social-share.article-after .p1 {
  font-size: .9em;
  font-weight: bold;
  margin-bottom: 8px;
}
.social-share.article-after .p2 {
  font-size: .6em;
  margin-bottom: 12px;
}
.social-share.article-meta-sns a {
  width: 32px;
  height: 0;
  color: #fff;
  margin-left: 10px;
  padding-bottom: 32px;
  position: relative;
  border-radius: 50%;
}
.social-share.article-after a {
  width: 23%;
  height: 0;
  color: #fff;
  padding-bottom: 56px;
  position: relative;
}
.social-share a:after {
  position: absolute;
  font-weight: 900;
  font-family: 'Font Awesome 5 Brands';
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
a.sns-twitter {
  background: #4099ff;
}
a.sns-twitter:after {
  content: "\f099";
}
a.sns-facebook {
	background: #3b5998;
}
a.sns-facebook:after {
  content: "\f39e";
}
a.sns-pinterest {
	background: #c92228;
}
a.sns-pinterest:after {
  content: "\f231";
}
a.sns-envelope {
	background: #999;
}
a.sns-envelope:after {
  content: "\f0e0";
  font-family: 'Font Awesome\ 5 Free';
}
.social-share a:hover {
  background: #333;
}





/* READ NEXT */
a.readnext-box {
  display: flex;
  justify-content: flex-start;
  background: #333;
  color: #fff;
  padding: 25px;
  margin-bottom: 70px;
}
a.readnext-box:hover {
  background: #000;
}
div.readnext-image {
  width: 250px;
  min-width: 250px;
  height: 0;
  padding-bottom: 166.66px;
  background-size: cover;
  background-position: 50% 50%;
  border: 1px solid #999;
  transition: 0.3s;
}
div.readnext-image:hover {
  border-color: #fff;
}
div.readnext-text {
  margin-left: 30px;
  display: flex;
  flex-direction: column;
}
p.readnext-text-header {
  color: #ff0;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.2em;
  margin-bottom: 4px;
}
p.readnext-text-title {
  line-height: 1.1;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 8px;
}
p.readnext-text-title:hover {
  text-decoration: underline;
}
p.readnext-text-blurb {
  line-height: 1.3;
  font-size: .9em;
  margin-bottom: 4px;
  color: #999;
}
p.readnext-text-link {
  text-transform: uppercase;
  margin-top: auto;
  font-weight: bold;
  padding: 3px 6px;
  border: 1px solid #999;
  border-radius: 5px;
  text-align: right;
  align-self: flex-start;
  transition: 0.3s;
  background: #d23f23;
}
a.readnext-box:hover p.readnext-text-link {
/*  background: #d23f23;*/
}
p.readnext-text-link:hover {
  border-color: #fff;
}



/* SNS LINKS (CONNECT WITH T1D WANDERER) */
div.snslinks-box {
  border: 5px solid #216693;
  padding: 25px;
  border-radius: 10px;
  background: linear-gradient(#fff, #eee);
  display: flex;
  align-content: stretch;
  margin-bottom: 70px;
}
div.snslinks-image {
  width: 150px;
  height: 0;
  padding-bottom: 150px;
  background-image: url(https://www.t1dwanderer.com/wp-content/uploads/2019/07/t1dwanderer-bg-check-monterey-square-150x150.jpg);
  border: 1px solid #999;
  box-shadow: 4px 4px 8px rgba(0,0,0,.4);
  flex: 0 0 150px;
}
div.snslinks-content {
  flex: 1 0;
  display: flex;
  margin-left: 25px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
p.snslinks-title {
  width: 100%;
  font-size: 2em;
  color: #d23f23;
  font-weight: bold;
  margin-bottom: 9px;
  text-transform: uppercase;
}
p.snslinks-content-text {
  font-size: .8em;
  line-height: 1.3;
  margin-bottom: auto;
  width: 100%;
}
p.snslinks-content-button {
  margin-top: auto;
  box-shadow: 2px 2px 4px rgba(0,0,0,.4);
  background: #fff;
  border: 2px solid #d23f23;
  border-radius: 5px;
}
p.snslinks-content-button a {
  padding: 8px 14px;
  display: inline-block;
  color: #d23f23;
}
p.snslinks-content-button:hover {
  border-color: #216693;
}
p.snslinks-content-button:hover a {
  color: #216693;
}
p.snslinks-content-button a:before {
  font-family: FontAwesome;
  margin: 0 12px 0 0;
  font-size: 1.2em;
}
p.snslinks-content-button.twitter a:before {
  content: "\f099";
}
p.snslinks-content-button.youtube a:before {
  content: "\f167";
}
p.snslinks-content-button.youtube {
  margin-right: 20px;
}



/* TRAVELOGUE MENU */
.travelogue-menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #eee;
  padding: 20px;
  margin-bottom: 70px;
}
.travelogue-menu-title {
  width: 100%;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 6px;
}
.travelogue-menu-column {
  width: 32%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.travelogue-menu-item {
  width: 100%;
  font-size: .9em;
  margin-top: 1px;
  line-height: 1.2;
  text-indent: -20px;
  padding-left: 20px;
  box-sizing: border-box;
}
.travelogue-menu-item.item-now {
  font-weight: bold;
}
.travelogue-menu-item a {
  color: #999;
}
.travelogue-menu-item a:hover {
  color: #d23f23;
  text-decoration: underline;
}





/* YOUTUBE EMBEDS */
.youtube-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 70px;
}
.youtube-box p.youtube-box-title {
  width: 100%;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #216693;
  font-size: 2em;
  font-weight: bold;
}
.youtube-box a.button {
  float: right;
  padding: 8px 12px;
  color: #fff;
}
.youtube-box-column {
  width: 31%;
}
.youtube-box-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.youtube-box-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube-video-title {
  font-weight: bold;
  margin: 10px 0 6px;
  font-size: 1.3em;
  line-height: 1.2em;
  color: #216693;
}
.youtube-video-date {
  font-size: .8em;
  margin-bottom: 6px;
  color: #999;
}
.youtube-video-description {
  line-height: 1.2;
}


video{ width: 100%; height: 100%; max-width: 100%; }
.wp-video{width: 100% !important;}
.mejs-controls {
  display: none !important;
}
.mejs-container:hover .mejs-controls {
  display: flex !important;
}

.video-cta {
  background: #f0cd32;
  padding: 12px;
  border-radius: 10px;
  text-align: center;
}
.video-cta b {
  font-size: 1.1em;
}

.video-subscribe-cta {
  font-style: italic;
  color: #999;
}
.video-subscribe-cta:before {
  content: "Note: ";
  color: #333;
  font-weight: bold;
}




/* COMMENTS */
.commentlist,.commentlist ul,.commentlist li {
	list-style-type: none;
	padding-left: 0;
}
.comment-body {
	border: 1px solid #999;
	border-radius: 10px;
	margin-top: 25px;
	margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.comment-body > * {
  width: 100%;
  box-sizing: border-box;
}
.comment-author,.comment-meta {
  width: 50%;
  padding: 20px;
}
.bypostauthor > .comment-body {
	border: 2px solid #d23f23;
}
.comment-author {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}
img.avatar {
	border-radius: 50%;
	border: 1px solid #333;
	margin: 0 10px 0 0;
}
cite.fn {
	font-size: 1.1em;
	font-weight: bold;
	font-style: normal;
}
.says {
	display: none;
}
.comment-meta {
	font-size: .9em;
  text-align: right;
}
.comment-meta a:first-of-type {
	color: #999;
}
a.comment-edit-link {
	float: right;
	color: #d23f23;
	font-weight: bold;
}
.comment-body p {
	padding: 25px 20px 0;
	line-height: 1.2;
}
.comment-body > p:first-of-type {
  border-top: 1px solid #999;
}
.bypostauthor .comment-body > p:first-of-type {
	border-top: 2px solid #d23f23;
}
.reply {
	margin: 25px 20px 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: .9em;
}
.children {
	margin-left: 30px;
}
#respond {
  padding: 25px;
  background: #e3e5e7;
}
.comment-respond {
	margin-top: 80px;
}
.comment-form p[class^="comment-form-"] {
	margin: 30px 0 0;
}
.comment-form label {
	display: block;
	font-size: 1.1em;
	font-weight: bold;
}
label.subscribe-label {
	width: auto;
	float: none;
	display: inline-block;
  text-indent: 0;
	font-size: 1em;
	margin-right: 0;
	padding: 0;
	text-align: left;
	background: none;
}
.comment-form textarea,.comment-form input[type=text] {
	margin: 10px 0;
	font-size: 1.1em;
	padding: 10px;
	box-sizing: border-box;
	width: 100%;
}
.comment-form textarea {
	height: 200px;
}
.comment-form input[type=submit] {
	margin: 30px 0 15px;
}



/* SEARCH PAGE */
p.search_title {
  font-size: 1.2em;
  line-height: 1.1;
  font-weight: bold;
  margin: 30px 0 0;
}
p.search_desc {
  font-size: .9em;
  margin: 0;
}




/* Below 1000px
@media screen and (max-width: 999px) {
  .intro-left {
    font-size: .9em;
    padding: 25px;
  }
  div.intro-right {
    background-position: 35% 99%;
  }
  .pagelink-title {
    font-size: 1.3em;
  }
  .footer_about,.footer_metas {
    margin-left: 5%;
    margin-right: 5%;
    width: 90%;
  }
  .footer_metas {
    flex: auto;
    margin-top: 30px;
    max-width: 100%;
  }
  .footer_metas > div {
    width: 47%;
  }
  #content {
    max-width: calc(100% - 100px);
  }
  #sidebar {
    flex: 0 0 100%;
    margin: 50px 0 0;
    padding: 0 50px;
    box-sizing: border-box;
  }
  #sidebar > div {
    box-sizing: border-box;
  }
}
*/




/* (for sidebar at bottom, and other smaller stuff) */
@media screen and (max-width: 690px) {

  html {
    font-size: 19px;
    color: #000;
  }

  h1 {
    font-size: 1.8em;
  }
  .maxwidth {
    max-width: 100%;
  }
  .logo-container {
    text-align: center;
    padding: 0 30px;
    box-sizing: border-box;
  }

  #content {
    width: 100%;
  }
  #sidebar {
    margin-left: 0;
    width: 100%;
    box-sizing: border-box;
  }

  #intro {
    padding: 0;
    margin: 0 0 20px 0;
  }
  div.intro-left {
    width: 100%;
    background: rgba(0,0,0,0.4);
    padding: 20px;
    box-sizing: border-box;
  }
  .intro-left img {
    display: none;
  }
  .intro-left p {
    margin-top: 20px;
    font-size: 0.8em;
  }
  .intro-left p:first-of-type {
    font-size: 1.6em;
  }

  .home #content > div {
    padding: 20px 0;
  }

  .featuredon {
  	padding: 20px;
  	border-radius: 10px;
    margin: 0 20px 0;
  }
  .featuredon-imgs {
  	flex-wrap: wrap;
  	justify-content: space-between;
  }
  .featuredon-imgs p {
    width: 100%;
  	font-size: 1.2em;
    margin-bottom: 20px;
  }

  .home .category-links > div {
    margin-bottom: 20px;
  }

  .home .subscribe .input-container {
    flex-wrap: wrap;
  }
  .home .subscribe .input-container input[type=text] {
    width: 48%;
  }
  .home .subscribe .input-container input[type=submit] {
    width: 100%;
    margin-top: 8px;
  }

  .testimonials {
    margin: 20px;
  }
  .testimonials .title {
    font-size: 1.6em;
  }
  .testimonials div {
    width: 45%;
    font-size: 0.8em;
    line-height: 1.2;
    margin-top: 20px;
  }

  .indexother-wrap {
    margin: 20px;
  }
  .indexother .header {
    font-size: 1.6em;
  }
  .columns-three > div {
    width: 100%;
    margin-top: 40px;
  }
  .columns-three > div:first-of-type {
    margin-top: 0;
  }
  .youtube-box {
    box-sizing: border-box;
    margin: 0;
  }
  .home .youtube-box {
    padding: 20px;
  }
  .youtube-box p.youtube-box-title {
    font-size: 1.6em;
  }

  .post-quote {
    font-size: 0.7em;
    line-height: 1.3;
  }

  .social-share.article-after {
    font-size: 1.6em;
  }

  .row-link {
    margin: 20px 0;
  }
  .row-link a {
    color: #000;
  }
  div.row-link-image {
    margin: 0 15px 0 0;
  }
  p.row-link-text-meta {
    font-size: .6em;
  }
  p.row-link-text-title {
    font-size: 1em;
  }
  p.row-link-text-blurb {
    display: none;
  }
  p.row-link-text-link {
    display: none;
  }

  .columns-two > div {
    width: 100%;
    min-width: 100%;
    margin-right: 0;
  }

  a.readnext-box {
    flex-direction: column;
  }
  div.readnext-image {
    width: 100%;
    min-width: 100%;
    padding-bottom: 66.66%;
    margin-bottom: 10px;
  }
  div.readnext-text {
    margin-left: 0;
  }
  p.readnext-text-title {
    font-size: 1.3em;
  }
  p.readnext-text-link {
    margin-top: 15px;
    padding: 6px;
    font-size: 1.3em;
    border: 2px solid #fff;
    text-align: center;
    align-self: stretch;
  }

  .travelogue-menu-column {
    width: 100%;
  }

  .youtube-box a.button {
    float: none;
    display: block;
    font-size: 0.6em;
    text-align: center;
    margin: 10px 0 20px;
  }
  .youtube-box-column {
    width: 100%;
    margin-bottom: 40px;
  }

  .article-meta {
    flex-wrap: wrap;
  }
  .social-share.article-meta-sns {
    margin-top: 15px;
    width: 100%;
    align-content: center;
  }

  .comment-respond {
    margin-top: 0;
  }
  .home .footer_about .title {
    font-size: 1.6em;
    line-height: 1;
  }
  .footer_content {
    margin: 80px 20px 0;
    flex-direction: column;
  }
  .footer_about {
    margin-bottom: 25px;
    font-size: .8em;
  }
  .footer_about,.footer_metas {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .footer_metas > div {
    width: 100%;
    text-align: center;
  }
  .footer_bottom {
    margin-top: 50px;
    font-size: .8em;
  }
}




/* Below 700px */
/*@media screen and (max-width: 6px) {
  .maxwidth {
    padding: 0 20px;
    box-sizing: border-box;
  }
  .toplinks {
    padding: 0;
  }
  #sidebar {
    padding: 0 20px;
  }
  #sidebar > div {
    width: 100%;
  }
  p.pagelink-title {
    font-size: 1.7em;
  }
  .single #content {
    margin: 50px 0;
  }
  #content {
    max-width: calc(100% - 40px);
  }
  .footer_content {
    margin: 220px 20px 0;
  }
  .footer_about,.footer_metas {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
  .footer_metas > div {
    width: 100%;
    text-align: center;
  }
  .footer_bottom {
    margin-top: 50px;
  }
  div.alignnone, div.aligncenter, .article img {
    max-width: 100%;
  }
  .inner .metainfo > div {
    max-width: 100%;
    padding: 10px;
  }
  .pagelinks-header {
    background: #d23f23;
    padding: 10px 20px;
    border-radius: 4px;
    line-height: 1.2;
  }
  .pagelinks-header span {
    background: none;
    padding: 0;
    border-radius: 0;
  }
  .columns-two > div,.columns-three > div {
    width: 100%;
    margin-right: 0;
  }
  .columns-three .pagelink {
    padding-bottom: 60%;
  }
  #intro.columns-two > div.intro-left {
    padding: 20px;
    order: 2;
    text-align: center;
  }
  #intro.columns-two > div.intro-right {
    order: 1;
    padding: 0 0 50%;
    background-position: 50% 100%;
  }
  .intro-left p:first-of-type {
    font-size: 2.2em;
    line-height: 1.1;
  }
  .home #content > div {
    padding: 80px 0;
  }
  .home #content > div.toplinks-wrap {
    padding: 0;
  }
  .home .category-links > div {
    margin: 20px 0 0;
  }
  .home .category-links > div:last-of-type {
    margin-bottom: 20px;
  }
  .home .columns-three > div {
    margin-bottom: 30px;
  }
  .home .columns-three > div:last-of-type {
    margin-bottom: 0;
  }
  .subscribe .input-container {
    flex-wrap: wrap;
  }
  .subscribe .input-container input {
    width: 100%;
  }
  .testimonials div {
    width: 44%;
    margin-top: 30px;
  }
  .featuredon {
    margin: 0 20px;
    padding: 20px;
    box-sizing: border-box;
  }
  .featuredon-imgs {
    flex-wrap: wrap;
  }
  .featuredon-imgs p {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  #h1stuff {
    height: auto;
    min-height: calc(100vh - 137px);
    padding-bottom: 0;
    position: inherit;
  }
  .inner h1 {
    padding: 0 10px;
    font-size: 2.5em;
    margin: 20px 0;
  }
  #h1stuff .inner {
    padding: 10px;
    min-height: calc(100vh - 137px);
    position: inherit;
  }
  .article .social-share a:after{
    height: 0;
  }
  .after-article.social-share:before {
    content: "";
    margin-right: 0;
  }
  a.readnext {
    text-align: center;
  }
  a.readnext img {
    display: none;
  }
}*/
