 @charset "UTF-8";
/*
Theme Name: WWPH
Theme URI: https://github.com/WordPress/twentynineteen
Author: TDF
Author URI: 
Description: 
Version: 1.0
License: 
License URI: 
Text Domain: twentynineteen
Tags: 

*/

:root {
  --wwph-teal: #1cbcbe;
  --wwph-teal-dk: #118587;
  --wwph-teal-lt: #e9f6f7;
  --wwph-orange: #f3712f;
  --wwph-orange-lt: #fff5f0;
  --wwph-lime: #c3c330;
  --wwph-lime-lt: #f1f0cd;
  --wwph-yellow: #f7c717;
  --wwph-yellow-lt: #fef5e1;
}

/* defaults */

body {
  font-size: 62.5%; 
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  line-height: 0px;
  margin: 0px;
  padding: 0px;
  background-color: #fff;
}

a img {
  border: 0px;
}

a {
  text-decoration: none;
}


/* header */

header {
  display: grid;
  grid-template-columns:  auto 1fr;
  grid-template-rows: auto;
  column-gap: 20px;
    grid-template-areas: 
    "logo slogan"
    "logo mainnav";
  padding: 25px 50px;
  align-items: center;
}

header h1 {
  width: 265px;
  position: relative;
  margin: 0;
  grid-area: logo;
}

header h1 a {
  width: 100%;
  background-size: contain;
  text-indent: -9000px;
  display: block;
}

header h3 {
  grid-area: slogan;
  max-width: 60%;
  text-wrap: balance;
  justify-self: right;
  margin: 0;
  font-size: 2.7em;
  line-height: 1.3;
  font-style: italic;
  color: var(--wwph-teal);
  font-weight: normal;
  text-align: right;
  font-family: "EB Garamond", serif;
}

.boxholder {
  display: none;
}

body .featherlight .featherlight-content {
    background-color: var(--wwph-yellow-lt);
    padding: 40px 40px 15px;
}

body .featherlight .featherlight-content h3 {
  text-transform: uppercase;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: var(--wwph-yellow);
  font-size: 2em;
  margin: 0 0 30px 0;
}

body .featherlight .featherlight-content .screen-reader-text {
  display: none;
}

body .featherlight .featherlight-content input {
  border: none;
  outline: none;
  padding: 8px 15px;
}

body .featherlight .featherlight-content .search-submit {
  background-color: var(--wwph-orange);
  color: #fff;
}

body .featherlight .featherlight-content .search-field {
  width: 250px;
}

header > ul#menu-mainnav {
  grid-area: mainnav;
  justify-self: right;
  padding: 5px 0 0 0;
  margin: 0;
  list-style: none;
  display: flex;
  position: relative;
}

header > ul#menu-mainnav li {
  padding: 0;
  margin: 0;
  font-weight: 600;
  color: #000;
  font-size: 1.48em;
  line-height: 1.2em;
  position: relative;
}

header > ul#menu-mainnav li a {
  display: block;
  padding: 15px 10px;
  background-color: #fff;
  transition: all .3s;
  color: #000;
  position: relative;
}

header > ul#menu-mainnav li:hover a {
  background-color: var(--wwph-orange-lt);
}

header > ul#menu-mainnav li a:hover {
  color: var(--wwph-orange);
}

header > ul#menu-mainnav > li > ul.sub-menu {
  position: absolute;
  left: 0;
  top: 80%;
  background-color: var(--wwph-orange-lt);
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  transform: all .3s;
  box-shadow: 1px 6px 11px 0px rgba(0,0,0,0.3);
  -webkit-box-shadow: 1px 6px 11px 0px rgba(0,0,0,0.3);
  -moz-box-shadow: 1px 6px 11px 0px rgba(0,0,0,0.3);
  z-index: 5000;
  width: 150px;
}

header > ul#menu-mainnav > li:hover > ul.sub-menu {
  display: block;
}

header > ul#menu-mainnav > li:hover > ul.sub-menu li {
  font-size: 85%;
  margin: 0;
  padding: 0;
  font-weight: 400;
}

header > ul#menu-mainnav > li:hover > ul.sub-menu li a {
  background-color: var(--wwph-orange-lt);
  padding-bottom: 0;
  padding-top: 0;
}

header > ul#menu-mainnav > li:hover > ul.sub-menu li a::after {
  content: '\00A0';
  border-bottom: 1px solid var(--wwph-orange);
  width: 100%;
  display: block;
  height: 1px;
  margin: 12px 0;
}

header > ul#menu-mainnav > li:hover > ul.sub-menu li:last-of-type a::after {
  content: none;
}

header > ul#menu-mainnav > li:hover > ul.sub-menu li:first-of-type a {
  padding-top: 15px;
}

header > ul#menu-mainnav > li:hover > ul.sub-menu li:last-of-type a {
  padding-bottom: 15px;
}

li.menusearch a::after {
  content: '\2315';
  font-size: 180%;
}

li.menusearch a span {
 display: none;
}

/* footer */

body::after {
  content: '\00A0';
  background: #F15F78;
  background: linear-gradient(90deg, rgba(241, 95, 120, 1) 0%, rgba(245, 196, 21, 1) 25%, rgba(63, 179, 149, 1) 50%, rgba(30, 188, 190, 1) 74%, rgba(162, 117, 179, 1) 100%);
  display: block;
  height: 14px;
}

footer {
  background-image: url(./images/footer_bg.jpg);
  background-size: cover;
  background-position: center center;
}

footer .contain {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 50px;
  display: grid;
  grid-template-columns:  .33fr .33fr .33fr;
  grid-template-rows: auto;
  column-gap: 40px;
  grid-template-areas: 
    "footerlogo footerconnect footersubscribe";
}

footer .contain > img {
  grid-area: footerlogo;
  max-width: 60%;
  height: auto;
}

footer .contain #connect {
  grid-area: footerconnect;
}

footer .contain #subscribe {
  grid-area: footersubscribe;
}

footer .contain #connect ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  margin: 0 0 15px 0;
  padding: 0;
}

footer .contain #connect ul li {
  width: 40px;
  height: 40px;
  text-align: center;
  margin: 0 8px;
  padding: 0;
}

footer .contain #connect ul li img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: auto;
  margin: 0 auto;
}

footer .widget h3 {
  font-size: 3em;
  line-height: 1.1;
  margin: 0 0 .75em 0;
  text-transform: uppercase;
  font-weight: 500;
}

footer .widget p {
  font-size: 1.48em;
  line-height: 1.3;
  margin: 0 0 .5em 0;
  font-weight: 400;
}

footer a {
  color: var(--wwph-orange);
}

footer #subscribe form {
  padding: 10px 0 0 0 !important;
  text-align: left;
}

footer #subscribe form input {
  width: auto !important;
}

footer #subscribe form input[type=email] {
  width: 250px !important;
  background-color: #fff;
  color: #555;
  padding: 8px 12px;
  font-size: 1.5em;
  line-height: 1;
  border: 0;
  outline: none;
}

footer #subscribe form input[type=submit] {
  background-color: var(--wwph-teal);
  color: #fff;
  padding: 8px 12px;
  font-size: 1.5em;
  line-height: 1;
  outline: none;
}


/* front page sections */

.section .contain {
  max-width: 1200px;
  margin: 0 auto;
}

.section#partners {
  text-indent: -9000px;
}

.section#partners .contain {
  text-indent: 0;
  padding-top: 50px;
  padding-bottom: 55px;
 display: grid;
 grid-template-columns:  .45fr .55fr;
 grid-template-rows: auto;
 column-gap: 20px;
 row-gap: 30px;
   grid-template-areas: 
   "partnertitle partnertitlemore"
   "partnerpartners partnerpartners"; 
   
}

.section#partners .contain > h2 {
  grid-area: partnertitle;
  text-align: right;
  align-self: center;
  font-size: 6.2em;
  line-height: 1;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}

.section#partners .contain > h2 strong {
  display: block;
  font-weight: 700;
}

.section#partners .contain > p {
  grid-area: partnertitlemore;
  text-align: left;
  align-self: center;
  margin: 0;
  font-size: 2.3em;
  line-height: 1.2;
  max-width: 80%;
}

.section#partners .contain > ul {
  grid-area: partnerpartners;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.section#partners .contain > ul li {
  width: 16%;
  margin: 2%;
  text-align: center;
}

.section#partners .contain > ul li img {
  max-width: 100%;
  max-height: 100px;
}

.section#testimonials {
  background-image: url(./images/quotes_bg.jpg);
  background-position: center center;
  background-size: cover;
}

.section#testimonials .contain::before {
  content: '\201C';
  color: #fff;
  font-size: 30em;
  display: block;
  text-align: center;
  line-height: 1;
  font-style: italic;
  margin-bottom: -165px;
}

.section#testimonials p.quote {
  font-size: 3em;
  line-height: 1.3;
  margin: 0 auto;
  font-style: italic;
  color: var(--wwph-orange);
  text-align: center;
  max-width: 80%;
}

.section#testimonials p.author {
  font-size: 1.9em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--wwph-orange);
  text-align: right;
  max-width: 80%;
}

.section#testimonials p.author::before {
  content: '\2013';
  margin-right: 5px;
}

.section#testimonials #quotecycle > div {
  text-align: center;
  padding-bottom: 45px;
}

.section#testimonials .next {
    position: absolute;
    right: 0px;
    top: 15%;
    z-index: 10000;
}

.section#testimonials .prev {
    position: absolute;
    left: 0px;
    top: 15%;
    z-index: 10000;
}

.section#testimonials .next::after {
    content: '\3009';
    color: #fff;
    font-size: 10em;
    line-height: 1;
}

.section#testimonials .prev::after {
    content: '\3008';
    color: #fff;
    font-size: 10em;
    line-height: 1;
}

.section#instagram .contain {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section#instagram .contain h2 {
  text-align: center;
  color: #000;
  font-size: 7.8em;
  line-height: 1;
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
}

.section#instagram .contain h2 strong {
  font-weight: 700;
}

.section#instagram .contain > p {
  text-align: center;
  font-size: 2.4em;
  line-height: 1.3;
  margin: 15px 0 35px;
  text-transform: uppercase;
  font-weight: 500;
}

.section#instagram .contain > p a {
  color: var(--wwph-orange);
  transition: all .3s;
}

.section#instagram .contain > p a:hover {
  color: var(--wwph-teal);
}

.section#instagram .contain span {
  color: var(--wwph-teal);
  padding: 0 10px;
}

.section#donate + .section#instagram::before {
  border-top: 5px solid var(--wwph-lime);
  display: block;
  content: '\00A0';
  max-width: 1200px;
  margin: 0 auto;
}

.section#donate .contain {
    padding-top: 60px;
    padding-bottom: 60px;
    display: grid;
    grid-template-columns:  .5fr .5fr;
    grid-template-rows: auto;
    column-gap: 50px;
    row-gap: 50px;
    grid-template-areas: 
    "donatetitle donatedesc"
    "donatebutton donatebutton"; 
}

.section#donate .contain h2 {
  grid-area: donatetitle;
  text-align: center;
  font-family: "EB Garamond", serif;
  font-style: italic;
  line-height: 1;
  margin: 0;
  font-size: 7.9em;
  color: var(--wwph-teal);
  font-weight: 400;
  text-wrap: balance;
  align-self: center;
}

.section#donate .contain > div {
  grid-area: donatedesc;
  text-align: left;
  align-self: center;
}

.section#donate .contain > div p {
  font-size: 1.6em;
  line-height: 1.6;
  margin: 0;
}

.section#donate .contain > p.button {
  grid-area: donatebutton;
  text-align: center;
}

.section#donate .contain > p.button a {
  display: inline-block;
  padding: 10px 30px;
  font-size: 2.3em;
  line-height: 1.1;
  margin: 0;
  color: #fff;
  background-color: var(--wwph-teal);
  text-transform: uppercase;
  letter-spacing: .25em;
  transition: all .3s;
}

.section#donate .contain > p.button a:hover {
  background-color: var(--wwph-orange);
}

.section#buying {
  background-color: var(--wwph-lime-lt);
  clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0% 100%);
}

.section#buying .contain {
  padding-top: 80px;
  padding-bottom: 80px;
  background-image: url(./images/buy_bg.png);
  background-repeat: no-repeat;
  background-size: auto 120%;
  background-position:  15% center;
  display: grid;
  grid-template-columns:  .6fr .4fr;
  grid-template-rows: auto;
  column-gap: 50px;
  grid-template-areas: 
  "buytitle buydesc"; 
  align-items: center;
}

.section#buying .contain h2 {
  grid-area: buytitle;
  font-size: 6em;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  font-weight: 500;
  text-align: left;
  text-wrap: balance;
  padding-right: 50px;
  border-right: 5px solid var(--wwph-lime);
}

.section#buying .contain h2 strong {
  font-weight: 700;
}

.section#buying .contain ul {
  grid-area: buydesc;
  list-style: none;
  padding: 0;
  margin: 0;
}

.section#buying .contain ul li {
  padding: 0;
  margin: 0 0 .6em 0;
  font-size: 1.68em;
  line-height: 1.3;
}

.section#buying .contain ul a {
  color: var(--wwph-orange);
  transition: all .3s;
}

.section#buying .contain ul a:hover {
  color: var(--wwph-teal);
}

.section#recent .contain {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section#recent .contain h2 {
  text-align: center;
  color: #000;
  margin: 0;
  font-size: 3.6em;
  line-height: 1;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.section#about {
  background-color: var(--wwph-teal-lt);
  clip-path: polygon(0 8%, 100% 0%, 100% 92%, 0% 100%);
}

.section#about .contain {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns:  .4fr .6fr;
  grid-template-rows: auto;
  column-gap: 50px;
  grid-template-areas: 
  "abouttitle aboutdesc"; 
  align-items: center;
}

.section#about .contain > img {
  grid-area: abouttitle;
  max-width: 85%;
  height: auto;
  margin: 0 auto;
}

.section#about .contain > div {
  grid-area: aboutdesc;
}

.section#about .contain > div p {
  font-size: 1.9em;
  line-height: 1.5;
  margin: 0;
  color: #000;
}

.section#about .contain > div p strong {
  color: var(--wwph-teal);
}

.section#journal .contain {
  padding-top: 60px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns:  .6fr .4fr;
  grid-template-rows: auto;
  column-gap: 50px;
  grid-template-areas: 
  "journaldesc journaltitle"; 
  align-items: center;
}

.section#journal .contain > img {
  grid-area: journaltitle;
  max-width: 85%;
  height: auto;
  margin: 0 auto;
}

.section#journal .contain > div {
  grid-area: journaldesc;
  text-align: left;
}

.section#journal .contain > div p {
  font-size: 2.2em;
  line-height: 1.4;
  margin: 0;
  color: #000;
}

.section#journal .contain form {
  text-align: center;
  padding-bottom: 0;
}

.section#journal .contain form .mailpoet_paragraph {
  width: 46%;
  display: inline-block;
  margin: 0 1%;
}

.section#journal .contain form .mailpoet_paragraph.last {
  width: auto;
  display: inline-block;
}

.section#journal .contain form .mailpoet_paragraph input[type=email] {
  background-color: var(--wwph-yellow-lt);
  border: none;
  outline: none;
  padding: 8px 12px !important;
  color: #555;
  font-size: 1.4em;
  line-height: 1;
}

.section#journal .contain form .mailpoet_paragraph input[type=submit] {
  background-color: var(--wwph-teal);
  border: none;
  outline: none;
  padding: 8px 12px !important;
  color: white;
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 1.4em;
  line-height: 1;
}

.section#events {
  background-color: var(--wwph-yellow-lt); 
}

.section#events .contain {
  padding-top: 50px;
  padding-bottom: 60px;
}

.section#events .contain h2 {
  text-align: center;
  color: #000;
  margin: 0;
  font-size: 3.6em;
  line-height: 1;
  letter-spacing: .25em;
  text-transform: uppercase; 
}

.section#latest .contain {
  padding-top: 50px;
  padding-bottom: 60px;
}

.section#latest .contain h2 {
  text-align: left;
  color: #000;
  margin: 0;
  font-size: 3.6em;
  line-height: 1;
  text-transform: uppercase; 
}

.section#latest ul, .section#recent ul {
  list-style: none;
  padding: 30px 0;
  margin: 0;
  display: flex;
  justify-items: center;
  flex-wrap: wrap;
}

.section#latest ul li, .section#recent ul li {
  width: 20%;
  padding: 15px;
  transition: all .3s;
  box-sizing: border-box;
}

.section#latest ul li:hover, .section#recent ul li:hover {
  background-color: #f2f2f2;
}

.section#latest .coverthumb, .section#recent .coverthumb {
  height: 0;
  padding-bottom: 150%;
  position: relative;
  margin-bottom: 20px;
}

.section#latest .coverthumb .container, .section#recent .coverthumb .container {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.section#latest .coverthumb .container img, .section#recent .coverthumb .container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
}

.section#latest h4, .section#recent h4 {
  color: var(--wwph-orange);
  line-height: 1.3;
  margin: 0 0 6px 0;
  font-size: 2em;
}

.section#latest h5, .section#recent h5 {
  color: #6b6c6f;
  line-height: 1.3;
  margin: 0 0 10px 0;
  font-size: 1.2em;
  font-weight: 400;
}

.section#latest p, .section#recent p {
  color: #000;
  line-height: 1.4;
  margin: 0 0 0px 0;
  font-size: 1.2em;
  font-weight: 400;
}

.section#latest p span, .section#recent#recent p span {
  color: var(--wwph-orange);
}

.section#latest h6, .section#recent h6 {
  text-align: center;
  color: var(--wwph-lime);
  font-size: 1.8em;
  line-height: 1;
  letter-spacing: .25em;
  margin: 10px 0 0 0;
  text-transform: uppercase;
  font-weight: 500;
}

.section#latest h6 a, .section#recent h6 a {
  color: var(--wwph-lime);
}

.section#featured {
  background-image: url(./images/featured_bg.jpg);
  background-size: cover;
  background-position: center center;
}

.section#featured .contain {
  padding: 50px;
}

.section#featured .contain .pub {
  display: grid !important;
  grid-template-columns:  .65fr .35fr;
  grid-template-rows: auto;
  column-gap: 50px;
  grid-template-areas: 
  "pubmeta pubcov"; 
  position: relative;
}

.section#featured .contain .pubmeta {
  grid-area: pubmeta;
  padding-left: 50px;
}

.section#featured .contain .pub > img {
  grid-area: pubcov;
  max-width: 100%;
  max-height: 140%;
  justify-self: center;
  position: absolute;
}

.section#featured .contain .pub a {
  color: var(--wwph-orange);
  transition: all .3s;
}

.section#featured .contain .pub a:hover {
  color: var(--wwph-teal);
}

.section#featured .contain .pubmeta > h4 {
  font-size: 1.9em;
  text-transform: uppercase;
  color: var(--wwph-orange);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.section#featured .contain .pubmeta > h3 {
  font-size: 3.8em;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.section#featured .contain .pubmeta > h5 {
  font-size: 1.9em;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 0 .5em 0;
}

.section#featured .contain .pubmeta > h5 em {
  font-style: normal;
  padding-left: 15px;
  margin-left: 15px;
  border-left: 1px solid #000;
}

.section#featured .contain .pubmeta > h5 span::after {
  content: ', ';
}

.section#featured .contain .pubmeta > h5 span:last-of-type::after {
  content: none;
}

.section#featured .contain .pubmeta > h5 span + span:last-of-type::before {
  content: ' and ';
}

.section#featured .contain .pubmeta > h5 span:has(+ span:last-of-type)::after {
  content: none;
}

.section#featured .contain .pubmeta > p {
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.section#featured  .next {
    position: absolute;
    right: -50px;
    top: 35%;
    z-index: 10000;
    width: 2em;
}

.section#featured .prev {
    position: absolute;
    left: -125px;
    top: 35%;
    z-index: 10000;
    text-align: left;
    width: 2em;
}

.section#featured .next::after {
    content: '\3009';
    color: #fff;
    font-size: 10em;
    line-height: 1;
}

.section#featured .prev::after {
    content: '\3008';
    color: #fff;
    font-size: 10em;
    line-height: 1;
}

/* lower header */

body:not(.home) #content::before {
  content: '\00A0';
  background: #F15F78;
  background: linear-gradient(90deg, rgba(241, 95, 120, 1) 0%, rgba(245, 196, 21, 1) 25%, rgba(63, 179, 149, 1) 50%, rgba(30, 188, 190, 1) 74%, rgba(162, 117, 179, 1) 100%);
  display: block;
  height: 14px;
}

body:not(.home) #content {
  background-image: url('./images/bodytop.png');
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}


/* single publication */

body:not(.home) #content main {
  display: block;
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 50px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
}

.single-publication .bookcover {
  float: right;
  padding: 3px 0 30px 50px;
  max-width: 30%;
  height: auto;
  background-color: #fff;
}

.single-publication a {
  color: var(--wwph-orange);
}

body:not(.home) #content h2 {
  font-size: 7em;
  line-height: 1;
  margin: 0 0 .5em 0;
  font-weight: 600;
  text-transform: uppercase;
  text-wrap: balance;
}

.buythisbook {
  float: right;
  max-width: 25%;
  margin: 0px 0 30px 30px;
}

.buythisbook a {
  display: inline-block;
  text-wrap: balance;
  background-color: var(--wwph-orange);
  color: #fff;
  font-weight: 500;
  font-size: 1.3em;
  text-align: center;
  text-transform: uppercase;
  padding: 7px 14px;
  margin-top: 13px;
  transition: all .3s;
}

.buythisbook a:hover {
  background-color: #000;
}

/*
.single-publication #content h2::before {
  content: 'WWPH Book:';
  display: block;
  color: var(--wwph-orange);
  font-size: 45%;
  padding-bottom: .5em;
}
*/

.bookmeta p {
  font-size: 1.9em;
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
}

.bookmeta p span {
  display: inline-block;
  padding: 0 10px;
  border-right: 1px solid #000;
}

.bookmeta p span:last-of-type {
  border-right: none;
}

.bookmeta p span:first-of-type {
  padding-left: 0;
}

.bookmeta p span:last-of-type.editors::after, .bookmeta p span:last-of-type.authors::after {
  content: none;
}

.bookmeta p.initial span:first-of-type a::before{
  content: ', ';
}

.bookmeta p.initial span:first-of-type a:last-of-type::before {
  content: ' and ';
  color: #000;
}

.bookmeta p.initial span:first-of-type a:first-of-type::before {
  content: none;
}

.bookmeta p.bookawards {
  font-weight: 800;
  margin-top: 15px;
  color: var(--wwph-teal);
}

.bookmeta p {
  font-size: 1.9em;
  line-height: 1.2;
  margin: 0;
  font-weight: 600;
}

.bookmeta {
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 30px;
}

.fulldescription p, .fulldescription li {
  font-size: 1.6em;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: .75em;
  font-weight: 500;
}

.fulldescription p.interviews {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #ccc;
}

.formatmeta {
  clear: both;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ccc;
  padding-bottom: 40px;
  
}

.formatmeta ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.formatmeta ul li {
  margin: 5px;
  padding: 0;
  font-size: 1.6em;
  line-height: 1.6;
  font-weight: 500;
}

.formatmeta ul li span {
  display: inline-block;
  padding: 0 15px;
  border-right: 2px solid #000;
}

.formatmeta ul li span:last-of-type {
  border-right: none;
}

.formatmeta ul li span:first-of-type {
  padding-left: 0;
}

.single-publication .buy {
  padding-top: 70px;
  clear: both;
  position: relative;
}

.single-publication .authorbio {
  padding-top: 30px;
}

.single-publication .authorbio > div {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}

.single-publication .buy h3, .single-publication .authorbio h3, .specialbuys > h3, .reviews > h3 {
  color: var(--wwph-lime);
  font-size: 3em;
  line-height: 1;
  margin: 0;
  padding: 20px 0 30px 0;
  border-top: 1px solid var(--wwph-lime);
  font-weight: 600;
  text-transform: uppercase;
}

.single-publication .buy p {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 1.8em;
  line-height: 1.4;
  font-weight: 500;
}

.single-publication .buy ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.single-publication .buy ul li {
  width: 20%;
  padding: 3%;
  box-sizing: border-box;
}

.single-publication .buy ul li a {
  display: block;
}

.single-publication .buy ul li img {
  max-width: 100%;
  height: auto;
  max-height: 100px;
  width: auto;
}

.single-publication .authorbio {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.single-publication .authorbio h4 {
  font-size: 2.2em;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: .75em;
  font-weight: 500;
  text-transform: uppercase;
}

.single-publication .authorbio p {
  font-size: 1.8em;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: .75em;
  font-weight: 500;
}

.single-publication .authorbio .authorportrait {
  max-width: 25%;
  margin: 3px 0 30px 50px;
  float: right;
}

.single-publication .authorbio .authorportrait img {
  max-width: 100%;
  height: auto;
}

.single-publication .authorbio p.caption {
  font-style: italic;
  color: var(--wwph-teal);
  font-size: 80%;
  text-align: right;  
  margin-top: 8px;
}


/* book list pages */

ul.booklist {
  list-style: none;
  padding: 30px 0;
  margin: 0;
  display: flex;
  justify-items: center;
  box-sizing: border-box;
  flex-wrap: wrap;
}

ul.booklist li {
  width: 25%;
  padding: 45px 0;
  box-sizing: border-box;
  transition: all .3s;
  border-bottom: 1px solid #ccc;
}

ul.booklist li a {
  padding: 0 35px;
  display: block;
  border-right: 1px solid #ccc;
  box-sizing: border-box;
  height: 100%;
}

ul.booklist li:nth-child(4n) a {
  border-right: none;
}

ul.booklist li:hover {
  background-color: #f2f2f2;
}

.booklist .coverthumb {
  height: 0;
  padding-bottom: 150%;
  position: relative;
  margin-bottom: 20px;
}

.booklist .coverthumb .container {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.booklist .coverthumb .container img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.24);
}

.booklist h4 {
  color: var(--wwph-orange);
  line-height: 1.3;
  margin: 0 0 6px 0;
  font-size: 1.4em !important;
  text-wrap: balance;
}

.booklist h5 {
  color: #6b6c6f;
  line-height: 1.3;
  margin: 0 0 10px 0;
  font-size: 1em !important;
  font-weight: 400;
}

.booklist p {
  color: #000;
  line-height: 1.4;
  margin: 0 0 0px 0;
  font-size: 1em !important;
  font-weight: 500;
}

.booklist p span {
  color: var(--wwph-orange);
}



#content .maincontent p, #content .maincontent li {
  font-size: 1.8em;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: .75em;
  font-weight: 500;
}


/* latest & upcoming page */

.page-template-latest main ul.booklist li, .page-template-upcoming main ul.booklist li {
  width: 100%;
}

.page-template-latest main ul.booklist li a, .page-template-upcoming main ul.booklist li a {
 display: grid;
 grid-template-columns:  20% 30% 1fr;
 grid-template-rows: auto 1fr;
 column-gap: 50px;
   grid-template-areas: 
   "bookcover bookmeta bookdesc"
    "bookcover bookauthor bookdesc"; 
  border: 0;
}

.page-template-latest main ul.booklist li a .coverthumb, .page-template-upcoming main ul.booklist li a .coverthumb {
  grid-area: bookcover;
}

.page-template-latest main ul.booklist li a h4, .page-template-upcoming main ul.booklist li a h4 {
  grid-area: bookmeta;
  font-size: 3em;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 30px;
}

.page-template-latest main ul.booklist li a h5, .page-template-upcoming main ul.booklist li a h5 {
  grid-area: bookauthor;
}

.page-template-latest main ul.booklist li a p, .page-template-upcoming main ul.booklist li a p {
  grid-area: bookdesc;
  margin-top: 30px;
  line-height: 1.7;
  font-size: 1.6em;
}

.booklist h5 span::before {
  content: ', ';
}

.booklist h5 span:last-of-type::before {
  content: ' and ';
}

.booklist h5 span:first-of-type::before {
  content: none;
}

/* authors */

.page-template-authors .booklist .coverthumb .container {
  background-size: cover;
  background-position: center center;
}

.page-template-authors .booklist h4 {
  color: #555;
}

/* general */


body:not(.home) #content .entry-content p, body:not(.home) #content .entry-content li {
  font-size: 1.6em;
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: .75em;
}

body:not(.home) #content .entry-content p a, body:not(.home) #content .entry-content li a {
  color: var(--wwph-orange);
}

body:not(.home) #content .entry-content .alignright {
  float: right;
  margin: 3px 0 30px 50px;
}

body:not(.home) #content .entry-content .alignleft {
  float: left;
  margin: 3px 50px 30px 0px;
}

body:not(.home) .entry-content h3 {
  font-size: 3em;
  line-height: 1.2;
  text-wrap: balance;
  margin-top: .25em;
  margin-bottom: .5em;
  font-weight: 600;
  color: var(--wwph-lime);
}



body:not(.home) .entry-content h4 {
  font-size: 2.3em;
  line-height: 1.5;
  margin-top: .25em;
  margin-bottom: .5em;
  font-weight: 600;
  color: var(--wwph-teal);
}

main.generalcontent .entry-content p, main.generalcontent .entry-content li,  {
  font-size: 1.6em;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: .75em;
}

.page-template-general #content main .entry-content .ui-accordion li p, .page-template-general #content main .entry-content .ui-accordion li li {
  font-size: 1em;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: .75em;
}

main.generalcontent .entry-content h3, main.generalcontent .entry-content h3 {
  font-size: 3em;
  line-height: 1.5;
  margin-top: .25em;
  margin-bottom: .5em;
  font-weight: 600;
  color: var(--wwph-lime);
}

.page-template-general main .entry-content .ui-accordion > h3 {
  background: #F15F78;
  background: linear-gradient(90deg, rgba(241, 95, 120, 1) 0%, rgba(162, 117, 179, 1) 100%);
  color: #fff;
  font-weight: 500;
  font-size: 1.8em;
  line-height: 1.1;
  border: 0;
  display: flex;
  padding: 10px 15px;
}

.page-template-general .ui-accordion .ui-accordion-header-icon {
  display: inline-block;
  background: none;
  padding-right: 0px;
}

.page-template-general .ui-accordion > h3::before {
  content: '\002B';
  color: #fff;
}

.page-template-general .ui-accordion > h3.ui-accordion-header-active::before {
  content: '\2212';
  color: #fff;
}

.page-template-general main .entry-content .ui-accordion > div h3 {
  font-weight: 700;
  font-size: 3.2em;
  color: var(--wwph-orange);
  margin: 1em 0 .5em 0;
}

.page-template-general main .entry-content .ui-accordion > div h4 {
  font-weight: 700;
  font-size: 2.3em;
  font-style: italic;
  color: var(--wwph-orange);
  margin: 1em 0 .5em 0;
}

.gensec {
  padding-top: 20px;
}

.page-template-general main .entry-content .genmulticol {
  display: flex;
}

.page-template-general main .entry-content .genmulticol .column {
  flex-grow: 1;
  margin: 0 2%;
  flex-shrink: 1;
}

.page-template-general main .entry-content .gengallery, .page-template-general main .entry-content .genvids ul {
  padding: 20px 60px;
  display: flex;
  flex-wrap: wrap;
}

.page-template-general main .entry-content .genvids ul {
  clear: both;
  list-style: none;
  margin: 0;
  position: relative;
  align-items: start;
  justify-content: center;
}

.page-template-general main .entry-content .gengallery a, .page-template-general main .entry-content .genvids li {
  display: block;
  margin: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-template-general main .entry-content .genvids li {
  padding: 10px 0;
}

.page-template-general main .entry-content .genvids li a h3 {
  color: var(--wwph-orange);
}

.page-template-general main .entry-content .gengallery a img, .page-template-general main .entry-content .genvids li img {
  max-width: 100%;
  height: auto;
}

.page-template-general main .entry-content .gengallery.imgcnt1 a, .page-template-general main .entry-content .genvids.vidcnt1 li {
  width: 96%;
}

.page-template-general main .entry-content .gengallery.imgcnt2 a, .page-template-general main .entry-content .genvids.vidcnt2 li {
  width: 46%;
}

.page-template-general main .entry-content .gengallery.imgcnt3 a, .page-template-general main .entry-content .genvids.vidcnt3 li {
  width: 29%;
}

.page-template-general main .entry-content .gengallery.imgcnt4 a, .page-template-general main .entry-content .genvids.vidcnt4 li {
  width: 21%;
}

.page-template-general main .entry-content .hidevid {
  display: none;
}

.page-template-general main .entry-content .genvids li h3 {
  font-size: .8em;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

.page-template-general main .entry-content .genvids li h3 strong {
  display: block;
  font-size: 120%;
}

.vidlb p {
  font-size: 1.8em;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

/* person */

.single-person .entry-content p, .single-person .entry-content li {
  font-size: 1.2em;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: .75em;
}

.single-person .entry-content .authorport {
  float: right;
  margin: 3px 0 30px 40px;
  width: 25%;
}

.single-person .entry-content .authorport .container {
  padding-bottom: 130%;
  background-size: cover;
  background-position: center center;
}

.single-person .wwphaward p {
  font-weight: 900;
}

.single-person .books {
  clear: both;
  margin: 0;
  padding-top: 30px;
  position: relative;
}

.single-person .books ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.single-person .books ul li {
  margin: 4% 0 0 0;
  padding: 0;
}

.single-person .books ul li a {
  display: grid;
  grid-template-columns:  15% 20% 1fr;
  grid-template-rows: auto;
  column-gap: 50px;
  grid-template-areas: 
  "authbookcover authbooktitle authbookdesc"; 
}

.single-person .books ul li .authorcover {
  grid-area: authbookcover;
}

.single-person .books ul li img {
  max-width: 100%;
  height: auto;
}

.single-person .books ul li .details {
  grid-area: authbooktitle;
  padding-top: 10px;
}

.single-person .books h3 {
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.4;
  color: var(--wwph-lime);
  text-transform: uppercase;
  margin: 0;
  padding-top: 30px;
  border-top: 2px solid var(--wwph-lime);
}

.single-person .books li h4 {
  color: var(--wwph-orange);
  line-height: 1.3;
  margin: 0 0 6px 0;
  font-size: 1.3em;
}

.single-person .books li p {
  color: #000;
  line-height: 1.4;
  margin: 0 0 0px 0;
  font-size: 1em !important;
  font-weight: 400;
  grid-area: authbookdesc;
  padding-top: 10px;
}

.single-person .books li h5 {
  color: #666;
  line-height: 1.4;
  margin: 0 0 0px 0;
  font-size: .8em;
  font-weight: 400;
  padding-top: 10px;
}

.single-person .books li p span {
  color: var(--wwph-orange);
  font-style: italic;
}

.single-person .authorport p {
  text-align: right;
  color: #666;
  font-size: 1.1em !important;
  padding-top: 12px;
}

.single-person .authorport a {
  color: var(--wwph-orange);
}

.single-person .meta {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 2px solid var(--wwph-lime);
  display: flex;
}
.single-person .meta .testimonials {
  width: 40%;
  padding: 0 30px;
  box-sizing: border-box;
}

.single-person .meta .awards {
  width: 30%;
  padding: 0 30px;
  box-sizing: border-box;
}

.single-person .meta .presence {
  width: 30%;
  padding: 0 30px;
  box-sizing: border-box;
}

.single-person .meta h3 {
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--wwph-lime);
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.single-person .meta .awards ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.single-person .meta .awards ul li {
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #bbb;
}

.single-person .meta .awards ul li:last-of-type {
  border-bottom: none;
}

.single-person .meta .testimonials ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-person .meta .testimonials ul li {
  margin: 0;
  padding: 0;
}

.single-person .meta .testimonials ul li p {
  font-style: italic;
  font-size: 1em !important;
  line-height: 1.3;
  margin: 0 0 8px 0;
  position: relative;
  z-index: 4;
}

.single-person .meta .testimonials ul li p::before {
  content: '\201C';
  left: -20px;
  font-size: 90px;
  color: var(--wwph-teal-lt);
  position: absolute;
  top: -30px;
  z-index: -3;
  font-weight: 900;
}

.single-person .meta .testimonials ul li p::after {
  content: '\201D';
}

.single-person .meta .testimonials ul li h6 {
  text-align: right;
  font-weight: 400;
  font-size: .9em;
  color: var(--wwph-teal);
  text-wrap: balance;
}

.single-person .meta .testimonials ul li h6::before {
  content: '-';
  padding-right: 3px;
}

.single-person .meta .presence ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0px 0;
}

.single-person .meta .presence ul li {
  background-repeat: no-repeat;
  background-size: auto 20px;
  padding-left: 28px;
  margin: 0 0 10px 0;
}

.single-person .meta .presence ul li a {
  color: var(--wwph-orange);
}

/* team */

.page-template-team .entry-content p, .page-template-team .entry-content li  {
  font-size: 1.6em;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: .75em;
}

.page-template-team .entry-content h3, .page-template-team .entry-content h3 {
  font-size: 3em;
  line-height: 1.5;
  margin-top: .25em;
  margin-bottom: .5em;
  font-weight: 600;
  color: var(--wwph-lime);
}

.page-template-team .entry-content ul.team, body .entry-content ul.interviews, .peoplegrid {
  list-style: none;
  padding: 30px 0 0 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.page-template-team .entry-content ul.team li, body .entry-content ul.interviews li, .peoplegrid li {
  padding: 0;
  margin: 4% 4% 0;
  width: 17%;
}

body .entry-content ul.interviews li {
  padding: 0px;
  margin: 0 4% 8% 4%;
  width: 25%;
  box-sizing: border-box;
}

body .entry-content ul.interviews li a {
  display: block;
  padding: 10px;
  height: 100%;
  position: relative;
  box-sizing: border-box;
  background-color: #fff;
  transition: all .3s;
}

body .entry-content ul.interviews li a:hover {
  background-color: var(--wwph-orange-lt);
}

.page-template-team .entry-content ul.team li .container, body .entry-content ul.interviews li .container, .peoplegrid li .container {
  padding-bottom: 130%;
  background-size: cover;
  background-position: center center;
  margin-bottom: 15px;
  background-color: #eee;
}

.page-template-team .entry-content ul.team li a h4, body .entry-content ul.interviews li a h4, .peoplegrid li a h4 {
  color: var(--wwph-orange) !important;
  font-size: 1.2em !important;
  margin: 0 0 5px 0 !important;
}

body .entry-content ul.interviews li a h4 {
  text-align: center;
}

body .entry-content ul.interviews li a h4 span {
  font-size: 70%;
  text-transform: uppercase;
  display: block;
  color: var(--wwph-yellow);
}

.page-template-team .entry-content ul.team li a p, body .entry-content ul.interviews li a p, .peoplegrid li a p {
  color: #555;
  font-size: 1em !important;
  margin: 0 0 10px 0;
}

body .entry-content ul.interviews li a p {
  text-align: center;
}


/* writes */

.mailpoet_archive {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  clear: both;
}

.mailpoet_archive span, .mailpoet_archive li {
}

.mailpoet_archive li {
  width: 25%;
  margin: 2% !important;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.08);
  -webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.08);
  -moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 4px solid var(--wwph-yellow);
}

.mailpoet_archive li > span {
  display: block;
  text-align: center;
  width: 100%;
}

.mailpoet_archive li > span:first-of-type {
  align-self: end;
}

.mailpoet_archive li > span:first-of-type::after {
  display: block;
  content: '\00A0';
  width: 50%;
  border-bottom: 1px solid var(--wwph-yellow);
  height: 0;
  line-height: 0;
  padding: 0px 0 10px 0;
  margin: 0 auto;
}

.mailpoet_archive li > span:last-of-type {
  padding: 10px 0 0px 0;
  align-self: start;
}

.mailpoet_archive li a {
 font-size: 1.4em;
 line-height: 1.3;
}


.skip-link {
  display: none;
}

.page-template-journal article > h2 {
  text-align: center;
}

.entry-content #mailpoet_form_1 {
  width: 30%;
  float: right;
  margin: 3px 0 30px 40px; 
}

.entry-content #mailpoet_form_1::before {
  display: block;
  content: 'Subscribe to WWPH Writes';
  font-size: 2em;
  line-height: 1;
  margin: 0 0 0px 0;
  color: var(--wwph-orange);
  text-align: center;
  font-weight: 600;
}



/* events */

.eventsgrid {
  display: flex;
  flex-wrap: wrap;
}

.eventsgrid .event {
  width: 21%;
  margin: 2%;
  box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.1);
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.1);
  background-color: #fff;
  padding-bottom: 15px;
  position: relative;
}

.eventsgrid .event .thumb {
  padding-bottom: 100%;
  background-size: cover;
  background-position: center center;
  margin-bottom: 15px;
  position: relative;
}

.eventsgrid .event .eventmeta {
  padding: 0px 20px 20px 20px;
  position: relative;
}

.eventsgrid .event h4 {
  color: var(--wwph-orange);
  line-height: 1.3;
  margin: 0 0 6px 0;
  font-size: 2em;
}

.eventsgrid .event p {
  color: #666;
  line-height: 1.3;
  margin: 0 0 0px 0;
  font-size: 1.2em;
}

.eventsgrid .event p.more {
  color: #fff;
  background-color: #bbb;
  line-height: 1;
  margin: 0 0 0px 0 !important;
  font-size: 1.1em !important;
  text-transform: uppercase;
  letter-spacing: .125em;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 20px;
  text-align: center;
  box-sizing: border-box;
}

.eventsgrid .event:hover p.more {
  background-color: var(--wwph-orange);
  margin: 0;
}

.single-events .entry-content .alignright {
  float: right;
  max-width: 25%;
  margin: 3px 0 30px 40px;
}

.single-events .eventintrometa {
  font-weight: 500 !important;
  color: #aaa !important;
  font-size: 2.6em !important;
  text-transform: uppercase;
  letter-spacing: .125em;
  padding-bottom: 15px;
  border-bottom: 1px solid #aaa;
  margin-bottom: 25px !important;
}

.eventmetaoutro {
   display: grid;
   grid-template-columns:  50% 50%;
   grid-template-rows: auto;
   column-gap: 40px;
     grid-template-areas: 
     "datetime location"; 
     padding-top: 30px;
     margin-top: 50px;
     border-top: 1px solid #aaa;
     clear: both;
}

.eventmetaoutro .datetime {
  grid-area: datetime;
}

.eventmetaoutro .location {
  grid-area: location;
}


/* interviews */

.featuredpeople, .featpub {
  list-style: none;
  margin: 0;
  padding: 0;
}

body #content .entry-content .featuredpeople li, body #content .entry-content .featpub li {
   display: grid;
   grid-template-columns:  15% 25% 1fr;
   grid-template-rows: auto;
   column-gap: 40px;
     grid-template-areas: 
     "fpimg fpname fpexcerpt"; 
     align-items: center;
     padding-bottom: 30px;
     margin-bottom: 30px;
     border-bottom: 1px solid #ccc;
}

body #content .entry-content .featpub li {
   padding-bottom: 0px;
   margin-bottom: 0px;
   border-bottom: none;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid #ccc;
     grid-template-columns:  10% 25% 1fr;
}

body #content .entry-content .featpub li img {
  grid-area: fpimg;
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
}

.featuredpeople li .fpimg, .featpub li .fpimg {
  grid-area: fpimg;
}

.featuredpeople li .fpimg > div, .featpub li .fpimg > div {
  padding-bottom: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.featuredpeople li h5, .featpub li h5 {
  grid-area: fpname;
  font-size: 2.5em;
  text-align: center;
  line-height: 1;
  margin: 5px 0 0 0;
  color: #444;
  font-weight: 400;
}

.featpub li h5 {
  font-size: 1.8em;
  text-align: left;
}

.featpub li h5 span {
  display: block;
  padding-bottom: 5px;
  font-size: 50%;
  text-transform: uppercase;
  color: #555;
  font-weight: 600;
}

body #content .entry-content .featuredpeople li p, body #content .entry-content .featpub li p {
  grid-area: fpexcerpt;
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
}

body #content .entry-content .featuredpeople li p a, body #content .entry-content .featpub li p a {
  display: inline-block;
}

body #content .entry-content .featuredpeople li p a::before, body #content .entry-content .featpub li p a::before {
  margin-right: 10px;
  margin-left: 10px;
  content: '|';
  color: #777;
}



/* contact */

.with_frm_style .frm_top_container .frm_primary_label {
    line-height: 1.3;
    padding-bottom: 10px;
}

.frm_style_formidable-style.with_frm_style .frm_submit button {
  background-color: var(--wwph-orange);
  border: 0;
  text-transform: uppercase;
  letter-spacing: .125em;
}

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


.single-interview h2 span {
  display: block;
  text-transform: uppercase;
  letter-spacing: .125em;
  font-size: 30%;
  padding-bottom: 10px;
  color: #666;
}

.single-interview #content h4 {
      margin: .75em 0 .5em 0;
      font-size: 2.7em;
      line-height: 1.3;
      font-style: italic;
      color: var(--wwph-teal);
      font-weight: normal;
      text-align: left;
      font-family: "EB Garamond", serif;
}

/* search */

body.search article {
  position: relative;
  padding: 0;
  clear: both;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--wwph-yellow);
}

body.search article h3 {
  font-size: 3em;
  line-height: 1.3;
  margin: .5em 0 .5em 0;
}

body.search article h3 a {
  color: var(--wwph-orange);
}

body.search article h3 span {
  display: block;
  font-size: 50%;
  color: var(--wwph-yellow);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .25em;
  padding-bottom: 10px;
}

body.search .post-thumbnail {
  float: right;
  margin: 3px 0 30px 40px;
  max-width: 20%;
}

body.search .post-thumbnail img {
  max-width: 100%;
  height: auto;
}

body.search .pagination {
  clear: both;
  margin: 0;
  position: relative;
  text-align: center;
}

body.search .pagination h2 {
  display: none;
}

body.search .pagination::before {
  content: 'Additional Results';
  font-size: 3em;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .125em;
  color: #333;
}

body.search .pagination .nav-links {
  font-size: 1.8em;
  padding-top: 20px;
  line-height: 1.3;
}

body.search .pagination .nav-links a {
  color: var(--wwph-orange);
  padding: 7px 12px;
  transition: all .3s;
  background-color: #fff;
}

body.search .pagination .nav-links a:hover {
  background-color: var(--wwph-orange-lt);
}

body.search .pagination .nav-links a svg {
  vertical-align: middle;
}

.eventsfront {
  display: flex;
  margin-top: 20px;
  box-sizing: border-box;
  justify-content: center;
}

.eventsfront .event {
  width: 44%;
  margin: 3%;
  box-sizing: border-box;
}

.eventsfront .event a {
  display: grid;
  grid-template-columns:  35% 1fr;
  grid-template-rows: auto;
  column-gap: 10px;
    grid-template-areas: 
    "frevetime frevemeta"; 
}

.eventsfront .event .eventdate {
  grid-area: frevetime;
}

.eventsfront .event .eventmeta {
  grid-area: frevemeta;
  border-left: 2px solid var(--wwph-yellow);
  box-sizing: border-box;
  padding-left: 50px;;
}

.eventsfront .event .eventdate span {
  display: block;
}

.eventsfront .event .eventdate p  {
  text-align: center;
  font-size: 4em;
  line-height: 1;
  color: var(--wwph-orange);
  font-weight: 600;
  text-transform: uppercase;
}

.eventsfront .event .eventdate p span.day {
  font-size: 275%;
  font-weight: 500;
}

.eventsfront .event .eventdate p span.year {
  font-size: 80%;
  margin-bottom: 10px;
}

.eventsfront .event .eventdate p span.year::after {
  content: '\00A0';
  width: 40%;
  margin: 0 auto;
  display: block;
  height: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--wwph-yellow);
}

.eventsfront .event .eventdate p span.time {
  font-size: 50%;
}

.eventsfront .event .eventmeta h3 {
  font-size: 2.5em;
  line-height: 1.2;
  margin: 0 0 .25em 0;
  color: #000;
  text-transform: uppercase;
}

.eventsfront .event .eventmeta h4 {
  font-size: 2em;
  line-height: 1.2;
  margin: 0 0 .5em 0;
  color: #000;
  text-transform: uppercase;
}

.eventsfront .event .eventmeta p {
  font-size: 1.25em;
  line-height: 1.4;
  margin: 0 0 .25em 0;
  color: #000;
  font-weight: 500;
}

.eventsfront .event .eventmeta button {
  border: none;
  border-radius: 0;
  outline: none;
  background-color: var(--wwph-orange);
  color: #fff;
  padding: 8px 12px;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: .25em;
  transition: all .3s;
}

.eventsfront .event .eventmeta button:hover {
  background-color: var(--wwph-teal);
  cursor: pointer;
}

.section#events .contain {
  padding-bottom: 20px;
}

.registration {
  margin: 0;
  position: relative;
  clear: both;
}

.registration a {
  display: inline-block;
  border: none;
  border-radius: 0;
  outline: none;
  background-color: var(--wwph-orange);
  color: #fff !important;
  padding: 8px 12px;
  margin-top: 15px;
  text-transform: uppercase;
  letter-spacing: .25em;
  transition: all .3s;
}

.registration a:hover {
  background-color: var(--wwph-teal);
}

img.flyer {
  box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.19);
  -webkit-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.19);
  -moz-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.19);
}

.specialbuys {
  padding-top: 20px;
}

.specialbuys ul {
  display: flex;
  list-style: none;
  padding: 0;
  mask: 0;
}

.specialbuys ul li {
  width: 23%;
  margin: 0 1%;
  box-sizing: border-box;
  padding: 0;
}

.specialbuys ul li a {
  display: block;
  height: 100%;
 background: #F15F78;
 background: linear-gradient(90deg, rgba(241, 95, 120, 1) 0%, rgba(162, 117, 179, 1) 100%); 
 color: #fff;
 text-align: center;
 padding: 8px 15px;
 font-weight: 400;
 font-size: 1.8em;
 text-transform: uppercase;
 line-height: 1.3;
 display: flex;
 align-items: center;
 justify-content: center;
 text-wrap: balance;
 transition: all .3s;
}

.specialbuys ul li a:hover {
  background: rgba(162, 117, 179, 1) 100%);
}

.hideme {
  display: none;
}

.reviews ul {
  list-style: none;
  margin: 0 0 0px 0;
  padding: 0 0 0 0px;
}

.reviews ul li {
  margin: 0 0 20px 0;
  padding: 0 0 0 30px;
  border-left: 2px dotted var(--wwph-orange);
}

.reviews p {
  font-family: "EB Garamond", serif;
  font-size: 2em;
  color: #777;
  line-height: 1.3;
  margin: 0 0 1em 0;
}

.reviews p:last-of-type {
  text-align: right;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
}

.reviews p:last-of-type::before {
  content: '\2013';
  padding-right: 4px;
}

.donorlevels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.donorlevels li {
  margin: 0 1%;
  padding: 0;
  width: 23%;
  box-sizing: border-box;
}

body .donorlevels li a {
  display: block;
   background: #F15F78;
   background: linear-gradient(90deg, rgba(241, 95, 120, 1) 0%, rgba(162, 117, 179, 1) 100%); 
   color: #fff !important;
   text-align: center;
   padding: 15px;
   font-size: 3em;
   font-weight: 700;
   line-height: 1;
   -webkit-border-radius: 12px;
   -moz-border-radius: 12px;
   border-radius: 12px;
}

body .donorlevels li a span {
  display: block;
  font-size: 40%;
  font-weight: 400;
  line-height: 1;
}

.donorlevels li p {
  text-align: center;
  font-size: 1em !important;
  padding-top: 15px;
  line-height: 1.3 !important;
}


.trigger {
  display: none;
  font-size: 4em;
  text-align: center;
  line-height: 1;
  padding-bottom: 10px;
}

#navvy {
  position: absolute;
  right: 0;
  top: 0;
  width: 300px;
  background-color: #fff;
  background-color: rgba(255,255,255,.95);
  -webkit-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.32);
-moz-box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.32);
box-shadow: 0px 0px 19px 0px rgba(0,0,0,0.32);
z-index: 9000;
display: none;
}

#navvy ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#navvy ul li {
  font-size: 1.4em;
  line-height: 1;
  margin: 0;
  padding: 0;
  text-align: left;
  font-weight: 500;
}

#navvy ul li a {
  padding: 5px 14px 5px 14px;
  display: block;
  color: var(--wwph-teal-dk);
}

#navvy ul li ul li {
  font-size: 100%;
  
}

#navvy ul li ul li a {
  padding-left: 28px;
  padding: 5px 8px 5px 28px;
}

#navvy > ul > li:before {
  content: '\00A0';
  border-top: 1px dotted var(--wwph-teal);
  margin: 14px;
  display: block;
  height: 0;
}

a.closer {
  display: block;
  font-size: 1.8em;
  line-height: 1;
  color: var(--wwph-teal);
  padding:10px 14px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}