@charset "UTF-8";
@media (min-width: 48em) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 47.99em) {
  .desktop-only {
    display: none !important;
  }
}

@media (min-width: 28.125em) {
  .show-on-mobile {
    display: none !important;
  }
}

@media (min-width: 48em) {
  .hide-on-tablet {
    display: none !important;
  }
}

@media (min-width: 48em) {
  .show-on-tablet {
    display: block !important;
  }
}
@media (max-width: 47.99em) {
  .show-on-tablet {
    display: none !important;
  }
}

@media (min-width: 64.0625em) {
  .hide-on-desktop {
    display: none !important;
  }
}

@media (max-width: 64.0525em) {
  .show-on-desktop {
    display: none !important;
  }
}

.is-flex {
  display: flex;
}
.is-flex > div {
  width: 100%;
}

.no-scroll {
  overflow: hidden;
}

.nowrap {
  white-space: nowrap;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

a,
.entry > p a,
.entry > ol a,
.entry > ul a {
  color: #c35251;
}
a:hover, a:active, a:focus,
.entry > p a:hover,
.entry > p a:active,
.entry > p a:focus,
.entry > ol a:hover,
.entry > ol a:active,
.entry > ol a:focus,
.entry > ul a:hover,
.entry > ul a:active,
.entry > ul a:focus {
  outline: none;
  text-decoration: none;
}

.entry > p a,
.entry > ol a,
.entry > ul a {
  color: #c35251;
  border-bottom: 1px dashed #c35251;
}
.entry > p a:hover, .entry > p a:active, .entry > p a:focus,
.entry > ol a:hover,
.entry > ol a:active,
.entry > ol a:focus,
.entry > ul a:hover,
.entry > ul a:active,
.entry > ul a:focus {
  border-bottom: 1px solid #c35251;
}

.social-menu a:hover, .social-menu a:active, .social-menu a:focus {
  border-bottom: none;
  outline: none;
  text-decoration: none;
  color: #4c97f5;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
}

html {
  overflow-x: clip;
}

body {
  background-color: #f9eaee;
  color: #0b1013;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "miller-headline", serif;
  font-weight: 400;
}
body, body * {
  box-sizing: border-box;
}

#page {
  background-color: #f9eaee;
}

.flex {
  display: flex;
}

@media (min-width: 48em) {
  .md\:flex {
    display: flex !important;
  }
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row !important;
}

.flex-1 {
  flex: 1;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr) !important;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 48em) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (min-width: 48em) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 48em) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-12 {
  gap: 3rem;
}

.w-1\/2 {
  width: 50%;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.orange {
  color: #DD0834;
}

.icon-feedly {
  background: url("../../images/icons/feedly.svg");
  background-size: contain;
}
.icon-feedly:hover, .icon-feedly:active, .icon-feedly:focus {
  background: url("../../images/icons/feedly-hover.svg");
  background-size: contain;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-sans {
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.text-sm {
  font-size: 0.875rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-mineshaft {
  color: #0b1013;
}

.hover\:text-mineshaft:hover {
  color: #0b1013;
}

.uppercase {
  text-transform: uppercase;
}

/** Masthead **/
#masthead .ad,
body .ad {
  height: auto;
}

#main {
  float: none;
  width: 100%;
  flex: none;
}
.single #main, .page #main {
  max-width: 760px;
}
#masthead {
  background: #f9eaee;
  border-bottom: 1px solid #CCB7AE;
  padding: 2px 15px 8px;
}
@media (min-width: 50em) {
  #masthead {
    margin-top: 0;
  }
}
@media (min-width: 48em) {
  #masthead {
    padding: 10px 0;
  }
}

body:not(.home) #masthead {
  border-bottom: 1px solid #CCB7AE;
  transition: 0.4s;
}

body.admin-bar:not(.home) #masthead {
  top: 30px;
}

@media screen and (min-width: 783px) {
  body.admin-bar .masthead {
    top: 59px;
  }
}
.logo-wrapper #logo a:active,
.logo-wrapper #logo a:focus,
.logo-wrapper a:active,
.logo-wrapper a:focus {
  outline: none !important;
}

.container {
  width: 100%;
  max-width: 1296px;
}

body:not(.home) #masthead .container {
  position: relative;
  text-align: center;
}

#skin-clickthrough {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
}

#skin-clickthrough a {
  display: block;
  height: 100%;
  width: 100%;
}

#div-id-for-interstitial {
  line-height: 0;
  width: 100%;
}
.admin-bar #div-id-for-interstitial > div {
  top: 32px !important;
}

#div-id-for-bottom-970x250 {
  text-align: center;
  display: flex;
  justify-content: center;
}

#div-id-for-interstitial div {
  width: 100%;
}

#div-id-for-interstitial div iframe {
  width: 100%;
}

#div-id-for-in-story-youtube-1x1 {
  margin: 0 -25px 1em -15px;
  text-align: center;
}

#div-id-for-in-story-youtube-1x1 {
  margin-right: -16px;
}

#div-id-for-in-story-youtube-1x1 > div:not(.instory-youtube-ad) {
  background: #f3f3f3;
  color: #999;
  margin: 0 auto;
  padding: 8px;
  text-align: center;
}

#div-id-for-in-story-youtube-1x1 > div:not(.instory-youtube-ad):before {
  /*content: '—ADVERTISEMENT—';*/
  margin: 0 0 8px;
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
}

#div-id-for-in-story-youtube-1x1 > div:not(.instory-youtube-ad) iframe {
  margin: 0 0 8px;
}

#div-id-for-in-story-youtube-1x1 .dfp-yt-embed iframe {
  width: 100%;
}

body > .ad.leaderboard,
#page > .ad.leaderboard {
  background-color: #e2c9cf;
  padding: 8px;
}

.leaderboard {
  position: relative;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
body.single .leaderboard.ad-moved, body.home .leaderboard.ad-moved {
  margin: 0 auto;
  padding: 0;
}
body.single .leaderboard.ad-moved {
  margin-top: 20px;
}
.leaderboard iframe {
  margin-bottom: 20px;
}

@media (max-width: 47.99em) {
  #div-id-for-top-728x90 > div {
    padding: 0;
    margin: 0;
  }
  #div-id-for-top-728x90 > div iframe {
    width: 320px !important;
    margin: 0 auto;
  }
}
body:not(.home) .leaderboard * {
  margin: 0 auto;
}

#div-id-for-interstitial {
  background: #f3f3f3;
}

#div-id-for-storycontent-300x250 {
  text-align: center;
  display: none;
}
@media (min-width: 64.0625em) {
  #div-id-for-storycontent-300x250 {
    display: block;
  }
}

#div-id-for-storycontent-300x250 iframe {
  margin: 1em auto 2em;
}

#div-id-for-storycontent-2-640x175 {
  display: none;
}
@media (min-width: 48em) {
  #div-id-for-storycontent-2-640x175 {
    display: block;
    margin-bottom: 20px;
  }
}

/*

.iframe-container {
	position: relative;
  overflow: hidden;
	margin-bottom: 2em;

	.admin-bar & {
		padding-top: 56.25%;
	}

	iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		border: 0;
	}
}
	*/
/** Primary Nav >>>> MOVED TO PARENT ------need to add light digital camo background */
/** Pagination **/
.wp-pagenavi {
  border-bottom-color: #292929;
}

.wp-pagenavi a {
  color: #417AAF;
}

.wp-pagenavi .current {
  border-color: #292929;
}

/** Sidebar **/
#sidebar > ul {
  margin-left: 0;
  max-width: 100%;
  padding-left: 0;
}
#sidebar > div {
  margin-bottom: 30px;
}

@media only screen and (max-width: 782px) {
  #sidebar {
    display: none;
  }
}
.sidebar__ad iframe {
  margin: 0 auto 30px;
}

.sidebar__sticky {
  margin-bottom: 0;
  position: relative;
}

.widget .widget-title {
  border-top: 4px solid #262a33;
  font-family: "miller-headline", serif;
  letter-spacing: 1px;
  padding-top: 3px;
  margin-bottom: 8px;
  text-align: left;
}

.empty + .widget {
  display: none;
}

.widget_parterre_broadcasts_widget {
  font-size: 1rem;
  margin: 0 auto;
  max-width: 300px;
  text-align: left;
}

.widget_parterre_broadcasts_widget .widget-title,
#calendar_widget_header {
  background: #0b1013;
  padding: 1rem;
  color: #f9eaee;
  border: none;
  margin-bottom: 1px;
}
.widget_parterre_broadcasts_widget .widget-title a,
#calendar_widget_header a {
  color: #f9eaee;
  border: none;
}
.widget_parterre_broadcasts_widget .widget-title a:hover,
#calendar_widget_header a:hover {
  text-decoration: none;
}
.widget_parterre_broadcasts_widget .widget-title a:visited,
#calendar_widget_header a:visited {
  color: #f9eaee;
}
.calnk .widget_parterre_broadcasts_widget .widget-title a:visited,
.calnk #calendar_widget_header a:visited {
  color: #f9eaee;
}

.sponsored_content {
  padding: 10px;
}

.sponsored_content .post-title {
  font-weight: 700;
  font-size: 22px;
}

.sponsored_content span.large {
  font-size: 13px;
  color: #0b1013;
}

.sponsored-image {
  margin-top: 10px;
}

.sponsored-image img {
  max-width: 300px;
  margin-left: -10px;
}

#sidebar #sponsoredContent .entry {
  width: 100%;
}

.sponsor-sidebar {
  margin-bottom: 30px;
  width: 100%;
}

.sponsor-sidebar .title,
.sponsor-sidebar .summary-container,
.sponsor-inline .title--short,
.sponsor-inline .summary-container--short {
  display: none;
}

.sponsor-sidebar .label,
.sponsor-inline .label {
  display: none;
}

.sponsor-sidebar .label.mobile-only,
.sponsor-inline .label.mobile-only {
  display: block;
}

@media screen and (min-width: 800px) {
  .sponsor-sidebar .label,
  .sponsor-inline .label {
    display: block;
  }
  .sponsor-sidebar .label.mobile-only,
  .sponsor-inline .label.mobile-only {
    display: none;
  }
}
.sponsor-inline {
  clear: both;
  color: #0b1013;
}

.sponsor-inline .label a {
  color: #c3c3c3;
}

.sponsor-inline .title a {
  color: #666666;
}

.sponsor-inline p.summary {
  font-size: 0.9rem;
  line-height: 1.4;
}

#mainContent .ad.leaderboard > div > div {
  margin-bottom: 30px;
}

#mainContent .widget-sponsor .content {
  float: right;
  width: 63%;
}

#mainContent .widget-sponsor .image {
  float: left;
  width: 34%;
}

#mainContent .widget-sponsor .image img {
  max-height: 140px;
  max-width: 140px;
  width: auto;
}

#mainContent .widget-sponsor .content {
  width: 71%;
}

#mainContent .widget-sponsor .image {
  width: 26%;
}

#mainContent .widget-sponsor .image img {
  max-height: 140px;
  max-width: 140px;
  width: auto;
}

@media screen and (min-width: 783px) {
  #mainContent .widget-sponsor {
    position: relative;
    margin: 2.5rem 0;
    padding: 35px 5px 5px;
  }
  #mainContent .widget-sponsor .title {
    padding-left: 0;
  }
  #mainContent .widget-sponsor .title a {
    font-size: 18px;
  }
  #mainContent .sponsor-inline .label {
    position: absolute;
    top: 10px;
    left: 5px;
    font-size: 12px;
    padding-left: 0;
  }
  #mainContent .sponsor-inline .summary-container p {
    font-size: 14px;
    line-height: 1.33;
  }
  #mainContent .sponsor-inline .sponsor {
    padding-left: 0;
  }
}
@media screen and (min-width: 800px) and (min-width: 600px) {
  #mainContent .widget-sponsor .video {
    float: right;
    margin: 0 0 0 1.25rem;
  }
}
.sponsor-inline {
  /*
  margin-top: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid $grey-pink;
  */
}

@media screen and (max-width: 782px) {
  .single-post #mainContent .sponsor-inline,
  .single-sponsored_content #mainContent .sponsor-inline {
    display: none;
  }
}
@media (max-width: 600px) {
  #below-nav {
    display: none;
  }
}
.pb_disqusrecentcomments {
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-recent-comments .pb_disqusrecentcomments {
  display: block;
  position: static;
  background: none;
  box-shadow: none;
  max-width: 100%;
  max-height: 100%;
}
.page-recent-comments .pb_disqusrecentcomments.collapsed {
  height: auto;
}
.page-recent-comments .pb_disqusrecentcomments #recentcomments {
  height: auto;
  box-shadow: none;
}
.page-recent-comments .pb_disqusrecentcomments #recentcomments .dsq-widget-item {
  border-bottom: 1px solid #e2c9cf;
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  padding: 10px;
}
.page-recent-comments .pb_disqusrecentcomments #recentcomments .dsq-widget-item > a:has(.dsq-widget-avatar) {
  flex: none;
}
.page-recent-comments .pb_disqusrecentcomments #recentcomments .dsq-widget-avatar {
  border-radius: 16px;
  height: 52px;
  margin-right: 10px;
  width: 52px;
}
.page-recent-comments .pb_disqusrecentcomments #recentcomments .dsq-widget-user {
  color: #c35251;
  font-size: 15px;
  margin-bottom: 10px;
  width: calc(100% - 62px);
}
.page-recent-comments .pb_disqusrecentcomments #recentcomments .dsq-widget-comment {
  display: block;
  margin-left: 62px;
  width: calc(100% - 62px);
}
.page-recent-comments .pb_disqusrecentcomments #recentcomments .dsq-widget-comment,
.page-recent-comments .pb_disqusrecentcomments #recentcomments .dsq-widget-comment p {
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px !important;
  line-height: 1.5;
}
.page-recent-comments .pb_disqusrecentcomments #recentcomments .dsq-widget-comment a,
.page-recent-comments .pb_disqusrecentcomments #recentcomments .dsq-widget-comment p a {
  color: #c35251;
}
.page-recent-comments .pb_disqusrecentcomments #recentcomments .dsq-widget-meta {
  display: block;
  margin-left: 62px;
  width: calc(100% - 62px);
}
.page-recent-comments .pb_disqusrecentcomments #recentcomments .dsq-widget-meta a {
  color: #656c7a;
}
.pb_disqusrecentcomments .widget-title {
  display: none;
}
.pb_disqusrecentcomments .widget-title:hover {
  background: #c35251;
  color: #fff;
}
.pb_disqusrecentcomments .widget-title:hover i {
  color: #fff;
}
.pb_disqusrecentcomments .widget-title .pb-toggle {
  float: right;
  opacity: 0.5;
}
.pb_disqusrecentcomments img.dsq-widget-avatar {
  border-radius: 6px;
  margin: 0 8px 3px 0;
}
.pb_disqusrecentcomments.collapsed {
  height: 40px;
}

.page-recent-comments #main {
  margin: 0 auto;
}
.page-recent-comments #main #mainContent {
  padding-top: 0;
  margin-top: 0;
}
.page-recent-comments #main #mainContent .post,
.page-recent-comments #main #mainContent .hentry {
  padding-top: 0;
}
.page-recent-comments #main #mainContent .post > ul,
.page-recent-comments #main #mainContent .hentry > ul {
  padding-left: 0;
  margin-left: 0;
}
.page-recent-comments #main #mainContent .post > ul .widget-title,
.page-recent-comments #main #mainContent .hentry > ul .widget-title {
  display: none;
}

.widget-newsletter h2.widgettitle {
  color: #0b1013 !important;
  line-height: 1em !important;
  border-bottom: 0 !important;
}

/** Single Post View **/
#content {
  border: none;
  margin: 0;
  width: 100%;
}

.single #content,
.page #content {
  padding: 0 15px;
}
.single #mainContent,
.single .hentry,
.single .hentry .entry,
.page #mainContent,
.page .hentry,
.page .hentry .entry {
  margin-top: 0;
  padding-top: 0;
}
.single #div-id-for-middle-970x250,
.page #div-id-for-middle-970x250 {
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
.single #div-id-for-middle-970x250 > div,
.page #div-id-for-middle-970x250 > div {
  border-top: 1px solid #ccb7ae !important;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0 auto;
}
.single #div-id-for-middle-970x250 + #post-bottom,
.page #div-id-for-middle-970x250 + #post-bottom {
  margin-left: 15px;
  margin-right: 15px;
}

.single .post-excerpt {
  color: #0b1013;
  margin-bottom: 8px;
}

.single .post-author {
  display: inline;
  font-size: 13px;
}

.single .post-author a {
  font-size: 13px;
}

.single .timestamp {
  color: var(--mineshaft);
  padding: 0;
  vertical-align: inherit;
  font-size: 12px;
}

.postTags p {
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  font-size: 13px;
  line-height: 1.5;
}

.postTags a {
  color: #6a6a6a;
  border-bottom: 1px solid #e2c9cf;
}

.postTags a:hover {
  text-decoration: underline;
}

.postTags:not(.hidden) li + li {
  margin-top: 12px;
}

.inlinead {
  overflow: hidden;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e2c9cf;
}

.single .entry .inlinead {
  text-align: center;
}

p + .wp-block-image {
  margin: 1em 0;
}

@media (max-width: 47.99em) {
  .wp-block-image .alignright,
  .wp-block-image .alignleft {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
/** About Page **/
.editorial {
  display: flex;
}

.editorial-photo {
  align-self: baseline;
  border: 1px solid #ccc;
  margin-right: 20px;
  width: 145px;
}

.editorial-desc {
  display: block;
  width: 460px;
  font-size: 15px;
  text-align: left;
}

.editorial-title {
  font-family: Helvetica, Arial;
  color: #666;
}

.dotted {
  margin: 30px 0;
  border-top: 1px dotted #ccc;
  display: block;
}

.about h3 {
  border-top: 1px solid #ccc;
  margin-top: 30px;
  padding: 30px 0;
}

.about ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.about ul li {
  display: block;
  margin-bottom: 20px;
  margin-left: 16px;
  width: 110px;
}

.about ul li .board-photo {
  border: 1px solid #ccc;
  height: 107px;
  width: 107px;
  margin-bottom: 5px;
}

.about ul li .board-desc {
  font-family: Helvetica, Arial;
  color: #666;
  font-size: 11px;
  line-height: 14px;
  clear: both;
  margin-top: 5px;
}

/** Random **/
.category .pagetitle,
.search .pagetitle {
  border-bottom: 1px solid #323232;
  margin-bottom: 20px;
  padding-bottom: 5px;
  width: 100%;
}

@media only screen and (max-width: 783px) {
  body .main-well-sponsored {
    border: 2px solid #d01c10;
    border-left: 0;
    border-right: 0;
    margin-right: -15px;
    margin-left: -15px;
  }
  body .main-well-sponsored .inlinead {
    margin-left: -25px;
  }
}
#ytplayer {
  display: block;
}

#ytplaylist {
  background: #dcb350;
}

#ytplaylist .item {
  cursor: pointer;
  height: 160px;
  margin-right: 1px;
  padding: 8px;
  background: #feca50;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

#ytplaylist .item:hover {
  background: #a55114;
}

#ytplaylist .item:hover a {
  color: #fff;
  text-decoration: none;
}

#ytplaylist .owl-item .ytPLitem {
  color: #444;
  display: block;
  line-height: 1.2em;
}

#ytplaylist .item img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 3px;
}

#ytplaylist .owl-buttons {
  background: #a55114;
  height: 28px;
}

/**
 * Mobile Footer Sidebar
 */
.mobile-sidebar {
  display: block;
  padding: 0 10px;
}

@media only screen and (min-width: 783px) {
  .mobile-sidebar {
    display: none;
  }
}
/**
 * Mobile Ad Styles
 */
@media screen and (max-width: 660px) {
  .ad {
    display: block;
    width: 100%;
    margin-top: 0;
    padding: 10px 0;
  }
  #sidebar {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 10px solid #000;
  }
  .leaderboard.container {
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 10px solid #000;
  }
  .leaderboard.container > div {
    padding: 10px 0;
  }
  .widget_ad_widget {
    margin: 15px -15px;
    padding: 15px;
  }
  .home > .ad,
  .archive > .ad {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 660px) and (max-width: 660px) {
  .home > .ad,
  .archive > .ad {
    padding: 0;
  }
}
@media screen and (max-width: 660px) {
  .home > .ad #div-id-for-top-728x90,
  .archive > .ad #div-id-for-top-728x90 {
    margin-bottom: 0 !important;
  }
  .home > .leaderboard,
  .archive > .leaderboard {
    margin-bottom: 0;
  }
  .home > .ad > div > div,
  .archive > .ad > div > div {
    margin-bottom: 0;
    padding-bottom: 5px;
  }
  .single > .ad {
    margin-bottom: 0;
  }
  .single > .ad #div-id-for-top-728x90 {
    margin-bottom: 0 !important;
  }
  .single > .leaderboard {
    margin-bottom: 0;
  }
  .single > .ad > div > div {
    margin-bottom: 0;
    padding-bottom: 5px;
  }
}
/* End mobile ad styles */
@media only screen and (max-width: 441px) {
  .gallery-launch-btn-cnt {
    display: none;
  }
}
.mobile-sidebar .widget_text h3.widget-title {
  border: none;
  color: #0b1013;
  font-size: 2rem;
  padding: 12px 0 20px;
  overflow: hidden;
  font-family: "miller-headline", serif;
  font-weight: 900;
  position: relative;
  overflow: hidden;
}
.mobile-sidebar .widget_text h3.widget-title:after {
  border-top: 4px solid #0b1013;
  content: "";
  height: 5px;
  margin-left: 15px;
  position: absolute;
  top: 25px;
  width: 100%;
}

#sticky-footer-ad-container {
  display: none;
  overflow: hidden;
}

#sticky-footer-ad-container .sticky-footer-ad {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 799px) {
  #sticky-footer-ad-container.sticky-footer-ad--show {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 101;
    width: 100%;
    min-height: 0px;
  }
}
.sticky-footer-ad__close {
  box-shadow: -1px 1px 1px 1px rgba(0, 0, 0, 0.55);
  position: absolute;
  background: white;
  bottom: 15px;
  width: 10px;
  height: 10px;
  line-height: 1;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transform: translateX(-50%);
  left: calc(50% + 180px);
  z-index: 1000;
}
.sticky-footer-ad__close:hover {
  cursor: pointer;
}

.animated {
  display: block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
form input[type=email] {
  background-color: #E1E1E3;
}

.newslist .ad {
  margin-left: -10px;
  margin-right: -10px;
}

.inlinead > div,
.ad > div > div {
  padding: 10px;
  margin: 0 -10px 1.25rem;
}

@media screen and (min-width: 800px) {
  .inlinead > div,
  .ad > div > div {
    background: none;
    box-shadow: none;
    padding: 0;
    margin: auto;
  }
}
.inlinead > div iframe,
.ad > div > div iframe {
  margin: auto;
}

@media screen and (max-width: 799px) {
  .inlinead {
    clear: both;
    text-align: center;
    /*
    margin-left: -10px;
    margin-right: -10px;
    */
  }
  .inlinead > div {
    margin-top: 10px;
  }
  #masthead .ad {
    float: none;
  }
}
.inlinead:after,
.ad:after {
  margin-top: -10px;
}

.logo-wrapper {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

body:not(.home) .logo-wrapper {
  background: #f9eaee;
  text-align: center;
  width: 100%;
}

body.logo--hidden #masthead {
  top: -193px !important;
}

body.logo--sticky #masthead {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: calc(100% - 20px);
  right: 10px;
  left: 10px;
}
body.logo--sticky #masthead .container {
  max-width: 100%;
}
body.logo--sticky .navbar-top {
  margin-bottom: 76px;
}
body.logo--sticky .related-articles-strip-wrapper {
  width: calc(100vw - 20px);
  box-sizing: border-box;
  margin-left: 0;
  margin-right: 10px;
}

@media only screen and (max-width: 600px) {
  #wpadminbar {
    top: 0;
    position: fixed;
  }
}
.sidebar__ad,
.sidebar__sticky {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}
@media (max-width: 50em) {
  .sidebar__ad,
  .sidebar__sticky {
    height: auto !important;
    margin-bottom: 0 !important;
  }
  .sidebar__ad .sidebar__top-sticky__inner-wrap,
  .sidebar__ad .sidebar__middle-sticky__inner-wrap,
  .sidebar__ad .sidebar__bottom-sticky__inner-wrap,
  .sidebar__sticky .sidebar__top-sticky__inner-wrap,
  .sidebar__sticky .sidebar__middle-sticky__inner-wrap,
  .sidebar__sticky .sidebar__bottom-sticky__inner-wrap {
    margin: 0 auto;
    position: relative !important;
    top: 0 !important;
  }
}

.main-sectional .sidebar {
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 800px) {
  .sidebar__sticky {
    width: 300px;
  }
  .sidebar__top-sticky__inner-wrap,
  .sidebar__middle-sticky__inner-wrap,
  .sidebar__bottom-sticky__inner-wrap {
    max-width: 300px;
    width: 100%;
  }
}
@media only screen {
  .hide-for-small-down {
    display: none !important;
  }
}
@media only screen and (min-width: 800px) {
  .hide-for-small-down {
    display: inherit !important;
  }
  body.home #main,
  body.archive.category #main {
    width: 100%;
  }
  .main-sectional {
    margin-bottom: 30px;
    width: 100%;
  }
  .main-sectional .sidebar {
    align-items: flex-end;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 30px;
    margin-right: 0;
    margin-bottom: 30px;
    min-width: 300px;
    text-align: center;
  }
  .main-sectional .sidebar > div:not(.sidebar__ad) {
    margin: 0 auto;
  }
  .sidebar.sectional .sidebar__sticky p {
    font-size: 1em;
  }
  #mainContent .sidebar.sectional .widget {
    padding-bottom: 12px;
  }
  #mainContent .sidebar.sectional ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #mainContent .sidebar.sectional .widget-sponsor .content,
  #mainContent .sidebar.sectional .widget-sponsor .image {
    float: none;
    width: 100%;
  }
  #mainContent .sidebar.sectional .widget-sponsor .content p {
    padding-left: 12px;
    padding-right: 12px;
  }
  #mainContent .sidebar.sectional .widget-sponsor .content > div {
    padding-left: 0;
    padding-right: 0;
  }
  #mainContent .sidebar.sectional .widget-sponsor .title a {
    font-size: 1.5em;
  }
  #mainContent .sidebar.sectional .widget-sponsor .image img {
    max-height: none;
    max-width: none;
    width: 100%;
  }
  #mainContent .sidebar.sectional .sponsor-sidebar {
    width: 300px;
    margin-left: auto;
  }
  #container #comments {
    border-top: 0;
    margin-top: 20px;
  }
  .widget.widget_twitter_activity {
    height: 600px;
  }
  #div-id-for-TL-rail-2 {
    margin-top: 30px;
    overflow: auto;
  }
}
#comments {
  margin: 0 auto;
}
#comments #disqus_thread {
  margin: 0 auto;
  max-width: 760px;
}
#comments .section-header-insert {
  text-align: left;
}

.related-articles-strip-wrapper {
  background: #f9eaee;
  border-top: 1px solid #CCB7AE;
  display: none;
  margin: 0;
  max-height: 0;
  position: relative;
  transition: max-height 1.2s ease-in-out 0.5s;
  transition-delay: 0.5s;
  overflow: hidden;
}
@media (min-width: 48em) {
  .related-articles-strip-wrapper {
    margin-top: 74px;
  }
  .logo--sticky .related-articles-strip-wrapper {
    margin-top: 74px;
  }
}
@media (min-width: 64.0625em) {
  .related-articles-strip-wrapper {
    margin-top: 0;
  }
  .logo--sticky .related-articles-strip-wrapper {
    margin-top: 0;
  }
}

.related-articles-strip-wrapper.expanded {
  max-height: 500px;
}

@media screen and (min-width: 800px) {
  .related-articles-strip-wrapper {
    display: block;
  }
}
.articles-strip {
  z-index: 2;
  margin: 0 auto;
  padding: 10px 0;
  max-width: 1296px;
}

.strip-article-content {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  display: block;
  height: 75px;
  padding: 0 8px;
  overflow: hidden;
}

.strip-article-content > a {
  display: block;
  z-index: 2;
}

.strip-article-photo,
.strip-article-thumbnail > img {
  vertical-align: top;
  float: left;
  margin: 0 3.5% 0 0;
  max-width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 4px;
}

.strip-article-title {
  display: table-cell;
  text-transform: none;
  line-height: 1;
}

.strip-article-title:after {
  border: none;
  display: none;
}

.strip-article-title > a {
  font-size: 14px;
  display: block;
  font-family: "miller-headline", serif;
  font-weight: 400;
}

.related-stories {
  overflow: hidden;
  border-top: 4px solid #f1f1f2;
  border-bottom: 4px solid #f1f1f2;
  padding: 15px 0;
}

.related-stories .strip-article-content {
  padding: 15px 0;
  max-height: none;
  border-right: none;
}

@media screen and (min-width: 40.063em) {
  .related-stories .strip-article-content {
    width: 33.333%;
    float: left;
    padding: 0 10px;
  }
}
.postHeader {
  /*
  .shareaholic-share-buttons-container.shareaholic-flat li.shareaholic-share-button .shareaholic-share-button-container .shareaholic-service-icon {
  	font-size: 20px!important;
  	height: 30px!important;
  	width: 30px!important;
  	margin-left: 8px!important;

  	&:hover {
  		background: none!important;
  	}
  }
  	*/
}
@media (min-width: 48em) {
  .postHeader {
    max-width: 760px;
  }
}
.page .postHeader, .single .postHeader {
  box-sizing: border-box;
  margin: 15px 0 30px 15px;
  width: 100%;
  /*
  & > * {
  	padding-left: 15px;
  	padding-right: 15px;
  }
  	*/
}
@media (min-width: 48em) {
  .page .postHeader, .single .postHeader {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 790px) {
  .page .postHeader, .single .postHeader {
    margin-right: 15px;
    width: auto;
  }
}
.postHeader h1 {
  font-family: "miller-headline", serif;
  font-weight: 900;
}
.postHeader ul li {
  font-size: 1.6rem;
}
.postHeader .post-interaction {
  border-bottom: 1px solid var(--silver-pink);
  margin-bottom: 15px;
}
.postHeader .shareaholic-canvas {
  line-height: 1;
}
.postHeader .shareaholic-share-buttons-container li.shareaholic-share-button {
  padding-left: 0;
  padding-right: 0;
}
.postHeader .comment-count-link {
  margin-left: 15px;
}
.postHeader .comment-count-link:before {
  display: inline-block;
  border-left: 1px solid var(--silver-pink);
  padding-left: 16px;
  position: relative;
  top: 4px;
  text-indent: -6000px;
  transform: rotate(30deg);
  content: ".";
}
.postHeader .comment-count-link a {
  color: #0b1013;
}
.postHeader .comment-count-link a:hover, .postHeader .comment-count-link a:focus, .postHeader .comment-count-link a:active {
  color: #c35251;
}

.bg-svg {
  margin: auto;
}

#hero-tops {
  margin-bottom: 0;
}
@media (min-width: 48em) {
  #hero-tops {
    padding-top: 15px;
  }
}
#hero-tops .post-label {
  font-size: 0.8125rem;
}

.home #mainContent {
  padding: 0;
}

.sectional-content {
  max-width: 960px;
}
.single .sectional-content {
  max-width: 760px;
}

#sectional-content-second,
#sectional-content-third {
  width: auto;
}
.sectional-content {
  float: none;
  width: 100%;
}
.single .sectional-content {
  max-width: 760px;
}
.sectional-content .grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sectional-content-wrapper {
  display: flex;
  flex-direction: column;
}
.home .sectional-content-wrapper {
  padding: 0 15px;
}
@media (min-width: 50em) {
  .sectional-content-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 82.5em) {
  .home .sectional-content-wrapper {
    padding: 0;
  }
}

.pre-footer-menu {
  background: #ccc;
  padding: 10px;
}
.pre-footer-menu ul {
  list-style: none;
  text-align: center;
  margin: 0;
}
.pre-footer-menu ul li {
  display: inline-block;
  float: none;
  margin: 0 20px;
  font-size: 16px;
  font-weight: 900;
}
.pre-footer-menu ul li a {
  display: inline-block;
  border-radius: 4px;
  color: #fff;
  background: #000;
  padding: 12px 20px;
}

#footer {
  background-color: #262a33;
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #f9eaee;
  display: block;
  margin: 0;
  width: 100%;
  padding: 15px 15px 200px;
  box-sizing: border-box;
  font-size: 16px;
}
#footer p {
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#footer .footer-newsletter {
  color: #fff;
  border-bottom: 1px dashed #6a6a6a;
}
#footer .footer-newsletter > div {
  max-width: 1024px;
}
@media only screen and (max-width: 1024px) {
  #footer .footer-newsletter > div {
    max-width: 660px;
  }
  #footer .footer-newsletter > div p br {
    display: none;
  }
}
@media only screen and (min-width: 900px) {
  #footer .footer-newsletter > div {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
  #footer .footer-newsletter > div > div {
    width: 50%;
  }
}
#footer .footer-newsletter h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}
#footer .footer-newsletter p {
  font-size: 1.1rem;
  line-height: 1.5;
}
#footer .footer-newsletter .w-1\/2 {
  padding-right: 30px;
}
#footer .footer-newsletter .pb-signup {
  padding-top: 30px;
}
@media (max-width: 47.99em) {
  #footer .footer-newsletter .pb-signup .pb-form__inputs-wrapper {
    border: none;
    flex-direction: column;
  }
}
#footer .footer-site-info {
  align-items: flex-start;
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  justify-content: space-between;
  text-align: center;
}
#footer .footer-site-info > * {
  width: 100%;
  max-width: 1296px;
}
#footer .footer-site-info .footer-colophon {
  max-width: 320px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
#footer .footer-site-info .footer-colophon img {
  width: 100%;
  max-width: 100%;
}
#footer .footer-site-info .footer-colophon p {
  margin-top: 15px;
  text-align: left;
}
@media (min-width: 28.125em) {
  #footer .footer-site-info .footer-content {
    display: flex;
    justify-content: space-between;
  }
  #footer .footer-site-info .footer-content > div {
    text-align: left;
  }
  #footer .footer-site-info .footer-content > div .widget-title {
    text-align: left;
  }
}
#footer .footer-site-info .footer-content > div {
  flex: 1;
  font-size: 0.9rem;
  text-align: center;
}
#footer .footer-site-info .footer-content > div:nth-child(2) .menu li a i {
  font-size: 2rem;
  margin-right: 8px;
  vertical-align: middle;
  width: 36px;
}
#footer .footer-site-info .footer-content > div .widget-title {
  text-align: center;
}
#footer .footer-site-info .footer-content > div .menu li {
  text-align: center;
}
@media (min-width: 20em) {
  #footer .footer-site-info .footer-content > div .widget-title {
    text-align: left;
  }
  #footer .footer-site-info .footer-content > div .menu li {
    text-align: left;
  }
}
#footer .footer-site-info .footer-content .widget-title {
  text-transform: uppercase;
}
#footer .footer-site-info .footer-content .menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
#footer .footer-site-info .footer-content .menu li {
  text-align: left;
  font-size: 0.9rem;
}
#footer .footer-site-info .footer-content .menu li + li {
  margin-top: 15px;
}
@media (min-width: 64.0625em) {
  #footer .footer-site-info .footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
  }
  #footer .footer-site-info .footer-content p {
    text-align: left;
  }
}
@media (max-width: 64.0525em) {
  #footer .footer-site-info .footer-content > div {
    width: 33%;
  }
}
@media (max-width: 19.99em) {
  #footer .footer-site-info .footer-content > div {
    width: 100%;
    text-align: center;
  }
  #footer .footer-site-info .footer-content > div * {
    text-align: center;
  }
}
@media (max-width: 28.115em) {
  #footer .footer-site-info .footer-content > div {
    width: 100%;
    margin-bottom: 60px;
    margin-left: 0;
    margin-right: 0;
  }
  #footer .footer-site-info .footer-content > div *,
  #footer .footer-site-info .footer-content > div .widget-title {
    text-align: center !important;
  }
}
#footer .footer-site-info a {
  color: #f9eaee;
}
@media (min-width: 64.0625em) {
  #footer .footer-site-info {
    display: flex;
    justify-content: space-between;
    flex: 1;
  }
  #footer .footer-site-info .footer-colophon {
    margin-right: 120px;
  }
  #footer .footer-site-info .footer-colophon img {
    margin: 0 30px 0 0 !important;
    max-width: 200px;
  }
}
#footer .footer-credits {
  border-top: 1px dashed #6a6a6a;
  font-size: 0.75rem;
  margin-top: 60px;
  opacity: 0.8;
  padding-top: 60px;
}
#footer .footer-credits a {
  color: #f9eaee;
  text-decoration: underline;
}
#footer p {
  font-size: 0.85rem;
}

.wp-caption p.wp-caption-text,
.wp-caption {
  font-size: 0.75rem;
  font-style: italic;
  max-width: 100%;
}

@media only screen and (max-width: 800px) {
  .wp-caption {
    width: 100% !important;
  }
}
.wp-element-caption {
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
}

.entry p,
.entry ol li,
.entry ul li,
.entry blockquote {
  color: #0b1013;
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}
.entry p strong,
.entry p b,
.entry p em,
.entry p i,
.entry ol li strong,
.entry ol li b,
.entry ol li em,
.entry ol li i,
.entry ul li strong,
.entry ul li b,
.entry ul li em,
.entry ul li i,
.entry blockquote strong,
.entry blockquote b,
.entry blockquote em,
.entry blockquote i {
  color: #0b1013;
}
.entry p a,
.entry ol li a,
.entry ul li a,
.entry blockquote a {
  color: #0b1013;
  border-bottom: 1px dashed #c35251;
}
.entry p a:hover,
.entry ol li a:hover,
.entry ul li a:hover,
.entry blockquote a:hover {
  color: #0b1013;
  border-bottom: 2px solid #0b1013;
  text-decoration: none;
}
.entry > p a, .entry > li a {
  color: #0b1013;
  border-bottom: 1px dashed #c35251;
}
.entry > p a:hover, .entry > li a:hover {
  color: #0b1013;
  border-bottom: 2px solid #0b1013;
  text-decoration: none;
}
.entry blockquote {
  background-color: #e2c9cf;
  border-left: none;
  border-radius: 3px;
  width: 100%;
  font-family: "miller-headline", serif;
  font-size: 1.1rem;
  position: relative;
}
.entry blockquote p {
  font-size: 1.1rem;
  font-family: "miller-headline", serif;
  padding: 0 40px;
}
.entry blockquote:before {
  color: #f9eaee;
  content: "“";
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
  font-size: 6rem;
  position: absolute;
  left: 0px;
  top: -4px;
  line-height: 1;
}
.entry blockquote:after {
  color: #f9eaee;
  content: "”";
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
  font-size: 6rem;
  position: absolute;
  right: 0px;
  bottom: -4px;
  line-height: 20px;
}
.entry iframe {
  max-width: 100%;
}
.entry iframe[src*="youtube.com"], .entry iframe[src*="vimeo.com"] {
  aspect-ratio: 16/9;
  height: auto;
}
.entry.author-info {
  margin-top: 0;
  margin-bottom: 30px;
  padding: 11px 15px 3px 15px !important;
  border-radius: 5px;
  background-color: rgba(226, 201, 207, 0.3);
  border: 1px solid #e2c9cf;
}
.entry.author-info h3 {
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.entry.author-info p,
.entry.author-info ol li,
.entry.author-info ul li,
.entry.author-info em,
.entry.author-info i,
.entry.author-info strong,
.entry.author-info blockquote,
.entry.author-info b {
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
}
.entry.author-info p {
  align-self: center;
  margin-top: 0;
  text-align: left;
}
.entry.author-info a {
  border-bottom: 1px dashed #c35251;
}
.entry.author-info a:hover {
  color: #c35251;
  border-bottom: 1px solid #c35251;
}
.entry.author-info .author-img {
  background: #f9eaee;
  border-radius: 0 5px 0 0;
  float: right;
  margin: -16px -20px -3px 15px;
  padding: 4px !important;
  z-index: 2;
  position: relative;
}
.entry.author-info .author-img img {
  border-radius: 0 5px 0 0px;
}
.entry .archive.author .author-info {
  background-color: #0b1013;
  color: #f9eaee;
}
.entry .archive.author .author-info p,
.entry .archive.author .author-info ol li,
.entry .archive.author .author-info ul li,
.entry .archive.author .author-info em,
.entry .archive.author .author-info i,
.entry .archive.author .author-info strong,
.entry .archive.author .author-info blockquote,
.entry .archive.author .author-info b {
  color: #f9eaee;
}
.entry .archive.author .author-info a {
  color: #f9eaee;
}
.entry .archive.author .author-info a:hover {
  color: #c35251;
  border-bottom: 1px solid #c35251;
}
.entry .archive.author .author-info .author-img {
  margin: -15px -18px -3px 15px;
}
.entry iframe[src*="youtube.com"] {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}
.entry .google-auto-placed.ap_container {
  margin-bottom: 2.5em;
}
.entry p {
  line-height: 1.65em;
}
.entry > * + p, .entry > * + .wp-caption {
  margin-top: 1rem;
}
.entry iframe {
  margin-top: 1rem;
}
.entry .wp-block-heading {
  margin-bottom: 1rem;
}
.entry .pb-signup .pb-form__inputs-wrapper.pb-form__inputs-stacked {
  text-align: left;
}
.entry .pb-signup .pb-form__inputs-wrapper.pb-form__inputs-stacked label {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.entry .pb-signup .pb-form__inputs-wrapper.pb-form__inputs-stacked * + label:not(.pb-signup__label-more) {
  margin-top: 1.5rem;
}
.entry .pb-signup .pb-form__inputs-wrapper.pb-form__inputs-stacked label[for=email] {
  display: block;
}
.entry .pb-signup .pb-form__inputs-wrapper.pb-form__inputs-stacked input {
  background-color: #fff;
}
.entry .pb-signup .pb-form__inputs-wrapper.pb-form__inputs-stacked textarea {
  font-family: "miller-headline", serif;
  width: 100%;
  max-width: 100%;
  height: 150px;
}
.entry .pb-signup .pb-signup__privacy {
  text-align: left;
}

body.author .section-header {
  margin-bottom: 0;
  border: none;
}

@media (min-width: 48em) {
  .site-width {
    display: flex;
  }
}
@media (max-width: 82.49em) {
  .site-width {
    padding-left: 15px;
    padding-right: 15px;
  }
}

body.single #sidebar {
  border: none;
  text-align: center;
}
body.single #sidebar > * {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 64.0625em) {
  body.single #sidebar {
    margin-left: 30px;
  }
  body.single #sidebar > * {
    max-width: 300px;
  }
}

.archive .main-sectional {
  display: flex;
  flex-direction: column;
}
@media (min-width: 50em) {
  .archive .main-sectional {
    flex-direction: row;
  }
}
.archive .category-sponsored {
  padding: 10px;
}
@media (min-width: 48em) {
  .archive .category-sponsored {
    padding: 0;
  }
}
.archive .bm-load-more {
  margin: 0 10px;
  width: calc(100% - 20px);
}
.archive.ad-moved .section-header {
  margin-top: 20px;
}
.archive .post {
  padding-top: 0;
}
.archive .sectional-content > .post + .post {
  margin-top: 30px;
}

.post + .post {
  border-top: none;
}

#container {
  background: #f9eaee;
  border: none;
  margin-bottom: 0;
}

#container {
  display: flex;
  flex-direction: column;
}
.home #container, .single #container, .tag #container {
  display: block;
  flex-wrap: wrap;
}
@media (min-width: 64.0625em) {
  #container {
    flex-direction: row;
  }
}

.tag-wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 64.0625em) {
  .tag-wrapper {
    flex-direction: row;
  }
}

.page-template-page-about #main {
  padding-right: 0;
  margin: 0 auto;
  max-width: 100%;
}
.page-template-page-about #main #mainContent {
  margin: 0 auto;
  max-width: 760px;
}
.page-template-page-about .about-staff {
  padding: 0 15px;
}
.page-template-page-about .about-staff .editorial-desc p {
  font-size: 1.5rem;
}

.page-template-page-no-side .postHeader {
  text-align: center;
}
.page-template-page-no-side .postHeader .post-title {
  text-align: center;
}
.page-template-page-no-side .postHeader .post-meta-wrap {
  justify-content: center;
}
.page-template-page-no-side #main {
  max-width: 700px;
  margin: 0 auto;
}

@media only screen and (max-width: 600px) {
  .archive #mainContent {
    padding-top: 0;
  }
}

.page .post-comment-link,
.single .post-comment-link {
  display: none;
}
.page .post-meta-wrap,
.single .post-meta-wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
}
.page .post-meta-wrap .postAuthor,
.single .post-meta-wrap .postAuthor {
  color: #0b1013;
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.page .post-meta-wrap .postAuthor a,
.single .post-meta-wrap .postAuthor a {
  color: #0b1013;
  text-decoration: none;
}
.page .post-meta-wrap .postAuthor a:hover,
.single .post-meta-wrap .postAuthor a:hover {
  text-decoration: underline;
}
@media (max-width: 47.99em) {
  .page .post-meta-wrap .postAuthor,
  .page .post-meta-wrap .timestamp,
  .single .post-meta-wrap .postAuthor,
  .single .post-meta-wrap .timestamp {
    width: 45%;
  }
  .page .post-meta-wrap .timestamp,
  .single .post-meta-wrap .timestamp {
    text-align: right;
  }
  .page .post-meta-wrap .post-meta-icons,
  .single .post-meta-wrap .post-meta-icons {
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }
}
.page .post-author,
.single .post-author {
  margin-right: 3px;
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.page .post-label,
.single .post-label {
  margin-bottom: 8px;
}
.page .post-label a,
.single .post-label a {
  font-size: 0.8125rem;
  vertical-align: middle;
}
.page .post-title,
.single .post-title {
  font-weight: 900;
  line-height: 1em;
  text-align: left;
  font-size: 34px;
  margin: 0 0 8px;
}
@media (min-width: 50em) {
  .page .post-title,
  .single .post-title {
    font-size: 3rem;
  }
}
.page .post-excerpt,
.single .post-excerpt {
  margin-bottom: 20px;
  font-size: 1.15rem;
}
.page #container,
.single #container {
  display: flex;
  flex-direction: column;
}
.page #main,
.single #main {
  width: 100%;
  position: relative;
  flex: none;
}
.page #mainContent,
.single #mainContent {
  box-sizing: border-box;
  max-width: 800px;
}
.page #sidebar,
.single #sidebar {
  width: 100%;
  display: flex;
  flex: none;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 64.0625em) {
  .page #sidebar,
  .single #sidebar {
    width: 300px;
    flex: none;
  }
}
.page #sidebar h2.widgettitle,
.single #sidebar h2.widgettitle {
  font-family: "miller-headline", serif;
  font-weight: 400;
}
.page .comments-wrap,
.single .comments-wrap {
  width: 100%;
}

.single #post-bottom .adsbygoogle {
  max-width: calc(100vw - 30px);
}

header.section-header {
  padding-top: 30px;
}
header.section-header h1 {
  font-size: 1.875rem;
  font-weight: 900;
  border-bottom: 4px solid #0b1013;
  margin-bottom: 20px;
  padding-bottom: 15px;
  text-align: center;
}
@media (min-width: 48em) {
  header.section-header h1 {
    font-size: 3.125rem;
  }
}
@media (max-width: 82.49em) {
  header.section-header h1 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
header.section-header .archive-description {
  max-width: 700px;
  width: fit-content;
  margin: 0 auto 30px;
  font-size: 20px;
  line-height: 30px;
  padding: 0 15px;
}
header.section-header .archive-description p {
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 30px;
}
header.section-header:after {
  content: none;
}

#ps_caff {
  height: 0;
}

.post-meta-author-img {
  margin-right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.logo-wrapper {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 64.0625em) {
  .logo-wrapper {
    margin-right: 0;
    margin-bottom: 0;
  }
}
.logo-wrapper #logo-print {
  display: none;
}
.logo-wrapper #logo {
  float: none;
  margin: auto;
  max-width: 400px;
  position: relative;
  right: 0;
  width: 100%;
}
.logo-wrapper #logo a {
  background-position: center center;
  height: 70px;
}
.logo-wrapper #logo a:active, .logo-wrapper #logo a:focus {
  outline: 1px dashed;
}
.logo-wrapper #logo a:hover {
  border-bottom: none;
}
.logo-wrapper a:active, .logo-wrapper a:focus {
  outline: 1px dashed;
}
.logo-wrapper > img {
  height: 50px !important;
}
.logo-wrapper .mobile-logo {
  opacity: 0;
  width: 145px;
}
.logo-wrapper .logo-tagline {
  color: #0b1013;
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12.5px;
  font-weight: normal;
  line-height: 1;
  margin: 10px auto 0;
  text-align: center;
  text-transform: lowercase;
}

.wp-block-button a:hover {
  background-color: #c35251;
  color: #f9eaee;
  text-decoration: none;
}

.post-title {
  font-family: "miller-headline", serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1.9rem;
  margin: 0 0 8px;
}
.postHeader .post-title {
  letter-spacing: 1px;
}
.post-title a {
  color: #0b1013;
  text-decoration: none;
}
.post-title a:hover, .post-title a:focus, .post-title a:active {
  border-bottom: none;
  color: #0b1013;
}

.post-label {
  color: #0b1013;
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.6;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
}
.post-label a {
  color: #0b1013;
  text-decoration: none;
}

.post-excerpt,
.post-excerpt p {
  font-size: 0.9rem;
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.3;
}
.postHeader .post-excerpt,
.postHeader .post-excerpt p {
  line-height: 1.4;
}

.post-author {
  font-size: 13px;
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: bold;
}
.post-author a {
  color: #0b1013;
  text-decoration: none;
}

.comment-count-link {
  color: #0b1013;
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
  white-space: nowrap;
}
.comment-count-link:hover * {
  color: #0b1013 !important;
}

.timestamp {
  font-family: "Libre Franklin", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

#logo {
  display: none;
}

.logo-wrapper #logo-print {
  display: block;
  margin: 0 auto;
  width: 300px;
  height: 70px !important;
}

.wp-block-post-content,
.wp-block-post-content * {
  font-family: "PT Serif", Georgia, "Times New Roman", serif;
}

#navbar-top,
#desktop-menu-wrap,
#mobile-menu-wrap,
.navbar.global-nav,
.page .sidebar,
.page #sidebar,
.single .sidebar,
#post-bottom,
.footer-newsletter,
#pb-signup-pop,
.ad,
.ad.leaderboard,
.adsbygoogle,
.post-meta-icons,
.footer-content {
  display: none !important;
}

a:after {
  content: "" !important;
}

#content {
  justify-content: center;
}

.single .postHeader {
  margin-left: auto;
  margin-right: auto;
}

#mainContent .entry .wp-caption.alignnone {
  width: 100% !important;
}

#mainContent .entry .wp-caption.alignnone img {
  width: 100%;
  height: auto;
}

#mainContent .entry a,
.postFooter a {
  text-decoration: none;
}

body {
  background-color: #f9eaee;
  padding-bottom: 0 !important;
  print-color-adjust: exact;
}

/*# sourceMappingURL=print.css.map */