/*
Theme Name: Toronto Review v5.9.88
Theme URI: https://thetorontoreview.ca/
Author: Dimitri Karakostas for Work Four
Author URI: https://thetorontoreview.ca/
Description: Final edit 4/26, do not use old code!
Version: 5.9.8
Text Domain: toronto-review
*/


/* === Typography: Toronto Review font system === */
@font-face{
  font-family: "Orpheus Pro Condensed";
  src: url("assets/fonts/OrpheusPro-Condensed.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face{
  font-family: "Rustique Serif";
  src: url("assets/fonts/RustiqueSerif.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face{
  font-family: "Aptos Display";
  src: url("assets/fonts/AptosDisplay-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face{
  font-family: "Aptos Display";
  src: url("assets/fonts/AptosDisplay-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face{
  font-family: "Aptos Display";
  src: url("assets/fonts/AptosDisplay-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face{
  font-family: "STIX Two Text";
  src: url("assets/fonts/STIXTwoText-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face{
  font-family: "STIX Two Text";
  src: url("assets/fonts/STIXTwoText-Italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root{
  --rule: 2px;

  --container-max: 1200px;

  
  /* Colourways */
  --c-olive: #51421C;
  --c-slime: #E0E22A;
  --c-claret: #380011;
  --c-scarlet: #ff3600;
  --c-teal: #002224;
  --c-sky: #0a89ff;
--font-display: "Orpheus Pro Condensed", Georgia, "Times New Roman", Times, serif;
  --font-emphasis: "Rustique Serif", Georgia, "Times New Roman", Times, serif;
  --font-ui: "Aptos Display", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-body: "Aptos Display", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-article: "STIX Two Text", Georgia, "Times New Roman", Times, serif;

  --link-hover: #0a89ff;
}

/* Global type defaults */
body{
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.4;
}

.site-main{
  font-family: var(--font-body);
}

/* Titles */
.band__title,
h1,h2,h3{
  font-family: var(--font-display);
  font-weight: 400;
}

/* Navigation + secondary text */
.topbar__menu,
.topbar__brand,
.band__meta,
.pagination,
.site-footer .footer-inner{
  font-family: var(--font-ui);
}

/* Article body */
.single .content,
.single .content p,
.single .content li,
.single .content blockquote{
  font-family: var(--font-article);
  font-size: 18px;
  line-height: 1.55;
}

/* Emphasis font (use sparingly by applying .emphasis) */
.emphasis{
  font-family: var(--font-emphasis);
}

/* Link hover in body copy */
.single .content a:hover{
  color: var(--link-hover);
}

:root{
  --rule: 2px;

  --container-max: 1200px;

  --black:#000;
  --white:#fff;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
}

a{ color: inherit; }

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}


/* Sticky header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 4000;
}
.admin-bar .site-header{
  top: 32px;
}
@media (max-width: 782px){
  .admin-bar .site-header{
    top: 46px;
  }
}

/* Header variants */
.site-header.header--dark{
  background: var(--black);
  color: var(--white);
}
.site-header.header--light{
  background: var(--white);
  color: var(--black);
  border-bottom: var(--rule) solid var(--black);
}

.site-header.header--light .topbar__logo,
.site-header.header--light .topbar__search-icon{
  filter: invert(1);
}
.site-header.header--light .topbar__menu .menu-item.donate > a{
  border-color:#000;
  background:#000;
  color:#fff;
}
.single .site-main,
.single .tr-single,
.single .tr-single__hero,
.single .tr-single__body,
.single .tr-single__after{
  background:#fff;
}

/* Topbar */
.topbar{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:16px;
  padding:14px 20px;
}

.topbar__logo{
  display:block;
  height:30px;
  width:auto;
}

.topbar a{ text-decoration:none; }

.topbar__brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:14px;
}

.topbar__menu{
  list-style:none;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  margin:0;
  padding:0;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

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

.topbar__menu .menu-item.donate > a{
  border:1px solid #fff;
  border-radius:999px;
  padding:8px 14px;
  display:inline-block;
  text-decoration:none;
  background:#fff;
  color:#000;
}


.topbar__searchwrap{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  position:relative;
}

.topbar__searchtoggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:40px;
  height:40px;
  padding:0;
  border:0;
  background:transparent;
  color:inherit;
  cursor:pointer;
  order:2;
  flex:0 0 auto;
}

.topbar__searchform{
  width:176px;
  margin:0;
  order:1;
}

.topbar__searchform[hidden]{
  display:none !important;
}

.topbar__searchpill{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  min-height:40px;
  padding:0 14px;
  border:1px solid currentColor;
  border-radius:999px;
  background:transparent;
  color:inherit;
}

.topbar__searchinput{
  appearance:none;
  -webkit-appearance:none;
  flex:1 1 auto;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  color:inherit;
  font-family: var(--font-ui);
  font-weight:700;
  font-size:13px;
  line-height:1;
  letter-spacing:0.08em;
  text-transform:uppercase;
  padding:0;
}

.topbar__searchinput::placeholder{
  color:inherit;
  opacity:1;
}

.topbar__search-icon{
  width:22px;
  height:22px;
  object-fit:contain;
  flex:0 0 auto;
}


.topbar__menu-toggle{
  display:none;
  width:40px;
  height:40px;
  padding:0;
  border:0;
  background:transparent;
  color:inherit;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
}
.topbar__menu-toggle span{
  display:block;
  width:20px;
  height:1.5px;
  background:currentColor;
}

.tr-mobile-menu{
  position:fixed;
  inset:0;
  z-index:9999;
  background:#000;
  color:#fff;
  padding:24px 22px 32px;
}
.tr-mobile-menu[hidden]{
  display:none !important;
}
.tr-mobile-menu__close{
  position:absolute;
  top:22px;
  right:20px;
  width:56px;
  height:56px;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  cursor:pointer;
}
.tr-mobile-menu__close span{
  position:absolute;
  left:12px;
  top:27px;
  width:32px;
  height:2px;
  background:currentColor;
}
.tr-mobile-menu__close span:first-child{ transform:rotate(45deg); }
.tr-mobile-menu__close span:last-child{ transform:rotate(-45deg); }

.tr-mobile-menu__panel{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:34px;
  padding:170px 32px 54px;
}

.tr-mobile-menu__searchform{
  width:min(100%, 732px);
}
.tr-mobile-menu__searchpill{
  width:100%;
  min-height:94px;
  border:2px solid #fff;
  border-radius:999px;
  background:transparent;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:24px;
  padding:18px 34px;
}
.tr-mobile-menu__search-icon{
  width:40px;
  height:40px;
  object-fit:contain;
  flex:0 0 auto;
}
.tr-mobile-menu__searchinput{
  appearance:none;
  -webkit-appearance:none;
  width:100%;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  color:#fff;
  font-family: var(--font-body);
  font-size:58px;
  line-height:1;
  letter-spacing:0;
  text-transform:uppercase;
  padding:0;
}
.tr-mobile-menu__searchinput::placeholder{
  color:#fff;
  opacity:1;
}

.tr-mobile-menu__link{
  display:block;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  font-family: var(--font-body);
  font-size:62px;
  line-height:1;
  letter-spacing:0;
  text-transform:uppercase;
  text-decoration:none;
  text-align:center;
}
.tr-mobile-menu__donate{
  background:#fff;
  color:#000;
  border-radius:999px;
  padding:22px 42px 18px;
  margin-top:8px;
}
.tr-mobile-menu__creature{
  margin-top:auto;
  width:100%;
  display:flex;
  justify-content:center;
  padding-top:32px;
}
.tr-mobile-menu__creature img{
  width:min(100%, 340px);
  height:auto;
}
button.tr-mobile-menu__link{
  appearance:none;
  -webkit-appearance:none;
  text-align:center;
}
body.tr-mobile-menu-open{
  overflow:hidden;
}

/* Layout */
.container,
.tr-container{
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}


/* Bands / stripes */
.band{
  display:grid;
  grid-template-columns: 1fr 170px;
  column-gap: 18px;
  padding: 14px 32px;
  position: relative;
}

.band__title{
  margin:0;
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1.05;
}

.band__title a{
  text-decoration:none;
}
.band__title a:hover{ text-decoration: none; }

.band__meta{
  display:grid;
  grid-template-rows:auto auto 1fr;
  text-align:right;
}

.band__author{
  font-weight:700;
  text-transform:none; /* Sentence Case */
  font-size:11px;
  letter-spacing:.02em;
  text-decoration:none;
}
.band__author:hover{ text-decoration: none; }

.band__date{
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-top:4px;
}

.band__section{
  align-self:end;
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-top:8px;
  text-decoration:none;
}
.band__section:hover{ text-decoration: none; }


/* Restored desktop home/index full-bleed formatting */
.band{
  position:relative;
  border:0;
  --hover-bg: transparent;
  --hover-fg: inherit;
  transition: background-color 140ms ease, color 140ms ease;
}
.band::before{
  content:"";
  position:absolute;
  inset:0;
  width:100vw;
  left:0;
  margin-left:calc(50% - 50vw);
  background:transparent;
  z-index:0;
  pointer-events:none;
  transition:background-color 140ms ease, color 140ms ease;
}
.band::after{
  content:"";
  position:absolute;
  width:100vw;
  left:0;
  margin-left:calc(50% - 50vw);
  bottom:0;
  border-bottom:var(--rule) solid var(--black);
  pointer-events:none;
  z-index:0;
}
.band > *{
  position:relative;
  z-index:1;
}
.band:hover::before{ background:var(--hover-bg, transparent); }
.band:hover{ color:var(--hover-fg, inherit); }
.band:hover a,
.band a,
.band a:hover,
.band a:focus{
  color:inherit;
  text-decoration:none !important;
}
.band:nth-of-type(6n+1){ --hover-bg: var(--c-olive);  --hover-fg: var(--c-slime); }
.band:nth-of-type(6n+2){ --hover-bg: var(--c-scarlet);--hover-fg: var(--c-claret); }
.band:nth-of-type(6n+3){ --hover-bg: var(--c-sky);    --hover-fg: var(--c-teal); }
.band:nth-of-type(6n+4){ --hover-bg: var(--c-slime);  --hover-fg: var(--c-olive); }
.band:nth-of-type(6n+5){ --hover-bg: var(--c-claret); --hover-fg: var(--c-scarlet); }
.band:nth-of-type(6n+6){ --hover-bg: var(--c-teal);   --hover-fg: var(--c-sky); }

.signup-bar{
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #002224;
}

.signup-bar__inner{
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  background: transparent;
}

.signup-bar a{
  display: block;
  text-decoration: none;
}

.signup-bar__img{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: transparent;
}

.promo-row{
  position:relative;
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:0;
  row-gap:0;
  overflow:visible;
  border:0;
}
.promo-row::after{
  content:"";
  position:absolute;
  left:0;
  width:100vw;
  margin-left:calc(50% - 50vw);
  bottom:0;
  border-bottom:var(--rule) solid var(--black);
  pointer-events:none;
}
.promo-row__item{ display:block; padding:0; margin:0; height:100%; }
.promo-row__item img{ display:block; width:100%; height:100%; object-fit:cover; object-position:center; }
.promo-row__item--shop img{ object-fit:contain; object-position:center; }

.tr-container{
  max-width:980px;
  margin:0 auto;
  padding:0 24px;
}
.tr-insert{
  position:relative;
  border:0;
  padding:0;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
}
.tr-adbar{ background:#fff; }
.tr-adbar__box{
  background:#9b9b9b;
  padding:22px 0;
  text-align:center;
}
.tr-adbar__label{
  font-family: var(--font-ui);
  letter-spacing:0.35em;
  font-size:14px;
  color:#111;
}
.tr-adbar .tr-container{ padding-top:10px; padding-bottom:10px; }
.tr-adbar__link{ display:block; }
.tr-adbar__img{ display:block; width:100%; height:auto; }
.tr-eventsbar{ background:#380011; }
.tr-eventsbar .tr-container{ padding-top:0; padding-bottom:0; }
.tr-eventsbar__img{
  display:block;
  width:100%;
  height:auto;
}
.tr-keepreading{ background:#0A89FF; }
.tr-keepreading__toggle{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:18px 0;
  width:100%;
  background:transparent;
  border:0;
  cursor:pointer;
}
.tr-keepreading__img{
  display:block;
  width:100%;
  max-width:980px;
  height:auto;
}
.tr-keepreading__panel{
  background:#fff;
  border-top:var(--rule) solid var(--black);
}
.tr-keepreading__panel-inner{
  padding-top:0;
  padding-bottom:0;
}
.tr-keepreading__list{
  list-style:none;
  margin:0;
  padding:0;
}
.tr-keepreading__item{
  border-bottom:var(--rule) solid var(--black);
}
.tr-keepreading__postlink{
  display:block;
  font-family:var(--font-display);
  font-size:clamp(40px, 5vw, 70px);
  line-height:.92;
  color:#111;
  text-decoration:none;
  padding:22px 0 18px;
}
.tr-keepreading__postlink:hover,
.tr-keepreading__postlink:focus{
  color:#111;
  text-decoration:none;
}
@media (max-width: 767px){
  .tr-keepreading__postlink{
    font-size:clamp(28px, 10vw, 54px);
    line-height:.96;
    padding:18px 0 16px;
  }
}

/* Pagination */
.pagination, .page-links{
  padding: 16px;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pagination .page-numbers{
  margin-right: 10px;
  text-decoration: none;
}
.pagination .current{
  text-decoration: underline;
}

/* Footer */
.tr-footer{
  background:#000;
  color:#fff;
}
.tr-footer__panel{
  background:#000;
  color:#fff;
  border-top:none;
}
.tr-footer__inner{
  padding:16px 0 18px;
}
.tr-footer__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:72px;
}
.tr-footer__main{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
  min-width:0;
  padding-top:2px;
}
.tr-footer__cols{
  display:grid;
  grid-template-columns:max-content max-content;
  column-gap:108px;
}
.tr-footer__col{
  display:flex;
  flex-direction:column;
  gap:20px;
  min-width:104px;
  justify-content:flex-start;
}
.tr-footer__link{
  font-family: var(--font-ui);
  font-weight:700;
  font-size:12px;
  line-height:1;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:#fff;
  text-decoration:none;
  white-space:nowrap;
}
.tr-footer__link:hover{opacity:0.8;}
.tr-footer__metaRow{
  display:grid;
  grid-template-columns:max-content max-content;
  align-items:center;
  column-gap:108px;
}
.tr-footer__social{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:0;
}
.tr-footer__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px;
  height:16px;
  text-decoration:none;
  opacity:0.95;
}
.tr-footer__icon img{
  display:block;
  height:14px;
  width:auto;
}
.tr-footer__icon:hover{opacity:0.75;}
.tr-footer__pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  margin-top:0;
  padding:6px 16px;
  border-radius:999px;
  background:#fff;
  color:#000;
  text-decoration:none;
  font-family: var(--font-ui);
  font-weight:700;
  font-size:12px;
  line-height:1;
  letter-spacing:0.04em;
  text-transform:uppercase;
}
.tr-footer__pill:hover{opacity:0.85;}
.tr-footer__copyright{
  margin-top:0;
  font-family: var(--font-ui);
  font-weight:700;
  font-size:12px;
  line-height:1;
  letter-spacing:0.02em;
  text-transform:uppercase;
  opacity:0.95;
}
.tr-footer__creature{
  display:flex;
  align-items:flex-start;
  justify-content:flex-end;
  min-width:210px;
  padding-top:0;
}
.tr-footer__creature img{
  width:170px;
  max-width:170px;
  height:auto;
  display:block;
  opacity:0.85;
}

.tr-footer__creature{
  text-decoration:none;
}
.tr-footer__creature:hover img{
  opacity:1;
}

@media (max-width: 780px){
  .tr-footer__inner{
    padding:20px 0 28px;
  }

  .tr-footer__top{
    display:grid;
    grid-template-columns:minmax(0, 1fr) 156px;
    grid-template-areas:
      "cols creature"
      "pill creature"
      "social social"
      "copyright copyright";
    align-items:start;
    column-gap:18px;
    row-gap:0;
  }

  .tr-footer__main{
    display:contents;
  }

  .tr-footer__cols{
    grid-area:cols;
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .tr-footer__col{
    min-width:0;
    gap:14px;
  }

  .tr-footer__link{
    font-size:14px;
    letter-spacing:0.02em;
    line-height:1.05;
  }

  .tr-footer__metaRow{
    grid-area:pill;
    display:contents;
    margin-top:18px;
  }

  .tr-footer__pill{
    grid-area:pill;
    justify-self:start;
    align-self:start;
    margin-top:18px;
    padding:7px 16px 6px;
    font-size:11px;
    letter-spacing:0.02em;
  }

  .tr-footer__social{
    grid-area:social;
    gap:22px;
    margin-top:28px;
    justify-content:center;
    justify-self:center;
    width:auto;
    max-width:none;
    position:static;
    left:auto;
    transform:none;
  }

  .tr-footer__icon{
    width:30px;
    height:30px;
  }

  .tr-footer__icon img{
    height:24px;
  }

  .tr-footer__copyright{
    grid-area:copyright;
    justify-self:center;
    margin-top:24px;
    font-size:12px;
    letter-spacing:0.01em;
    width:auto;
    max-width:none;
    text-align:center;
    position:static;
    left:auto;
    transform:none;
  }

  .tr-footer__creature{
    grid-area:creature;
    min-width:0;
    width:156px;
    justify-content:flex-end;
    align-self:start;
    padding-top:42px;
  }

  .tr-footer__creature img{
    width:100%;
    max-width:156px;
  }
}

.site-header.header--light .topbar__menu .menu-item.donate > a{ border-color:#000; }



/* --- Header menu hard overrides (WP menu-safe) --- */
/* Hide SHOP link everywhere in the header nav, even if coming from wp_nav_menu */
.tr-header__nav a[href*="shop"],
.tr-header__nav a[href*="/shop"],
.tr-header__nav a[title="Shop"],
.tr-header__nav a[aria-label="Shop"]{
  display:none !important;
}

/* Force DONATE to be a filled white pill with black text (works even without custom classes) */
.tr-header__nav a[href*="donate"],
.tr-header__nav a[href*="/donate"],
.tr-header__nav a[title="Donate"],
.tr-header__nav a[aria-label="Donate"]{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 18px;
  border-radius:999px;
  background:#fff !important;
  color:#000 !important;
  border:1px solid rgba(0,0,0,0.35) !important;
  text-decoration:none !important;
}

/* Keep hover subtle but still white */
.tr-header__nav a[href*="donate"]:hover,
.tr-header__nav a[href*="/donate"]:hover{
  background:#eee !important;
  color:#000 !important;
}



/* --- Header DONATE pill (reliable via wp_nav_menu_objects) --- */
.tr-header__nav .tr-nav-donate > a,
.tr-header__nav li.tr-nav-donate > a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 18px;
  border-radius:999px;
  background:#fff !important;
  color:#000 !important;
  border:1px solid rgba(0,0,0,0.35) !important;
  text-decoration:none !important;
}
.tr-header__nav .tr-nav-donate > a:hover,
.tr-header__nav li.tr-nav-donate > a:hover{
  background:#eee !important;
  color:#000 !important;
}



/* Hide SHOP if it slips through in any markup */
.tr-header__nav li.menu-item a[title="Shop"],
.tr-header__nav li.menu-item a[aria-label="Shop"]{
  display:none !important;
}

/* Hide SHOP in the live topbar menu (header) */
.site-header .topbar__menu li.shop,
.site-header .topbar__menu li.menu-item.shop,
.site-header .topbar__menu a[href*="/shop"],
.site-header .topbar__menu a[href*="shop"]{
  display:none !important;
}

/* --- FINAL: force DONATE pill to be white w/ black text in the actual header markup --- */
/* (Previous overrides targeted .tr-header__nav; the live header uses .topbar__menu) */
.site-header .topbar__menu li.donate > a,
.site-header .topbar__menu li.menu-item.donate > a,
.site-header .topbar__menu li.donate a,
.site-header .topbar__menu a[href*="/donate"],
.site-header .topbar__menu a[href*="donate"]{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:8px 18px !important;
  border-radius:999px !important;
  background:#fff !important;
  color:#000 !important;
  border:0 !important;
  text-decoration:none !important;
}

.site-header .topbar__menu li.donate > a:hover,
.site-header .topbar__menu li.menu-item.donate > a:hover,
.site-header .topbar__menu a[href*="/donate"]:hover,
.site-header .topbar__menu a[href*="donate"]:hover{
  background:#eee !important;
  color:#000 !important;
}


/* --- Force header DONATE pill (robust) --- */
.site-header .topbar__menu li.tr-nav-donate > a,
.site-header .topbar__menu li.donate > a,
.site-header .topbar__menu a[href*="donate"]{
  background:#fff !important;
  color:#000 !important;
  border-color:#fff !important;
  text-decoration:none !important;
}
.site-header .topbar__menu li.tr-nav-donate > a:hover,
.site-header .topbar__menu li.donate > a:hover,
.site-header .topbar__menu a[href*="donate"]:hover{
  background:#fff !important;
  color:#000 !important;
  text-decoration:none !important;
}



/* --- Donate pill (header) via injected menu class --- */
.topbar__menu li.tr-donate > a,
.tr-header__nav li.tr-donate > a,
.topbar__menu a.tr-donate-link,
.tr-header__nav a.tr-donate-link{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:8px 18px !important;
  border-radius:999px !important;
  background:#ffffff !important;
  color:#000000 !important;
  border:1px solid rgba(255,255,255,0.9) !important;
  text-decoration:none !important;
  line-height:1 !important;
}

.topbar__menu li.tr-donate > a:hover,
.tr-header__nav li.tr-donate > a:hover,
.topbar__menu a.tr-donate-link:hover,
.tr-header__nav a.tr-donate-link:hover{
  background:#eeeeee !important;
  color:#000000 !important;
  text-decoration:none !important;
}

/* =========================
   DONATE PAGE
========================= */

/* Donate page matches Desktop-Donate.pdf mock */
body.is-donate,
body.is-donate .site {
  background: #000;
}

body.is-donate .site-main.tr-donate {
  background: #000;
  color: #fff;
}

body.is-donate .tr-donate__hero,
body.is-donate .tr-donate__content {
  background: #000;
}

body.is-donate .tr-donate__hero {
  padding-top: 44px;
  padding-bottom: 14px;
}

body.is-donate .tr-donate__hero-img {
  display: block;
  width: 100%;
  height: auto;
}

body.is-donate .tr-donate__content {
  padding-top: 28px;
  padding-bottom: 90px;
}

body.is-donate .tr-donate__container {
  max-width: 860px;
  margin: 0 auto;
}

body.is-donate .tr-donate__copy {
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

body.is-donate .tr-donate__copy p {
  margin: 0 0 18px;
}

body.is-donate .tr-donate__cta-wrap {
  display: flex;
  justify-content: center;
  margin: 34px 0 44px;
}

body.is-donate .tr-donate__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 64px;
  border-radius: 999px;
  background: #d6dd00;
  color: #2c2c2c;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
}

body.is-donate .tr-donate__cta:hover {
  filter: brightness(0.95);
}

body.is-donate .tr-donate__address {
  text-align: center;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 44px;
}

/* No underlines on links for donate page */
body.is-donate a {
  text-decoration: none;
}

body.is-donate a:hover {
  text-decoration: none;
}

.tr-donate {
  background: #000;
  color: #fff;
}

.tr-donate a {
  color: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}


/* ===================== CONTACT PAGE ===================== */

body.is-contact {
  background: #000;
  color: #fff;
}

body.is-contact .site,
body.is-contact .site-main {
  background: #000;
}

body.is-contact a {
  color: #fff;
  text-decoration: none;
}

body.is-contact a:hover {
  color: #0a89ff;
  text-decoration: none;
}

.tr-contact {
  padding: 0;
}

.tr-contact__hero {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.tr-contact__hero img {
  width: 100%;
  max-width: 932px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.tr-contact__content {
  max-width: 980px;
  margin: 0 auto;
  padding: 54px 24px 64px;
  text-align: center;
  font-size: 18px;
  line-height: 1.55;
}

.tr-contact__content p {
  margin: 0 0 26px;
}

.tr-contact__content strong {
  font-weight: 800;
}

.tr-contact__masthead {
  /* Match the narrower masthead card width from the mockup */
  max-width: 520px;
  margin: 40px auto 0;
  background: #0A89FF;
  padding: 46px 24px;
  text-align: center;
  color: #001C1C;
}

.tr-contact__masthead-title {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 26px;
}

.tr-contact__masthead-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.tr-contact__masthead-role {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 8px;
  color: #001C1C;
}

.tr-contact__masthead-names {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
  color: #001C1C;
}

@media (max-width: 720px) {
  .signup-bar__inner{ padding: 0 16px; }
  .promo-row{ padding: 0 16px; }
  .tr-container{ padding: 0 16px; }
  .tr-adbar .tr-container{ padding-top:8px; padding-bottom:8px; }
  .tr-contact__content {
    font-size: 16px;
    padding-top: 40px;
  }
  .tr-contact__masthead {
    padding: 34px 18px;
  }
  .tr-contact__masthead-names {
    font-size: 18px;
  }
}

/* ==============================
   SUPPORTERS PAGE
   ============================== */

body.is-supporters {
  background: #000;
}

.tr-supporters {
  background: #000;
  color: #fff;
  padding: 0;
}

.tr-supporters__hero {
  display: block;
  width: 100%;
  max-width: 932px;
  height: auto;
  margin: 0 auto;
  background: #000;
}

.tr-supporters__wrap {
  padding: 44px 0 0;
}

.tr-supporters__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.tr-supporters__heading-image {
  display: block;
  width: 100%;
  max-width: 430px;
  height: auto;
  margin: 0 auto 28px;
}

.tr-supporters__heading-image--corporate {
  max-width: 418px;
}

.tr-supporters__heading-image--individual {
  max-width: 426px;
}

.tr-supporters__col-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: 0.02em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.tr-supporters__tier {
  margin: 18px 0 10px;
}

.tr-supporters__tier-label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.95;
  margin-bottom: 10px;
}

.tr-supporters__names {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.02em;
}

.tr-supporters__names--spaced {
  margin-top: 26px;
}

.tr-supporters__logos {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
  padding-bottom: 64px;
  border: 0;
}

.tr-supporters__logos img {
  width: min(280px, 32%);
  height: auto;
  display: block;
}

@media (max-width: 860px) {
  .tr-supporters__wrap {
    padding: 32px var(--tr-container-padding, 24px) 48px;
  }

  .tr-supporters__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .tr-supporters__logos {
    flex-direction: column;
    align-items: center;
    margin-top: 52px;
  }

  .tr-supporters__logos img {
    width: min(320px, 80%);
  }
}

/* ==============================
   PITCH PAGE
   ============================== */

body.is-pitch {
  background: #000;
}

.tr-page--pitch {
  background: #000;
  color: #fff;
}

/* Safety net: force Pitch template to stay black/white even if other global
   styles override defaults (some WP installs inject page builder styles). */
body.page-template-page-pitch,
body.page-template-page-pitch .site,
body.page-template-page-pitch #page,
body.page-template-page-pitch #content,
body.page-template-page-pitch main.site-main {
  background: #000 !important;
  color: #fff !important;
}

body.page-template-page-pitch .tr-pitch__section,
body.page-template-page-pitch .tr-pitch__hero {
  background: #000 !important;
}

body.page-template-page-pitch .tr-pitch__copy,
body.page-template-page-pitch .tr-pitch__copy p,
body.page-template-page-pitch .tr-pitch__copy-note {
  color: #fff !important;
}

body.page-template-page-pitch .tr-pitch__copy a,
body.page-template-page-pitch .tr-pitch__copy a:visited {
  color: #fff !important;
  text-decoration: none !important;
}

.tr-pitch__hero {
  padding: 18px 0 0;
}

.tr-pitch__hero-img {
  display: block;
  width: 100%;
  max-width: 932px;
  height: auto;
  margin: 0 auto;
}

.tr-pitch__section {
  padding: 46px 0;
}

.tr-pitch__section--last {
  padding-bottom: 76px;
}

.tr-pitch__copy {
  /* Keep Pitch body copy width consistent with other static pages (e.g., Donate). */
  max-width: 860px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.tr-pitch__copy p {
  margin: 0 0 22px;
}

.tr-pitch__copy p:last-child {
  margin-bottom: 0;
}

.tr-pitch__copy strong {
  font-weight: 700;
}

.tr-pitch__copy-note {
  margin-top: 22px;
}

.tr-pitch__bar {
  width: 100%;
  padding: 38px 0;
}

.tr-pitch__bar--reviews {
  background: #FF0000;
}

.tr-pitch__bar--fiction {
  background: #002325;
}

.tr-pitch__bar--essays {
  background: #544114;
}

.tr-pitch__bar-img {
  display: block;
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
}

@media (max-width: 720px) {
  .tr-pitch__section {
    padding: 34px 0;
  }
  .tr-pitch__copy {
    font-size: 16px;
  }
  .tr-pitch__bar {
    padding: 26px 0;
  }
}



/* -------------------- ABOUT PAGE -------------------- */

.tr-about-page {
  --tr-about-content-width: 980px;
  --tr-about-side-pad: 24px;
  --tr-about-red: rgb(56, 0, 17);
  --tr-about-orange: rgb(255, 54, 0);
  --tr-about-yellow: rgb(224, 226, 42);
  --tr-about-brown: rgb(81, 66, 28);
  background: #000;
  padding-bottom: 84px;
}


.tr-about-page .tr-static-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 44px 24px 0;
}

.tr-about-hero-picture,
.tr-about-hero-image {
  width: 100%;
  height: auto;
  display: block;
}


.tr-about-quotes {
  margin: 28px 0 0;
  background: var(--tr-about-red);
}

.tr-about-quotes-inner,
.tr-about-body .tr-static-inner {
  box-sizing: border-box;
  width: 100%;
  max-width: calc(var(--tr-about-content-width) + (var(--tr-about-side-pad) * 2));
  margin: 0 auto;
  padding-left: var(--tr-about-side-pad);
  padding-right: var(--tr-about-side-pad);
}

.tr-about-quotes-inner {
  color: var(--tr-about-orange);
  text-align: center;
  padding-top: 34px;
  padding-bottom: 30px;
}

.tr-about-quote-block {
  max-width: 820px;
  margin: 0 auto 40px;
}

.tr-about-quote-block:last-child {
  margin-bottom: 0;
}

.tr-about-quotes-inner p {
  margin: 0;
  font-family: "Aptos Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.14;
  letter-spacing: 0;
}

.tr-about-quotes-inner p + p {
  margin-top: 14px;
}

.tr-about-quotes-inner .tr-about-attr {
  font-size: 16px;
  line-height: 1.12;
}

.tr-about-quotes-inner .tr-about-attr strong {
  font-weight: 700;
}

.tr-about-quotes-inner .tr-about-attr em {
  font-style: italic;
}

.tr-about-body {
  margin: 20px 0 0;
}

.tr-about-body .tr-static-inner {
  max-width: 980px;
  color: #fff;
  font-family: "Aptos Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.14;
  padding-left: 24px;
  padding-right: 24px;
}

.tr-about-body p {
  max-width: none;
  margin: 0 0 18px;
}

.tr-about-body p:last-child {
  margin-bottom: 0;
}

.tr-about-board-wrap {
  width: 100%;
  margin: 42px 0 0;
  padding: 0 var(--tr-about-side-pad);
  box-sizing: border-box;
}


.tr-about-board {
  width: min(100%, 520px);
  margin: 0 auto;
  background: var(--tr-about-yellow);
  color: var(--tr-about-brown);
  text-align: center;
  padding: 22px 22px 20px;
  box-sizing: border-box;
}

.tr-about-board h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.tr-about-board ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tr-about-board li {
  margin: 0;
  font-family: "Aptos Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.18;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .tr-about-page {
    --tr-about-side-pad: 20px;
    --tr-about-content-width: 760px;
  }

  .tr-about-page .tr-static-hero {
    max-width: 980px;
    padding: 34px 20px 0;
  }

  .tr-about-quotes-inner {
    padding-top: 28px;
    padding-bottom: 26px;
  }

  .tr-about-quote-block {
    max-width: 760px;
    margin-bottom: 30px;
  }

  .tr-about-quotes-inner p {
    font-size: 20px;
  }

  .tr-about-quotes-inner .tr-about-attr {
    font-size: 15px;
  }

  .tr-about-body .tr-static-inner {
    max-width: 980px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .tr-about-board {
    width: min(100%, 470px);
    padding: 20px 18px 18px;
  }
}


/* ==============================
   RESPONSIVE PASS
   ============================== */

img {
  max-width: 100%;
  height: auto;
}

body {
  overflow-x: hidden;
}

/* Tablet */
@media (max-width: 1100px) {
  .container,
  .tr-container,
  .signup-bar__inner,
  .promo-row,
  .tr-contact__content,
  .tr-pitch__copy,
  body.is-donate .tr-donate__container {
    max-width: 100%;
  }

  .topbar {
    gap: 14px;
    padding: 12px 16px;
  }

  .topbar__logo {
    height: 28px;
    width: auto;
  }

  .topbar__menu {
    gap: 16px;
    font-size: 12px;
  }

  .band {
    grid-template-columns: 1fr 148px;
    column-gap: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .band__title {
    font-size: clamp(28px, 4vw, 52px);
  }

  .tr-supporters__grid {
    gap: 48px;
  }

  .tr-supporters__heading-image {
    max-width: 360px;
  }

  .tr-contact__content {
    padding-top: 44px;
  }

  .tr-contact__masthead {
    max-width: 480px;
  }

  .tr-pitch__bar {
    padding: 28px 0;
  }

  .tr-about-page {
    padding-bottom: 64px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .container,
  .tr-container,
  .signup-bar__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header .container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .topbar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 64px;
    padding: 0;
  }

  .topbar__brand {
    min-width: 0;
    flex: 0 1 auto;
    align-self: center;
  }

  .topbar__logo {
    display: block;
    height: 22px;
    width: auto;
    max-width: 100%;
  }

  .topbar__menu,
  .topbar__searchform {
    display: none;
  }

  .topbar__menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    align-self: center;
    justify-self: auto;
    margin: 0;
    line-height: 1;
  }

  .tr-mobile-menu__panel {
    padding-top: 132px;
    gap: 26px;
  }

  .tr-mobile-menu__searchpill {
    min-height: 70px;
    padding: 14px 22px;
    gap: 16px;
  }

  .tr-mobile-menu__search-icon {
    width: 28px;
    height: 28px;
  }

  .tr-mobile-menu__searchinput {
    font-size: 40px;
  }

  .tr-mobile-menu__link {
    font-size: 42px;
  }

  .tr-mobile-menu__donate {
    padding: 16px 28px 13px;
  }

  .tr-mobile-menu__creature img {
    width: min(100%, 240px);
  }

  .band {
    grid-template-columns: 1fr;
    row-gap: 10px;
    padding: 16px 0;
  }

  .band__title {
    font-size: clamp(34px, 10.25vw, 52px);
    line-height: 0.98;
  }

  .band__meta {
    text-align: left;
    gap: 3px;
  }

  .band__author {
    font-size: 19px;
    line-height: 1.1;
  }

  .band__date {
    font-size: 17px;
    margin-top: 3px;
  }

  .band__section {
    font-size: 17px;
    margin-top: 7px;
  }

  .pagination,
  .page-links {
    padding-left: 16px;
    padding-right: 16px;
  }

  .signup-bar__img,
  .tr-eventsbar__img,
  .tr-keepreading__img,
  .tr-pitch__bar-img,
  .tr-donate__hero-img,
  .tr-contact__hero img,
  .tr-supporters__hero,
  .tr-about-page .tr-static-hero img {
    width: 100%;
    height: auto;
  }

  .promo-row {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding: 0;
    grid-template-columns: 1fr;
  }

  .promo-row__item img {
    height: auto;
    object-fit: contain;
  }

  .tr-footer__inner {
    padding: 26px 0 24px;
  }

  body.is-donate .tr-donate__hero {

    padding-top: 28px;
    padding-bottom: 8px;
  }

  body.is-donate .tr-donate__content {
    padding-top: 20px;
    padding-bottom: 56px;
  }

  body.is-donate .tr-donate__copy {
    font-size: 15px;
    line-height: 1.55;
  }

  body.is-donate .tr-donate__cta-wrap {
    margin: 26px 0 32px;
  }

  body.is-donate .tr-donate__cta {
    width: 100%;
    max-width: 320px;
    padding: 13px 20px;
  }

  body.is-donate .tr-donate__address {
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 32px;
  }

  .tr-contact__hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .tr-contact__content {
    padding: 36px 16px 56px;
    font-size: 16px;
    line-height: 1.45;
  }

  .tr-contact__content p {
    margin-bottom: 22px;
  }

  .tr-contact__masthead {
    max-width: 100%;
    margin-top: 32px;
    padding: 28px 16px;
  }

  .tr-contact__masthead-list {
    gap: 20px;
  }

  .tr-contact__masthead-role {
    font-size: 11px;
  }

  .tr-contact__masthead-names {
    font-size: 17px;
    line-height: 1.2;
  }

  .tr-supporters__wrap {
    padding: 28px 0 40px;
  }

  .tr-supporters__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tr-supporters__heading-image,
  .tr-supporters__heading-image--corporate,
  .tr-supporters__heading-image--individual {
    max-width: min(100%, 320px);
    margin-bottom: 22px;
  }

  .tr-supporters__logos {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    padding-bottom: 40px;
  }

  .tr-supporters__logos img {
    width: min(250px, 78%);
  }

  .tr-pitch__hero {
    padding-top: 12px;
  }

  .tr-pitch__section {
    padding: 28px 0;
  }

  .tr-pitch__section--last {
    padding-bottom: 46px;
  }

  .tr-pitch__copy {
    font-size: 16px;
    line-height: 1.45;
  }

  .tr-pitch__copy p {
    margin-bottom: 18px;
  }

  .tr-pitch__bar {
    padding: 20px 0;
  }

  .tr-about-page {
    --tr-about-side-pad: 0;
    --tr-about-content-width: 100%;
    padding-bottom: 0;
    background: #000;
  }

  .tr-about-page .tr-static-hero {
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .tr-about-hero-picture,
  .tr-about-hero-image {
    width: 100%;
    height: auto;
    display: block;
  }


  .tr-about-quotes {
    margin: 0;
    background: rgb(56, 0, 17);
  }

  .tr-about-quotes-inner {
    max-width: none;
    padding: 30px 22px 34px;
    color: rgb(255, 54, 0);
    text-align: center;
  }

  .tr-about-quote-block {
    max-width: none;
    margin: 0 0 44px;
  }

  .tr-about-quote-block:last-child {
    margin-bottom: 0;
  }

  .tr-about-quotes-inner p {
    font-size: 17px;
    line-height: 1.15;
  }

  .tr-about-quotes-inner .tr-about-attr {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.08;
  }

  .tr-about-quotes-inner .tr-about-attr strong {
    font-weight: 700;
  }

  .tr-about-body {
    margin: 0;
    background: #000;
  }

  .tr-about-body .tr-static-inner {
    max-width: none;
    padding: 34px 22px 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.22;
    letter-spacing: 0;
  }

  .tr-about-body p {
    margin: 0 0 32px;
  }

  .tr-about-board-wrap {
    width: 100%;
    margin: 0;
    padding: 28px 0 0;
    background: #000;
  }

  .tr-about-board {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 24px 18px 28px;
    background: var(--c-slime);
    color: var(--c-olive);
  }

  .tr-about-board h2 {
    margin: 0 0 24px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(44px, 10.2vw, 64px);
    line-height: 0.92;
    letter-spacing: 0;
    color: var(--c-olive);
  }

  .tr-about-board li {
    font-family: var(--font-ui);
    font-weight: 400;
    font-size: clamp(15px, 4.55vw, 22px);
    line-height: 1.24;
    letter-spacing: 0;
    color: var(--c-olive);
  }
}

@media (max-width: 480px) {
  .topbar__brand {
    min-width: 0;
  }

  .topbar {
    min-height: 56px;
  }

  .topbar__logo {
    height: 20px;
  }

  .topbar__menu-toggle {
    width: 36px;
    height: 36px;
  }

  .tr-mobile-menu {
    padding: 18px 12px 24px;
  }

  .tr-mobile-menu__close {
    top: 14px;
    right: 10px;
    width: 48px;
    height: 48px;
  }

  .tr-mobile-menu__close span {
    left: 10px;
    top: 23px;
    width: 28px;
  }

  .tr-mobile-menu__panel {
    padding: 88px 18px 30px;
    gap: 18px;
  }

  .tr-mobile-menu__searchpill {
    min-height: 58px;
    padding: 11px 18px;
    gap: 12px;
  }

  .tr-mobile-menu__search-icon {
    width: 22px;
    height: 22px;
  }

  .tr-mobile-menu__searchinput {
    font-size: 28px;
  }

  .tr-mobile-menu__link {
    font-size: 32px;
  }

  .tr-mobile-menu__donate {
    padding: 13px 24px 10px;
    margin-top: 2px;
  }

  .tr-mobile-menu__creature {
    margin-top: 34px;
    padding-top: 0;
  }

  .tr-mobile-menu__creature img {
    width: min(100%, 180px);
  }

  .tr-about-board {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tr-footer__inner {
    padding: 20px 0 30px;
  }

  .tr-footer__top {
    grid-template-columns: minmax(0, 1fr) 126px;
    grid-template-areas:
      "cols creature"
      "pill creature"
      "social social"
      "copyright copyright";
    column-gap: 8px;
  }

  .tr-footer__link {
    font-size: 12px;
  }

  .tr-footer__metaRow {
    margin-top: 18px;
  }

  .tr-footer__pill {
    padding: 7px 16px 6px;
  }

  .tr-footer__creature {
    width: 126px;
    padding-top: 50px;
  }

  .tr-footer__creature img {
    width: 100%;
    max-width: 126px;
  }

  .tr-footer__social {
    gap: 18px;
    margin-top: 24px;
  }

  .tr-footer__icon {
    width: 28px;
    height: 28px;
  }

  .tr-footer__icon img {
    height: 22px;
  }

  .tr-footer__copyright {
    margin-top: 22px;
  }
}


/* About page footer seam fix */
body.page-template-page-about .tr-about-page,
body.page-template-page-about .tr-footer,
body.page-template-page-about .tr-footer__panel,
body.page-template-page-about .tr-footer__inner {
  border-top: 0 !important;
  box-shadow: none !important;
}


/* === Global footer EVENTS pill consistency === */
.tr-footer__pill,
.tr-footer__pill:link,
.tr-footer__pill:visited,
.tr-footer__pill:hover,
.tr-footer__pill:focus,
.tr-footer__pill:active{
  background:#fff !important;
  color:#000 !important;
  text-decoration:none !important;
  border:none !important;
  box-shadow:none !important;
  opacity:1 !important;
}

/* === External Donate link in header/mobile menu === */
.tr-mobile-menu__donate{
  text-decoration:none !important;
}

/* === 404 page === */
.error404 .site,
.error404 .site-main{
  background:#fff;
}

.tr-404{
  background:#fff;
  color:#000;
}

.tr-404__inner{
  min-height:calc(100vh - 260px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding-top:72px;
  padding-bottom:72px;
}

.tr-404__title{
  margin:0;
  max-width:820px;
  font-family:var(--font-display);
  font-weight:400;
  font-size:48px;
  line-height:1.05;
  letter-spacing:0;
}

.tr-404__creature{
  margin-top:36px;
  width:100%;
  display:flex;
  justify-content:center;
}

.tr-404__creature img{
  display:block;
  width:min(100%, 220px);
  height:auto;
}

@media (max-width: 780px){
  .tr-404__inner{
    min-height:calc(100vh - 220px);
    padding-top:56px;
    padding-bottom:56px;
  }

  .tr-404__title{
    max-width:320px;
    font-size:34px;
    line-height:1.08;
  }

  .tr-404__creature{
    margin-top:28px;
  }

  .tr-404__creature img{
    width:min(100%, 180px);
  }
}

/* Shared shell container for header + footer */
.tr-site-shell{
  width:100%;
  max-width:980px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
  box-sizing:border-box;
}
@media (max-width:720px){
  .tr-site-shell{
    padding-left:16px;
    padding-right:16px;
  }
}


/* Section heroes */
.tr-section-hero{
  position:relative;
  width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  background:#000;
  overflow:hidden;
}
.tr-section-hero__inner{
  padding-top:0;
  padding-bottom:0;
}
.tr-section-hero__img{
  display:block;
  width:100%;
  height:auto;
}


/* === Single post editorial template === */
.tr-single{
  background:#fff;
}
.tr-single__hero,
.tr-single__body,
.tr-single__after{
  background:#fff;
}
.tr-single__inner{
  width:min(100%, 1180px);
  margin:0 auto;
  padding-left:32px;
  padding-right:32px;
}
.tr-single__inner--hero{
  padding-top:36px;
  padding-bottom:44px;
}
.tr-single__title{
  font-family:var(--font-display);
  font-size:clamp(72px, 8.5vw, 132px);
  line-height:1.03;
  letter-spacing:-0.02em;
  text-align:center;
  max-width:860px;
  margin:0 auto 24px;
}
.tr-single__meta-row{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  align-items:start;
  justify-items:center;
  max-width:860px;
  margin:0 auto 24px;
  text-align:center;
}
.tr-single__lede{
  font-family:var(--font-ui);
  font-style:italic;
  font-size:18px;
  line-height:1.35;
  margin:0;
  max-width:34ch;
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}
.tr-single__meta{
  text-align:center;
  font-family:var(--font-ui);
}
.tr-single__byline{
  font-weight:700;
  font-size:18px;
  line-height:1.2;
  margin-bottom:4px;
}
.tr-single__date{
  display:block;
  font-size:18px;
  line-height:1.2;
  text-transform:uppercase;
}
.tr-single__media-wrap{
  position:relative;
  max-width:720px;
  margin:0 auto;
}
.tr-single__figure{
  margin:0;
}
.tr-single__image-shell{
  overflow:hidden;
  aspect-ratio:1.82 / 1;
  border-radius:0;
  clip-path:ellipse(50% 50% at 50% 50%);
}
.tr-single__image{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.tr-single__credit{
  margin-top:12px;
  text-align:left;
  font-family:var(--font-ui);
  font-style:normal;
  font-weight:400;
  font-size:12px;
  line-height:1.35;
  text-transform:none;
  max-width:100%;
}
.tr-single__sectionburst{
  position:absolute;
  right:-28px;
  top:-18px;
  width:150px;
  height:150px;
  background:#ff2500;
  clip-path:polygon(50% 0%, 61% 24%, 86% 8%, 75% 34%, 100% 40%, 76% 53%, 93% 78%, 66% 73%, 66% 100%, 50% 78%, 34% 100%, 34% 73%, 7% 78%, 24% 53%, 0% 40%, 25% 34%, 14% 8%, 39% 24%);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:18px;
  text-align:center;
}
.tr-single__sectionburst a,
.tr-single__sectionburst span{
  font-family:var(--font-ui);
  font-weight:700;
  font-size:18px;
  text-transform:uppercase;
  text-decoration:none;
}
.tr-single__body{
  border-top:var(--rule) solid #000;
}
.tr-single__inner--body{
  max-width:760px;
  padding-top:42px;
  padding-bottom:42px;
}
.tr-single .content,
.tr-single .content p,
.tr-single .content li,
.tr-single .content blockquote{
  font-family:var(--font-article);
  font-size:26px;
  line-height:1.3;
}
.tr-single .content p{
  margin:0 0 1.3em;
}
.tr-single .content blockquote{
  margin:1.5em auto;
  max-width:700px;
  text-align:center;
  font-family:var(--font-display);
  font-size:140px;
  line-height:0.98;
  border:0;
  padding:0;
}
.tr-single .content blockquote p:last-child{
  margin-bottom:0;
}

.tr-single .content blockquote p{
  font-family:var(--font-display);
  font-size:inherit;
  line-height:inherit;
  margin:0;
}
@media (max-width: 900px){
  .tr-single .content blockquote p{
    font-size:inherit;
    line-height:inherit;
  }
}
@media (max-width: 640px){
  .tr-single .content blockquote p{
    font-size:inherit;
    line-height:inherit;
  }
}
.tr-single__sectionbreak{
  margin:1.2em auto 1.4em;
  text-align:center;
  font-family:var(--font-display);
  font-size:42px;
  line-height:1;
}
.tr-single__after{
  border-top:var(--rule) solid #000;
}
.tr-single__inner--after{
  max-width:760px;
  padding-top:36px;
  padding-bottom:46px;
}
.tr-single__bio,
.tr-single__bio p{
  font-family:var(--font-ui);
  font-size:17px;
  line-height:1.45;
}
.tr-single__bio p{
  margin:0;
}
.tr-single__tags{
  display:flex;
  flex-wrap:wrap;
  gap:26px;
  margin-top:34px;
}
.tr-single__tags a{
  font-family:var(--font-ui);
  font-size:16px;
  line-height:1.2;
  text-transform:uppercase;
  text-decoration:none;
}
.tr-single__tags a:hover{
  color:var(--link-hover);
}

@media (max-width: 900px){
  .tr-single__inner{
    padding-left:20px;
    padding-right:20px;
  }
  .tr-single__title{
    font-size:clamp(54px, 14vw, 86px);
    max-width:100%;
    margin-bottom:18px;
  }
  .tr-single__meta-row{
    grid-template-columns:1fr;
    max-width:100%;
    gap:16px;
  }
  .tr-single__media-wrap{
    max-width:100%;
  }
  .tr-single__sectionburst{
    width:108px;
    height:108px;
    right:6px;
    top:-14px;
  }
  .tr-single__sectionburst a,
  .tr-single__sectionburst span{
    font-size:14px;
  }
  .tr-single__inner--body,
  .tr-single__inner--after{
    max-width:100%;
  }
  .tr-single .content,
  .tr-single .content p,
  .tr-single .content li,
  .tr-single .content blockquote{
    font-size:22px;
  }
  .tr-single .content blockquote{
    font-family:var(--font-display);
    font-size:96px;
  }
}

@media (max-width: 640px){
  .tr-single__inner--hero{
    padding-top:24px;
    padding-bottom:28px;
  }
  .tr-single__title{
    text-align:center;
    font-size:clamp(46px, 18vw, 72px);
    line-height:1.06;
    margin-left:auto;
    margin-right:auto;
  }
  .tr-single__meta-row{
    justify-items:center;
    text-align:center;
  }
  .tr-single__lede-wrap,
  .tr-single__meta{
    width:100%;
    text-align:center;
  }
  .tr-single__lede{
    font-size:16px;
    text-align:center;
    max-width:28ch;
    margin-left:auto;
    margin-right:auto;
  }
  .tr-single__byline,
  .tr-single__date{
    font-size:16px;
    text-align:center;
  }
  .tr-single__media-wrap{
    max-width:100%;
  }
  .tr-single__sectionburst{
    position:absolute;
    right:8px;
    top:-10px;
    margin:0;
    width:92px;
    height:92px;
    z-index:3;
  }
  .tr-single .content,
  .tr-single .content p,
  .tr-single .content li{
    font-size:18px;
    line-height:1.35;
  }
  .tr-single .content blockquote{
    font-size:64px;
    line-height:0.98;
  }
  .tr-single__bio,
  .tr-single__bio p,
  .tr-single__tags a{
    font-size:14px;
  }
  .tr-single__tags{
    gap:18px;
    margin-top:24px;
  }
  .single-post .tr-single figure.wp-block-image,
  .single-post .tr-single .wp-block-image,
  .single-post .tr-single .wp-caption{
    margin-left:auto;
    margin-right:auto;
  }
  .single-post .tr-single .wp-element-caption,
  .single-post .tr-single figcaption,
  .single-post .tr-single .wp-caption-text,
  .single-post .tr-single .blocks-gallery-caption{
    display:block;
    max-width:32ch;
    margin:10px auto 0;
    text-align:center;
    font-family:var(--font-ui);
    font-size:12px;
    line-height:1.35;
  }
}

/* === v5.9.24: homepage band meta + footer type + full-bleed signup bar === */
.band__author{
  font-size:15px;
  letter-spacing:0.01em;
}
.band__date{
  font-size:14px;
  letter-spacing:0.06em;
  margin-top:5px;
}
.band__section{
  font-size:14px;
  letter-spacing:0.06em;
  margin-top:10px;
}

.tr-footer__link,
.tr-footer__pill,
.tr-footer__copyright{
  font-size:16px;
}
.tr-footer__pill{
  padding:7px 18px;
}
.tr-footer__icon{
  width:18px;
  height:18px;
}
.tr-footer__icon img{
  height:16px;
}

.signup-bar{
  position:relative;
  width:100%;
  margin:0;
  padding:0;
  overflow:hidden;
  border:0;
}
.signup-bar__inner{
  position:relative;
  z-index:1;
  max-width:980px;
  margin:0 auto;
  padding:0 24px;
}
.signup-bar__img{
  display:block;
  width:100%;
  height:auto;
}

@media (max-width:780px){
  .tr-footer__link,
  .tr-footer__pill,
  .tr-footer__copyright{
    font-size:15px;
  }
  .band__author{ font-size:16px; line-height:1.18; }
  .band__date,
  .band__section{ font-size:15px; line-height:1.18; }
}

/* Single post light header donate pill */
.single-post .site-header.header--light .topbar__menu li.tr-donate > a,
.single-post .site-header.header--light .topbar__menu li.donate > a,
.single-post .site-header.header--light .topbar__menu li.menu-item.donate > a,
.single-post .site-header.header--light .topbar__menu a[href*="donate"],
.single-post .site-header.header--light .tr-header__nav a[href*="donate"]{
  background:#000 !important;
  color:#fff !important;
  border:1px solid #000 !important;
}
.single-post .site-header.header--light .topbar__menu li.tr-donate > a:hover,
.single-post .site-header.header--light .topbar__menu li.donate > a:hover,
.single-post .site-header.header--light .topbar__menu li.menu-item.donate > a:hover,
.single-post .site-header.header--light .topbar__menu a[href*="donate"]:hover,
.single-post .site-header.header--light .tr-header__nav a[href*="donate"]:hover{
  background:#000 !important;
  color:#fff !important;
  border-color:#000 !important;
}


/* v5.9.36: tighten mobile single-post hero */
@media (max-width: 640px){
  .single-post,
  .single-post .site,
  .single-post .site-main,
  .single-post .tr-single,
  .single-post .tr-single__hero,
  .single-post .tr-single__body,
  .single-post .tr-single__after{
    background:#fff !important;
  }
  .tr-single__inner{
    padding-left:22px;
    padding-right:22px;
  }
  .tr-single__inner--hero{
    padding-top:22px;
    padding-bottom:22px;
  }
  .tr-single__title{
    font-size:clamp(34px, 12.5vw, 58px);
    line-height:1.08;
    letter-spacing:-0.015em;
    max-width:10.5ch;
    text-wrap:balance;
    margin:0 auto 18px;
  }
  .tr-single__meta-row{
    gap:12px;
    margin:0 auto 18px;
  }
  .tr-single__lede{
    max-width:24ch;
    font-size:15px;
    line-height:1.4;
  }
  .tr-single__byline,
  .tr-single__date{
    font-size:15px;
    line-height:1.25;
  }
  .tr-single__media-wrap{
    max-width:100%;
  }
  .tr-single__image-shell{
    aspect-ratio:1.68 / 1;
  }
  .tr-single__sectionburst{
    width:96px;
    height:96px;
    margin:12px auto 0;
  }
  .tr-single__sectionburst a,
  .tr-single__sectionburst span{
    font-size:12px;
  }
  .single-post .tr-single .wp-element-caption,
  .single-post .tr-single figcaption,
  .single-post .tr-single .wp-caption-text,
  .single-post .tr-single .blocks-gallery-caption{
    max-width:28ch;
    font-size:11px;
    line-height:1.35;
  }
}


/* v5.9.52: match single-post caption treatment on desktop and mobile */
.single-post .tr-single figure.wp-block-image,
.single-post .tr-single .wp-block-image,
.single-post .tr-single .wp-caption{
  margin-left:auto;
  margin-right:auto;
}
.single-post .tr-single .wp-element-caption,
.single-post .tr-single figcaption,
.single-post .tr-single .wp-caption-text,
.single-post .tr-single .blocks-gallery-caption{
  display:block !important;
  max-width:32ch !important;
  margin:10px auto 0 !important;
  text-align:center !important;
  font-family:var(--font-ui) !important;
  font-size:12px !important;
  line-height:1.35 !important;
}

/* v5.9.39b: force large Orpheus pull quotes on single posts */
.single-post .tr-single .content blockquote,
.single-post .tr-single .content .wp-block-quote,
.single-post .tr-single .content .wp-block-pullquote,
.single-post .tr-single .content .wp-block-pullquote blockquote,
.single-post .tr-single .content .is-style-default.wp-block-quote,
.single-post .tr-single .content .is-style-default.wp-block-pullquote{
  font-family: var(--font-article) !important;
  font-size: 62px !important;
  line-height: 1.02 !important;
  text-align: center !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 1.5em auto !important;
  max-width: 700px !important;
  background: transparent !important;
}

.single-post .tr-single .content blockquote p,
.single-post .tr-single .content .wp-block-quote p,
.single-post .tr-single .content .wp-block-pullquote p,
.single-post .tr-single .content .wp-block-pullquote blockquote p,
.single-post .tr-single .content .wp-block-pullquote cite,
.single-post .tr-single .content .wp-block-pullquote footer{
  font-family: var(--font-article) !important;
  font-size: inherit !important;
  line-height: inherit !important;
  text-align: center !important;
  margin: 0 !important;
}

.single-post .tr-single .content .wp-block-pullquote{
  border-top: 0 !important;
  border-bottom: 0 !important;
}

@media (max-width: 900px){
  .single-post .tr-single .content blockquote,
  .single-post .tr-single .content .wp-block-quote,
  .single-post .tr-single .content .wp-block-pullquote,
  .single-post .tr-single .content .wp-block-pullquote blockquote,
  .single-post .tr-single .content .is-style-default.wp-block-quote,
  .single-post .tr-single .content .is-style-default.wp-block-pullquote{
    font-size: 60px !important;
  }
}

@media (max-width: 640px){
  .single-post .tr-single .content blockquote,
  .single-post .tr-single .content .wp-block-quote,
  .single-post .tr-single .content .wp-block-pullquote,
  .single-post .tr-single .content .wp-block-pullquote blockquote,
  .single-post .tr-single .content .is-style-default.wp-block-quote,
  .single-post .tr-single .content .is-style-default.wp-block-pullquote{
    font-size: 40px !important;
    line-height: 1.02 !important;
    max-width: 360px !important;
  }
}


/* Supporters page hierarchy refresh */
.tr-supporters__group {
  margin: 0;
}

.tr-supporters__group + .tr-supporters__group {
  margin-top: 34px;
}

.tr-supporters__label {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 11px;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.tr-supporters__value {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tr-supporters__spacer {
  margin-top: 40px !important;
}

.tr-supporters__col > .tr-supporters__value {
  margin-top: 10px;
}

@media (max-width: 860px) {
  .tr-supporters__group + .tr-supporters__group {
    margin-top: 28px;
  }

  .tr-supporters__label {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .tr-supporters__value {
    font-size: 16px;
    line-height: 1.22;
  }

  .tr-supporters__spacer {
    margin-top: 32px !important;
  }
}


/* v5.9.45 about page type scale force */
body.page-template-page-about .tr-about-body .tr-static-inner,
body.page-template-page-about .tr-about-body .tr-static-inner p {
  font-family: "Aptos Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.18 !important;
}

body.page-template-page-about .tr-about-quotes-inner p {
  font-family: "Aptos Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 25px !important;
  line-height: 1.14 !important;
}

body.page-template-page-about .tr-about-quotes-inner .tr-about-attr,
body.page-template-page-about .tr-about-quotes-inner .tr-about-attr p {
  font-family: "Aptos Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.12 !important;
}

body.page-template-page-about .tr-about-quotes-inner .tr-about-attr strong {
  font-family: "Aptos Display Bold", "Aptos Display", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight: 700 !important;
}

@media (max-width: 767px) {
  body.page-template-page-about .tr-about-body .tr-static-inner,
  body.page-template-page-about .tr-about-body .tr-static-inner p {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  body.page-template-page-about .tr-about-quotes-inner p {
    font-size: 25px !important;
    line-height: 1.14 !important;
  }

  body.page-template-page-about .tr-about-quotes-inner .tr-about-attr,
  body.page-template-page-about .tr-about-quotes-inner .tr-about-attr p {
    font-size: 16px !important;
    line-height: 1.12 !important;
  }
}


/* v5.9.61: single post image should support arbitrary aspect ratios */
.tr-single__media-wrap{
  position:relative;
  display:table;
  width:auto;
  max-width:min(100%, 780px);
  margin:0 auto;
}
.tr-single__figure{
  margin:0;
}
.tr-single__image-shell{
  overflow:visible;
  aspect-ratio:auto;
  border-radius:0;
  clip-path:none;
}
.tr-single__image{
  display:block;
  width:auto;
  max-width:min(100%, 780px);
  height:auto;
  object-fit:contain;
}
.tr-single__sectionburst{
  right:-22px;
  top:-22px;
}
.tr-single__sectionburst--interviews a,
.tr-single__sectionburst--interviews span,
.tr-single__sectionburst--interview a,
.tr-single__sectionburst--interview span{
  font-size:15px;
}
@media (max-width: 900px){
  .tr-single__media-wrap{
    max-width:100%;
  }
  .tr-single__image{
    max-width:100%;
  }
  .tr-single__sectionburst{
    right:-12px;
    top:-12px;
  }
  .tr-single__sectionburst--interviews a,
  .tr-single__sectionburst--interviews span,
  .tr-single__sectionburst--interview a,
  .tr-single__sectionburst--interview span{
    font-size:12px;
  }
}
@media (max-width: 640px){
  .tr-single__media-wrap{
    display:block;
    width:100%;
    max-width:100%;
  }
  .tr-single__image-shell{
    aspect-ratio:auto;
  }
  .tr-single__image{
    width:100%;
    max-width:100%;
    height:auto;
  }
  .tr-single__sectionburst{
    right:8px;
    top:8px;
    margin:0;
  }
  .tr-single__sectionburst--interviews a,
  .tr-single__sectionburst--interviews span,
  .tr-single__sectionburst--interview a,
  .tr-single__sectionburst--interview span{
    font-size:10px;
  }
}

/* mobile-signup-fullblue-fix */

@media (max-width: 720px) {
  .signup-bar__inner{
    max-width:none;
    padding-left:0 !important;
    padding-right:0 !important;
  }
  .signup-bar__img{
    width:100%;
    display:block;
  }
}


/* mobile-signup-fullblue-fix v2 */
@media (max-width: 720px) {
  .signup-bar{
    width:100vw !important;
    margin-left:calc(50% - 50vw) !important;
    margin-right:calc(50% - 50vw) !important;
    max-width:none !important;
    overflow:hidden;
    background:#002224;
  }
  .signup-bar::before{
    left:50% !important;
    width:100vw !important;
    margin-left:-50vw !important;
    right:auto !important;
  }
  .signup-bar__inner{
    width:100vw !important;
    max-width:none !important;
    margin:0 auto !important;
    padding:0 !important;
    background:#002224;
  }
  .signup-bar picture,
  .signup-bar__img{
    display:block;
    width:100vw !important;
    max-width:none !important;
    height:auto !important;
    background:#002224;
  }
}

/* v5.9.69: reset signup bar sizing so desktop stays contained and mobile loses white strip */
.signup-bar,
.signup-bar__inner,
.signup-bar picture{
  background:#002224 !important;
}
.signup-bar{
  display:block !important;
}
@media (max-width: 720px){
  .signup-bar{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
    overflow:hidden !important;
  }
  .signup-bar::before{
    display:none !important;
  }
  .signup-bar__inner{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
  }
  .signup-bar picture{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    overflow:hidden !important;
    background:#002224 !important;
  }
  .signup-bar__img{
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    height:auto !important;
    background:#002224 !important;
  }
}


/* v5.9.70: signup bar desktop full-bleed bg + mobile no right strip */
.signup-bar{
  position:relative !important;
  display:block !important;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
  overflow:hidden !important;
  border:0 !important;
  line-height:0 !important;
  background:transparent !important;
}
.signup-bar__inner{
  position:relative !important;
  z-index:1 !important;
  max-width:980px !important;
  margin:0 auto !important;
  padding:0 24px !important;
  background:transparent !important;
}
.signup-bar picture,
.signup-bar__img{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  background:transparent !important;
}
@media (max-width: 720px){
  .signup-bar{
    background:#002224 !important;
  }
  .signup-bar::before{
    display:none !important;
  }
  .signup-bar__inner{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
    padding:0 !important;
    background:#002224 !important;
  }
  .signup-bar picture,
  .signup-bar__img{
    width:100% !important;
    max-width:100% !important;
    background:#002224 !important;
  }
}


/* v5.9.71: signup bar full-bleed background without pseudo element */
.signup-bar{
  display:block !important;
  position:relative !important;
  background:#002224 !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  padding:0 !important;
  width:auto !important;
  overflow:hidden !important;
}
.signup-bar__inner{
  position:relative !important;
  z-index:1 !important;
  max-width:980px !important;
  margin:0 auto !important;
  padding:0 24px !important;
  background:transparent !important;
}
.signup-bar picture,
.signup-bar__img{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  background:transparent !important;
}
@media (max-width: 720px){
  .signup-bar{
    margin-left:calc(50% - 50vw) !important;
    margin-right:calc(50% - 50vw) !important;
    background:#002224 !important;
  }
  .signup-bar__inner{
    max-width:none !important;
    width:auto !important;
    margin:0 24px !important;
    padding:0 !important;
    background:transparent !important;
  }
}

/* v5.9.72: final signup bar reset */
.signup-bar{
  display:block !important;
  position:relative !important;
  width:100% !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  line-height:0 !important;
  background:transparent !important;
  overflow:visible !important;
}
.signup-bar__inner{
  position:relative !important;
  z-index:1 !important;
  max-width:980px !important;
  margin:0 auto !important;
  padding:0 24px !important;
  background:transparent !important;
}
.signup-bar picture,
.signup-bar__img{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  background:transparent !important;
}
@media (max-width:720px){
  .signup-bar{
    overflow:hidden !important;
  }
  .signup-bar::before{
    left:0 !important;
    width:100% !important;
    transform:none !important;
  }
  .signup-bar__inner{
    max-width:none !important;
    margin:0 !important;
    padding:0 !important;
  }
  .signup-bar picture,
  .signup-bar__img{
    width:100% !important;
    max-width:100% !important;
  }
}

/* v5.9.73: signup bar centered image with full-bleed #002224 background */
.signup-bar{
  display:block !important;
  position:relative !important;
  width:100vw !important;
  max-width:none !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  padding:0 !important;
  border:0 !important;
  line-height:0 !important;
  background:#002224 !important;
  overflow:hidden !important;
}
.signup-bar__inner{
  position:relative !important;
  z-index:1 !important;
  max-width:980px !important;
  margin:0 auto !important;
  padding:0 24px !important;
  background:transparent !important;
}
.signup-bar picture,
.signup-bar__img{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  background:transparent !important;
}
@media (max-width:720px){
  .signup-bar{
    width:100vw !important;
    max-width:none !important;
    margin-left:calc(50% - 50vw) !important;
    margin-right:calc(50% - 50vw) !important;
    background:#002224 !important;
  }
  .signup-bar__inner{
    max-width:none !important;
    margin:0 auto !important;
    padding:0 24px !important;
    background:transparent !important;
  }
}

/* --- Mobile header: remove topbar search icon; search remains in hamburger menu --- */
@media (max-width: 980px){
  .topbar__searchwrap,
  .topbar__searchtoggle,
  .topbar__search-icon,
  .topbar__searchform{
    display:none !important;
  }
}


/* v5.9.75: signup bar full-bleed background with centered contained artwork */
.signup-bar-bleed{
  position:relative !important;
  left:50% !important;
  right:50% !important;
  width:100vw !important;
  margin-left:-50vw !important;
  margin-right:-50vw !important;
  background:#002224 !important;
  padding:0 !important;
  border:0 !important;
  overflow:hidden !important;
}
.signup-bar-bleed::before,.signup-bar::before{content:none !important;display:none !important;}
.signup-bar-bleed > .signup-bar{display:block !important;width:100% !important;max-width:none !important;margin:0 !important;padding:0 !important;background:transparent !important;line-height:0 !important;border:0 !important;overflow:visible !important;}
.signup-bar-bleed .signup-bar__inner{max-width:980px !important;margin:0 auto !important;padding:0 24px !important;background:transparent !important;}
.signup-bar-bleed picture,.signup-bar-bleed .signup-bar__img{display:block !important;width:100% !important;max-width:100% !important;height:auto !important;background:transparent !important;}
@media (max-width: 720px){
  .signup-bar-bleed{left:50% !important;right:50% !important;width:100vw !important;margin-left:-50vw !important;margin-right:-50vw !important;background:#002224 !important;}
  .signup-bar-bleed .signup-bar__inner{max-width:none !important;padding:0 24px !important;}
}


/* v5.9.76: signup bar stable full-bleed background without layout breakout bugs */
.signup-bar-bleed{
  position: relative !important;
  width: auto !important;
  left: auto !important;
  right: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #002224 !important;
  box-shadow: 0 0 0 100vmax #002224 !important;
  clip-path: inset(0 -100vmax) !important;
  overflow: visible !important;
  padding: 0 !important;
  border: 0 !important;
}
.signup-bar-bleed::before,
.signup-bar-bleed > .signup-bar{
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  line-height: 0 !important;
  border: 0 !important;
}
.signup-bar-bleed .signup-bar__inner{
  max-width: 980px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  background: transparent !important;
}
.signup-bar-bleed picture,
.signup-bar-bleed .signup-bar__img{
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  background: transparent !important;
}
@media (max-width: 720px){
  .signup-bar-bleed{
    box-shadow: 0 0 0 100vmax #002224 !important;
    clip-path: inset(0 -100vmax) !important;
  }
  .signup-bar-bleed .signup-bar__inner{
    max-width: none !important;
    padding: 0 16px !important;
  }
}


/* Byline archive heading */
.tr-all-posts-page__heading{
  padding:24px 0 12px;
}
.tr-all-posts-page__title{
  margin:0;
  text-align:center;
  font-family:var(--font-display);
  font-size:clamp(42px, 7vw, 88px);
  line-height:1.02;
}

/* Single-post byline links */
.tr-single__byline{
  text-decoration:none;
}
.tr-single__byline:hover{
  color:var(--link-hover);
}

/* Keep single-post titles centered on tablet widths and when printing */
@media (max-width: 1100px){
  .tr-single__title{
    text-align:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}
@media print{
  .tr-single__title{
    text-align:center !important;
    margin-left:auto !important;
    margin-right:auto !important;
  }
}

/* Supporters page: OAC logos removed */
.tr-supporters__logos{
  display:none !important;
}


/* Single-post media burst alignment and category colors */
.tr-single__media-wrap{
  position: relative;
}
.tr-single__sectionburst{
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}
.tr-single__sectionburst a,
.tr-single__sectionburst span{
  color:#000;
}
.tr-single__sectionburst--review,
.tr-single__sectionburst--reviews{
  background:#ff3600;
}
.tr-single__sectionburst--interview,
.tr-single__sectionburst--interviews{
  background:#0a89ff;
}
.tr-single__sectionburst--fiction{
  background:#E0E22A;
}
.tr-single__sectionburst--essay,
.tr-single__sectionburst--essays{
  background:#625022;
}
.tr-single__sectionburst--essay a,
.tr-single__sectionburst--essay span,
.tr-single__sectionburst--essays a,
.tr-single__sectionburst--essays span{
  color:#E0E22A;
}
.tr-single__sectionburst--fiction a,
.tr-single__sectionburst--fiction span{
  color:#51421C;
}
@media (max-width: 900px){
  .tr-single__sectionburst{
    right:0;
    top:0;
    transform: translate(50%, -50%);
  }
}
@media (max-width: 640px){
  .tr-single__media-wrap{
    max-width: calc(100% - 64px);
    margin-left:auto;
    margin-right:auto;
  }
  .tr-single__sectionburst{
    right:0;
    top:0;
    transform: translate(50%, -50%);
    width:92px;
    height:92px;
  }
  .tr-single__sectionburst a,
  .tr-single__sectionburst span{
    font-size:12px;
  }
  .tr-single__sectionburst--interview a,
  .tr-single__sectionburst--interview span,
  .tr-single__sectionburst--interviews a,
  .tr-single__sectionburst--interviews span{
    font-size:10px;
  }
}


/* v5.9.82: reinforce sticky header, footer creature home link target area, and mobile burst clearance */
.site-header{position:sticky;top:0;z-index:4000;}
.tr-footer__creature{display:flex;align-items:flex-start;justify-content:flex-end;text-decoration:none;}
.tr-footer__creature img{display:block;}

/* v5.9.83: single featured image captions visible and mobile search submit hardening */
.tr-single__credit{color:var(--black);}
@media (max-width: 768px){
  .tr-single__credit{font-size:11px; margin-top:10px;}
}

/* v5.9.86: keep short mobile pages black below footer */
html, body{
  min-height:100%;
}
#page.site,
.site{
  min-height:100vh;
  background:#000;
}
#content,
.site-main{
  background:transparent;
}

/* v5.9.90: final signup bar override */
.signup-bar,
.signup-bar::before,
.signup-bar__inner,
.signup-bar__img,
.signup-bar-bleed,
.signup-bar-bleed::before,
.signup-bar-bleed > .signup-bar,
.signup-bar-bleed .signup-bar__inner,
.signup-bar-bleed picture,
.signup-bar-bleed .signup-bar__img{
  box-sizing:border-box;
}

.signup-bar-bleed{
  position:relative !important;
  width:100vw !important;
  margin-left:calc(50% - 50vw) !important;
  margin-right:calc(50% - 50vw) !important;
  left:auto !important;
  right:auto !important;
  padding:0 !important;
  border:0 !important;
  overflow:visible !important;
  background:#002224 !important;
  box-shadow:none !important;
  clip-path:none !important;
}

.signup-bar-bleed::before,
.signup-bar::before{
  content:none !important;
  display:none !important;
}

.signup-bar-bleed > .signup-bar{
  display:block !important;
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  padding:0 !important;
  border:0 !important;
  background:transparent !important;
  overflow:visible !important;
  line-height:0 !important;
}

.signup-bar-bleed .signup-bar__inner{
  position:relative !important;
  z-index:1 !important;
  max-width:980px !important;
  margin:0 auto !important;
  padding:0 24px !important;
  background:transparent !important;
}

.signup-bar-bleed picture,
.signup-bar-bleed .signup-bar__img{
  display:block !important;
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  margin:0 auto !important;
  background:transparent !important;
}

@media (max-width: 720px){
  .signup-bar-bleed{
    width:100vw !important;
    margin-left:calc(50% - 50vw) !important;
    margin-right:calc(50% - 50vw) !important;
    background:#002224 !important;
  }
  .signup-bar-bleed .signup-bar__inner{
    max-width:none !important;
    padding:0 16px !important;
  }
}
