/**
 * @file
 * Styles are organized using the SMACSS technique. @see http://smacss.com/book/
 *
 * When you turn on CSS aggregation at admin/config/development/performance, all
 * of these @include files will be combined into a single file.
 */

/******************************************************************************************************************************//*
 * Basic styles
*********************************************************************************************************************************/

.float-left,
.left,
div[data-align="left"] {
  float: left;
  margin: 0 1em 1em 0;
}
.node-type-article div[data-align="left"] {
  float: none;
  margin-right: 0;
}
.float-right,
.right,
div[data-align="right"] {
  float: right;
  margin: 0 0 1em 1em;
}
.is-article .node.node--type-article img.float-left,
.is-article .node.node--type-article img.left,
.is-article .node.node--type-article img.float-right,
.is-article .node.node--type-article img.right {
  max-width: 50%;
}
.center,
div[data-align="center"] {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.contains-floated-image img {
  float: left;
  width: 100%;
}
.relative {
  position: relative;
}
.hidden {
  display: none !important;
}
a.disabled {
  opacity: 0.5;
  cursor: pointer;
}
.clear {
  clear: both;
}
.bold {
  font-weight: 600;
}
.italic {
  font-style: italic;
}
.italic em {
  font-style: normal;
}
.serif {
  font-family: "Charter", "Times New Roman", Times, serif;
}
.sans-serif,
.sans {
  font-family: "MADE Tommy Soft", sans-serif;
}
.strike {
  text-decoration: line-through;
}
.gray-bg {
  background: #f5f5f5;
}
.tan {
  color: #aea090;
}
.green {
  color: #73b355;
}
.orange {
  color: #E6AA49 !important;
}
.border-top {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.border-top.dashed {
  border-top: 1px dashed rgba(0, 0, 0, 0.3);
}
.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.border-bottom.dashed {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.3);
}
.thick-border {
  border-width: 3px;
  border-style: solid;
}
.normal_weight {
  font-weight: 400;
}
.no-margin-bottom,
.layout.no-margin-bottom {
  margin-bottom: 0;
}
.with-padding {
  padding: 1.5rem;
}
.padding-top {
  padding-top: 1rem;
}
.extra-padding-top {
  padding-top: 2.5rem;
}
.padding-bottom {
  padding-bottom: 1rem;
}
.extra-padding-bottom {
  padding-bottom: 2.5rem;
}
.margin-bottom {
  margin-bottom: 1rem;
}
.extra-margin-bottom {
  margin-bottom: 2.5rem;
}

@media all and (min-width: 800px) {
  .padding-top {
    padding-top: 1.5rem;
  }
  .extra-padding-top {
    padding-top: 3rem;
  }
  .padding-bottom {
    padding-bottom: 1.5rem;
  }
  .extra-padding-bottom {
    padding-bottom: 3rem;
  }
  .margin-bottom {
    margin-bottom: 1.5rem;
  }
  .extra-margin-bottom {
    margin-bottom: 3rem;
  }
}

@media all and (min-width: 1100px) {
  .padding-top {
    padding-top: 2rem;
  }
  .extra-padding-top {
    padding-top: 4rem;
  }
  .padding-bottom {
    padding-bottom: 2rem;
  }
  .extra-padding-bottom {
    padding-bottom: 4rem;
  }
  .margin-bottom {
    margin-bottom: 2rem;
  }
  .extra-margin-bottom {
    margin-bottom: 4rem;
  }
}

/******************************************************************************************************************************//*
 * Automatically display on different screen sizes
*********************************************************************************************************************************/

.smallest-mobile-display,
.mobile-display,
.mobile-tablet-display {
  display: block !important;
}
.small-tablet-display,
.tablet-display,
.small-desktop-display,
.desktop-display {
  display: none !important;
}
.small-desktop-menu-item-text,
.desktop-menu-item-text {
  text-indent: -10000px;
}

@media all and (min-width: 480px) {
  .smallest-mobile-display {
    display: none !important;
  }
  .small-tablet-display {
    display: block !important;
  }
}

@media all and (min-width: 800px) {
  .mobile-display {
    display: none !important;
  }
  .tablet-display {
    display: block !important;
  }
}
@media all and (min-width: 1050px) {
  .small-desktop-display {
    display: block !important;
  }
  .small-desktop-menu-item-text {
    text-indent: 0;
  }
}
@media all and (min-width: 1250px) {
  .mobile-tablet-display {
    display: none !important;
  }
  .desktop-display {
    display: block !important;
  }
  .desktop-menu-item-text {
    text-indent: 0;
  }
}

/*
BREAKING NEWS
HEADERS
DATES
AUTHOR NAMES
FEATURED HERO STORY
BREAD CRUMBS
NEWSLETTER SIGN UP
RELATED PRODUCTS
RELATED CONTENT
FEATURED SETS
PART OF A SET
AUTHOR NAME
MEET OUR AUTHORS
MORE LINKS
CATEGORIES > MAGAZINE
*/
/*
************************************************************************
BREAKING NEWS -- This styles breaking news bar
************************************************************************/
.field__item .paragraph--type--breaking-news-bar {
  background: #bd141d;
  margin: 0 auto;
  color: #fff;
  padding: 1rem 2rem .03rem 2rem;
  font-family: "MADE Tommy Soft", sans-serif;
  font-weight: 300;
  font-size: .9rem;
  text-align: center;
  line-height: 110%;
}
.field__item .paragraph--type--breaking-news-bar a {
  color: #fff;
}
/*
************************************************************************
FEATURED HERO STORY (appears on front page and magazine landing page)
***************************************************************************/
/* This sets the container */
.paragraph--type--featured-article-section {
  background-color: #0067B2;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* This sets the image */
.paragraph--type--featured-article-section .field--name-field-featured-image img {
  filter: saturate(0%);
  height: fit-content;
  object-fit: cover;
  padding-bottom: 3rem;
  position: absolute;
  mix-blend-mode: overlay;
  top: -3rem;
  z-index: 0;
  min-width: 200%;
  z-index: 0;
  height: fit-content;
}

/* Article header */
.paragraph--type--featured-article-section .field--name-field-featured-article h2 {
  padding: 2rem;
}
.paragraph--type--featured-article-section .field--name-field-featured-article h2 a {
  color: #fff !important;
  text-transform: initial;
  font-family: "Charter", serif;
  letter-spacing: 0;
  font-size: 2.2rem;
  font-weight: 200;
  border-bottom: 0;
  text-decoration: none;
  font-style: italic;
  filter: drop-shadow(10px 5px 10px #0067b2);
  display: inherit;
  line-height: 120%;
  margin-left: 1rem;
}

/* Author, both linked and unlinked */
.paragraph--type--featured-article-section .field--name-field-featured-article .field--name-field-plaintext-author,
.paragraph--type--featured-article-section .field--name-field-featured-article .field--name-field-author-paragraphs a {
  border-bottom: 2px solid #fecc41;
  color: #fff;
  display: inline-block;
  filter: drop-shadow(0px 5px 10px #0067b2);
  margin: 1rem 13% 0;
}

/* Summary (hidden on mobile) */
.paragraph--type--featured-article-section .field--name-field-summary {
  display: none;
  filter: drop-shadow(10px 1px 10px #0067b2);
}

/* Date/Issue */
.paragraph--type--featured-article-section .field--name-field-issue {
  margin-bottom: 2rem;
  margin-left: 3rem;
}
.paragraph--type--featured-article-section .field--name-field-issue a {
  color: #fff !important;
  font-size: .8rem;
}

/* Read More */
.field--name-field-featured-article .node__content {
  position: relative;
}
a.featured-article-more-link{
  background: url(/sites/default/files/2023-06/circle-arrow-yellow.png) 0 0 no-repeat;
  background-position: center right;
  color: transparent;
  text-decoration: none;
  font-family: "MADE Tommy Soft", sans-serif;
  text-transform: uppercase;
  letter-spacing: .02rem;
  font-size: 1rem;
  padding: 2rem 4rem;
  position: absolute;
  bottom: 0;
  right: 10%;
}




@media all and (min-width: 800px) {
  /* Image */
        .paragraph--type--featured-article-section .field--name-field-featured-image img {
          min-width: 170% !important;
          z-index: 0;
          height: fit-content;
        }
        /* Title */
        .paragraph--type--featured-article-section .field--name-field-featured-article h2 {
          padding: 6rem 0 1rem 6rem;
        }
        .paragraph--type--featured-article-section .field--name-field-featured-article h2 a {
          font-size: 3.5rem;
          width: 70%;
        }

        .paragraph--type--featured-article-section .field--name-field-author-paragraphs .field--name-field-plaintext-author,
        .paragraph--type--featured-article-section .field--name-field-author-paragraphs .field--name-field-author-paragraphs,
        .paragraph--type--featured-article-section .field--name-field-featured-article .field--name-field-author-paragraphs a {
          margin: 0rem 3rem 0rem 7rem;
        }

        .paragraph--type--featured-article-section .field--name-field-summary {
          display: initial;

        }
        .paragraph--type--featured-article-section .field--name-field-summary p {
          margin: 2rem 0 0rem 7rem;
          max-width: 40ch;
        }
        .paragraph--type--featured-article-section .field--name-field-issue {
          margin: .5rem 0 6rem 7rem;
        }
        a.featured-article-more-link{
          color: #fff; /* Transparent on smaller screens */
          filter: drop-shadow(10px 1px 10px #0067b2);
        }
}
@media all and (min-width: 1250px) {
        /* This constrains the content*/
        .paragraph--type--featured-article-section .field--name-field-featured-article h2,
        .paragraph--type--featured-article-section .field--name-field-featured-article .field--name-field-author-paragraphs,
        .paragraph--type--featured-article-section .field--name-field-featured-article .field--name-field-summary p,
        .paragraph--type--featured-article-section .field--name-field-featured-article .field--name-field-issue,
        .paragraph--type--featured-article-section .field--name-field-featured-article .field--name-field-plaintext-author,
        .paragraph--type--featured-article-section .field--name-field-featured-article .field--name-field-author-paragraphs {
          margin: 0 auto;
          max-width: 1250px;
        }
        .paragraph--type--featured-article-section .field--name-field-featured-image img {
          min-width: 150% !important;
          min-height: 150%;
        }
        .paragraph--type--featured-article-section .field--name-field-featured-article h2 {
          padding-top: 6rem;
          padding-left: 1rem;
          padding-bottom: 4rem;
        }
        .paragraph--type--featured-article-section .field--name-field-featured-article h2 a {
          font-size: 4rem;
          padding: 0;
        }
        .paragraph--type--featured-article-section .field--name-field-featured-article .field--name-field-plaintext-author,
        .paragraph--type--featured-article-section .field--name-field-featured-article .field--name-field-author-paragraphs a {
          margin-bottom: 1rem !important;
          border-bottom: 0;
          text-decoration: underline;
          text-decoration-color: #fecc41;
          text-decoration-thickness: 2px;
          text-underline-position: under;
        }

        .paragraph--type--featured-article-section .field--name-field-author-paragraphs .field--name-field-plaintext-author,
        .paragraph--type--featured-article-section .field--name-field-author-paragraphs .field--name-field-author-paragraphs,
        .paragraph--type--featured-article-section .field--name-field-featured-article .field--name-field-author-paragraphs a {
          margin: 0rem 3rem 0rem 2rem
        }
        .paragraph--type--featured-article-section .field--name-field-summary p {
          margin-bottom: 6rem !important;
          padding-left: 4rem !important;
        }
        .paragraph--type--featured-article-section .field--name-field-issue a {
          display: none; /*Temporarily hidden; responsiveness issue */
        }
}

/***************************************************************************
 Grid layouts
***************************************************************************/

.stacked .views-row,
.two-column-layout .views-row,
.four-column-layout .views-row {
  margin-bottom: 2.5rem;
}

@media (min-width: 560px) {

  /* This creates a responsive grid for the two- and four-column rows */
  .two-column-layout .view-content,
  .three-column-layout > .field__items,
  .three-column-layout .view-content,
  .four-column-layout .view-content,
  .four-column-layout > .field__items,
  .five-up .view-content,
  .five-column-layout > .field__items,
  .five-column-layout .view-content {
    display: grid;
    grid-template-columns: 48% 48%;
    grid-column-gap: 4%;
    grid-row-gap: 2rem;
  }
}

@media (min-width: 1000px) {

  .layout--twocol-section--75-25 {
    display: grid;
    grid-template-columns: 68% 28%;
    grid-column-gap: 4%;
  }

  /* Two-column layout with featured image. */
  .two-column-layout .view-content {
    grid-template-columns: 48.5% 48.5%;
    grid-column-gap: 3%;
    grid-row-gap: 2rem;
  }
  .three-column-layout > .field__items,
  .three-column-layout .view-content {
    grid-template-columns: 31% 31% 31%;
    grid-column-gap: 3.5%;
    grid-row-gap: 4rem;
    margin-top: 2rem;
  }
  /* This styles the four-column-row for larger screens */
  .four-column-layout > .field__items,
  .four-column-layout .view-content {
    grid-template-columns: 22.75% 22.75% 22.75% 22.75%;
    grid-column-gap: 3%;
  }

  /* This styles the five-column-row for larger screens */
  .five-up .view-content,
  .five-column-layout > .field__items,
  .five-column-layout .view-content {
    grid-template-columns: 18% 18% 18% 18% 18%;
    grid-column-gap: 2.5%;
  }
  .stacked.featured-image-left .views-row {
    column-gap: 2.5%;
    display: grid;
    grid-template-columns: 25% auto;
  }
}

@media all and (min-width: 1250px) {
  .two-column-layout .view-content {
    grid-row-gap: 3rem;
  }
  .four-column-layout > .field__items,
  .four-column-layout .view-content {
    grid-row-gap: 4rem;
  }
  .stacked .views-row {
    margin-bottom: 3rem;
  }
}


/*
*************************************************************************
AUTHOR NAMES
***************************************************************************/
.paragraph--type--linked-author a,
.paragraph--type--plaintext-author {
  font-size: .9rem;
}
@media all and (min-width: 1250px) {
  .paragraph--type--linked-author a,
  .paragraph--type--plaintext-author {
    font-size: 1rem;
  }
}


/*
*************************************************************************
PAGER
***************************************************************************/
  .pager {
    text-transform: uppercase;
    font-family: "MADE Tommy Soft", sans-serif;
    font-size: 1rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
    letter-spacing: .03rem;
    font-weight: 100;
  }
  .pager a {
   color: #fec63e;
   text-decoration: none;
  }
  .pager .pager__item--next a,
  .pager .pager__item--previous a {
  padding: 2rem;
  color: #ffdc8e;
  font-size: .001rem;
  top: .5rem;
  position: relative;
  left: 0rem;
  }
  .pager .pager__item--next a {
  background: url(/sites/default/files/2023-06/circle-arrow-yellow.png) 0 0 no-repeat;
  }
  .pager .pager__item--previous a {
    background: url(/sites/default/files/2023-06/icon-back.png) 0 0 no-repeat;
    padding-right: 1rem;
  }
  .pager .pager__item--last a,
  .pager .pager__item--first a {
    padding: 1rem;
    color: transparent;
    top: .5rem;
    position: relative;
    left: 0rem;
  }

.pager .pager__item--last a{
    background: url(/sites/default/files/2023-06/last-icon.png) 0 0 no-repeat;
}
.pager .pager__item--first a {
    background: url(/sites/default/files/2023-06/icon-first-left.png) 0 0 no-repeat;
}



/************** SOCIAL MEDIA SHARE BUTTONS */
.block-extra-field-blocknodemagazine-articlesocial-share .share-label {
  margin-right: 1rem;
  text-transform: uppercase;
  font-family: "MADE Tommy Soft", sans-serif;
  font-size: 1rem;
  color: #f0b54f;
  display: none;
}

a.share-button.twitter,
a.share-button.facebook,
a.share-button.email,
a.share-button.print {
padding: 1rem;
top: .5rem;
position: relative;
left: 0rem;
color: transparent;
}
.share-button.twitter,
.share-button.facebook,
.share-button.email,
.share-button.print {
max-width: 26px;
display: inline-flex;
}

a.share-button.twitter {
  background: url(/sites/default/files/2023-06/twitter.png) 0 0 no-repeat;
  background-size: 50%;
}
a.share-button.facebook {
  background: url(/sites/default/files/2023-06/facebook.png) 0 0 no-repeat;
  background-size: 50%;
}
a.share-button.print {
  background: url(/sites/default/files/2023-06/printer.png) 0 0 no-repeat;
  background-size: 50%;
}
a.share-button.email {
  background: url(/sites/default/files/2023-06/email.png) 0 0 no-repeat;
  background-size: 50%;
}







/* THIS IS THE 4-UP (used on Magazine landing page) */
.row .views-row {
  padding: 1rem;
}
.row .views-row .field.field--name-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.node-type-magazine-article .row .views-row .field.field--name-items {
  flex-wrap: wrap;
  margin-top: 1rem;
}
@media screen (min-height: 480px) {
  .row .views-row .field.field--name-items {
    flex-flow: row;
}

}

/* This is the wrapper */
.row .views-row .field.field--name-items > .field__item {
  justify-content: left;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  max-width: 17rem;
}


/********************************************************
2. BREAD CRUMBS
*********************************************************/
.breadcrumb {
  padding: .5rem 0;
}
/* This styles the breadcrumbs */
.breadcrumb ol li a {
  border-radius: 4px;
  color: #999;
  font-family: "MADE Tommy Soft", sans-serif;
  font-size: .8rem;
  padding: .1rem .5rem .1rem 0;
}
/* This removes breadcrumbs from landing pages */
.node-type-landing-page .breadcrumb {
  display: none;
}
/* This lightens the spacer between breadcrumbs */
.breadcrumb li::before {
  opacity: .2;
  font-size: .8rem;
  padding-right: .5rem;

}

/*
*********************************************************
3. NEWSLETTER SIGN UP
*********************************************************/
/* Wrapper */
#block-newslettersignupblock {
  background: url(/sites/default/files/2023-05/FOCOLARE-MEDIA-Full-Color-Isotype.png) #00aeea no-repeat;
  background-image: none;
  background-position: 0%;
  padding: 4rem 1rem 0rem 1rem;
  text-align: center;
  z-index: 2;
  overflow: hidden !important;
  max-height: 40rem;
}
#block-newslettersignupblock,
.newsletter {
  background: #00aeea;
  margin: 0;
  z-index: 200;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 200px;
  max-height: 500px;
  text-align: center;
  padding: 4rem 0rem 4rem 0rem;
  overflow: hidden;
  position: relative;
}

.newsletter p,
#block-newslettersignupblock p {
  margin: 0;
}

/* Message */
.newsletter h2,
#block-newslettersignupblock h2 {
  border-bottom: none;
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  max-width: none;
  padding: 1rem 4rem;
  text-transform: none;
  position: inherit;
  z-index: 20;
  line-height: 130%;
  text-align: center;
}

/* Button */
.newsletter a,
#block-newslettersignupblock a {
  text-transform: uppercase;
  color: #fff;
  font-family: "MADE Tommy Soft", sans-serif;
  text-decoration: none;
  letter-spacing: .05rem;
  padding: .7rem 1.5rem;
  border: 1px solid #fff;
  border-radius: 0 15px;
}

/* Image */
.newsletter img,
#block-newslettersignupblock img {
  object-position: 0;
  max-width: inherit;
}

@media all and (min-width: 800px) {
        #block-newslettersignupblock,
        .newsletter {
          overflow: visible;
        }
        #block-newslettersignupblock img {
          top: -10.2rem;
          right: -10rem;
          object-position: 0 4rem;
        }
        #block-newslettersignupblock h2 {
          font-size: 2rem;
          text-align: left;
          padding: 0 5rem 1rem 18%;
        }
        #block-newslettersignupblock p {
          text-align: left;
          margin: 0 5rem 1rem 18%;
        }
}
@media all and (min-width: 1250px) {
        .newsletter > div,
        #block-newslettersignupblock > div {
          position: relative;
        }
        .newsletter img,
        #block-newslettersignupblock img {
          display: block;
          position: absolute;
          top: -8.8rem;
          max-width: 500px;
          right: 3%;
          object-position: 0;
          z-index: 3;
        }
        .newsletter p,
        #block-newslettersignupblock p {
          color: #fff;
        }
        #block-newslettersignupblock {
          overflow: visible;
        }

}






/* Related */
.block-views-blockrelated-content-block-1 {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 !important;
}

/* Author bio on article page */
.field--name-field-author-bio {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0 !important;
}
.field--name-field-author-bio p {
  max-width: 1250px;
  margin: 0 auto;
  padding: 3rem 0;
}

@media screen and (min-width: 800px) {
  .paragraph--type--featured-categories-section .field__items {
    padding: 2rem;
    display: grid;
    grid-template-columns: 48% 48%;
  }
}
@media screen and (min-width: 1250px) {
        .paragraph--type--featured-categories-section .field__items {
          padding: 1rem 0 4rem 0;
          display: grid;
          grid-template-columns: 30% 30% 30%;
          gap: 3%;
        }
}

/********************************************************
5. RELATED PRODUCTS
*********************************************************/

/* Wrapper */
.layout--onecol .layout__region > .block-views-blockrelated-products-block-1 {
  background-color: #0067b2;
  font-family: "Charter", serif;
  line-height: 120%;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-bottom: 6rem;
}

/* Constrained inner section */
.block-views-blockrelated-products-block-1 .view-content {
  max-width: 1250px;
  margin: 0 auto;
}

.view-id-related_products.view-display-id-block_1 .view-content {
  display: flex;
  flex-flow: column;
}
.view-id-related_products.view-display-id-block_1 .views-row {
 background-color: #00497f;
 margin: 2rem;
 padding: 2.5rem 2rem;
 border-radius: 0 40px;
 flex-basis: 70%;
}

/* Header */
.block-views-blockrelated-products-block-1,
.block-views-blockrelated-products-block-1 h2,
.block-views-blockrelated-products-block-1 a {
   color: #fff !important;
   font-size: 1.2rem !important;
}
.block-views-blockrelated-products-block-1 h2 {
  max-width: 1250px;
  margin: 0 auto !important;
  padding: 3rem 0 1rem 2rem;
}
/* This is a hack for the header
.block-views-blockrelated-products-block-1 h2:after,
.block-views-blockrelated-content-block-1 h2:after {
content: "";
display: block;
width: 14.5ch;
max-width: 70%;
border-bottom: 2px solid #ffdc8e;
} */
/* .block-views-blockrelated-products-block-1 h2:after {
  width: 16ch;
} */

/* Title */
.block-views-blockrelated-products-block-1 .field--name-title {
  margin-top: 1rem;
  font-style: italic;
}
.block-views-blockrelated-products-block-1 .field--name-title a {
  font-size: 1.3rem !important;
  font-weight: 600;
  font-style: italic;
}

/* Subtitle */
.block-views-blockrelated-products-block-1 .field--name-title,
.block-views-blockrelated-products-block-1 .field--name-field-text-subtitle  {
  font-size: 1.1rem;
  line-height: 140%;
  font-weight: 400;
  font-style: italic;
}

/* Author */
.block-views-blockrelated-products-block-1 .field--name-field-linked-author {
  margin-top: 2rem;
  font-weight: 100;
}
.block-views-blockrelated-products-block-1 .field--name-field-linked-author a {
  font-size: 1.2rem !important;
  color: #ffdc8e !important;
  font-weight: 100;
}

@media screen and (min-width: 800px) {
          .view-id-related_products.view-display-id-block_1 .view-content {
            display: flex;
            flex-flow: row;
            flex-wrap: wrap;
            justify-content: space-around;
          }
          .view-id-related_products.view-display-id-block_1 .views-row {
            flex-basis: 25%;
          }
}

@media screen and (min-width: 1250px) {
          .view-id-related_products.view-display-id-block_1 .views-row {
            flex-basis: 15%;
            margin: 1rem;
          }
}


/********************************************************
6. RELATED CONTENT
*********************************************************/
/* Wrapper */
.block-views-blockrelated-content-block-1 {
  background-color: #333;
  color: #fff !important;
  padding: 4rem 0 !important;
}

/* Header */
.block-views-blockrelated-content-block-1 h2{
  margin: 0 auto;
  max-width: 1250px;
  padding-bottom: 2rem;
  padding-left: 2rem;
}

/* Title */
.block-views-blockrelated-content-block-1 h3 {
  margin-top: 0 !important;
}

/* Author */
.block-views-blockrelated-content-block-1 .paragraph--type--linked-author a {
  font-size: 1.2rem;
  color: #ffdc8e !important;
}

/* Links */
.block-views-blockrelated-content-block-1 h2 a,
.block-views-blockrelated-content-block-1 a {
  color: #fff !important;
  text-decoration: none;
  padding-top: 0;
}

/* Item */
.block-views-blockrelated-content-block-1 .views-row {
  text-align: left;
}

/********************************************************
9. AUTHOR NAME
*********************************************************/
.authors-section.paragraph .field--name-field-authors a,
.field--name-field-linked-author a, /*BOOK*/
.block-field-blockcommerce-productbookfield-paragraph-authors,
.block-field-blockcommerce-productbookfield-paragraph-authors a, {
  font-family: "MADE Tommy Soft", sans-serif;
  font-weight: 300;
  font-size: .9rem;
  text-decoration: none;
}
/* Other Contributors */
.block-field-blockcommerce-productbookfield-other-contributors div {
  font-size: .9rem;
  padding: .1rem 0;
}
.block-field-blockcommerce-productbookfield-other-contributors a {
  font-size: .9rem;
}
.paragraph--type--other-contributor-linked {
  display: inline-flex;
}
.paragraph--type--other-contributor-linked div {
  padding-right: .3rem;
}



/********************************************************
10. MEET OUR AUTHORS
*********************************************************/

.paragraph--type--meet-our-authors-section,
.field--name-field-author-bio {
  background-color: #ffdc8e;
  padding: 2rem 1rem 5rem;
  z-index: 0;
  position: relative;
}
.paragraph--type--meet-our-authors-section .field {
  padding-bottom: 0 !important;
}

/* Header */
.authors-section.authors-section h3,
.paragraph--type--meet-our-authors-section h3 {
  margin: 1rem 0;
  display: grid;
}


/* Author Image */
.paragraph--type--meet-our-authors-section .field--name-field-media-author-photo {
  border-radius: 0 40px;
  overflow: hidden;
  margin: 0;
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 13rem !important;
  max-height: 13rem !important;
}

/* Author Name */
.paragraph--type--meet-our-authors-section .field--name-field-authors a {
  font-family: "MADE Tommy Soft", sans-serif;
  text-decoration: none;
  font-weight: 100;
}
.paragraph--type--meet-our-authors-section .field--name-field-authors .field__item {
  margin: 1rem 0 .5rem;
  text-align: center;
}

/********************************************************
11. READ MORE LINKS
*********************************************************/
.field--name-field-banner-link,
.views-display-link {
  text-transform: uppercase;
  font-family: "MADE Tommy Soft", sans-serif;
  font-size: .7rem;
  text-align: right !important;
  margin: 2rem 0;
}
.view-footer a.views-display-link,
.field--name-field-banner-link a {
  text-decoration: none;
  color: #333 !important;
  background: url(/sites/default/files/2023-06/circle-arrow-yellow.png) 0 0 no-repeat;
  background-position: right;
  padding: 1rem 4rem 1rem 0;
  height: 2rem;
  font-size: .9rem;
  grid-row: last;
  grid-column: last;
}



/********************************************************
12. CATEGORIES
*********************************************************/
.magazine-categories,
.views-field-field-magazine-categories,
.field--name-field-global-categories,
.field--name-field-magazine-categories,
.field--name-field-video-categories {
  margin: 1rem 1rem 1rem 0;
  font-family: "MADE Tommy Soft", sans-serif;
  font-size: .7rem;
  letter-spacing: .02rem;
  display: inline-flex;
  flex-wrap: nowrap;
}
.magazine-categories a,
.views-field-field-magazine-categories a,
.field--name-field-global-categories a,
.field--name-field-magazine-categories a,
.field--name-field-video-categories a {
  background-color: #f9f4ef;
  border-radius: 20px;
  text-transform: uppercase;
  text-decoration: none;
  padding: .5rem 1rem;
  color: #666666;
  margin-right: .5rem;
}
.magazine-categories,
.views-field-field-magazine-categories,
.field--name-field-magazine-categories {
  margin: 0;
  display: inherit;
}
.magazine-categories a,
.views-field-field-magazine-categories a,
.field--name-field-magazine-categories a {
  background-color: #00aeea;
  color: #fff !important;
  text-decoration: none !important;
  padding: .2rem .5rem;
}

@media screen and (min-width: 480px) {

  .five-up .views-row h2 {
    font-family: "Charter", serif;
    text-transform: none;
  }
  .five-up .views-row h2 a {
    text-decoration: none;
    font-weight: 200;
    font-size: 1.5rem;
    line-height: 120%;
  }

  /* This is MOST POPULAR + RELATED BOOKS + RECENT ARTICLES sections on the article page */
  .block-views-blockpopular-articles-block-1,
  .block-views-blockrelated-books-from-content-block-1,
  .block-views-blockrecent-articles-block-1 {
    padding-bottom: 4rem;
  }
}

/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
/*****************************************************************************/
@media screen and (min-width: 800px) {

  /* Strong left justify content for larger screens */
  .field--name-field-paragraph-endorsements,
  .block-field-blockcommerce-productbookbody,
  .block-field-blockcommerce-productbookfield-paragraph-book-reviews,
  .field--name-field-included-in-set,
  .block-views-blockrelated-products-block-1,
  .block-views-blockrelated-content-block-1 {
  padding-left: 0;
  }
  .paragraph--type--articles-section {
    padding: 5rem 0;
  }




}

/****** Blocks to constrain within the full-screen bleed *********/
.paragraph--type--breaking-news-bar .field,
.paragraph--type--featured-items-section .field,
#block-frontpagemenu .block,
.paragraph--type--articles-section .field,
.paragraph--type--products-section .field,
.paragraph--type--meet-our-authors-section .field,
.paragraph--type--featured-sets .field,
.paragraph--type--featured-categories-section .field,
.paragraph--type--landing-page-text-block .field,
.region-main-top,
#block-focolare-breadcrumbs .breadcrumb,
.layout,
.page-title,
.node-type-video .content-inner,
.page-cart .content-inner,
.section-checkout .content-inner,
.section-product .content-inner,
#edit-login.authors-section,
.section-taxonomy .content-inner,
.user-login-form {
  max-width: 1250px;
  margin: 0 auto;
}

/* This removes the title from the landing pages */
.node-type-landing-page h1 {
  display: none;
}


@media screen and (min-width: 1200px) {


  /********************************************************
  1200px: MEET OUR AUTHORS
  *********************************************************/
  .paragraph--type--meet-our-authors-section .field--name-field-media-author-photo {
    border-radius: 0 40px;
    max-width: 12rem;
    max-height: 12rem;
  }

  /********************************************************
  1200px: READ MORE LINKS
  *********************************************************/
    .field--name-field-banner-link,
    .views-display-link {
      padding: 4rem 0;
    }

/************************************************************************
MISCELLANEOUS
************************************************************************/
/* This resets Drupal's edit link to Black */
.contextual-links a {
  color: #000 !important;
}


}
