@import url(https://fonts.googleapis.com/css?family=Montserrat:700|Crimson+Text:400,400italic,700italic,700);

html {
  font-family: 'Crimson Text', serif;
  font-size: 18px;
  line-height: 1.3;
  background: #fff;

  @media (max-width: 520px) {
    font-size: 16px;
  }
}

.page-wrap {
  max-width: 75%;
  margin: 20px auto;
  padding: 10px;
}

.article-header {
  h4 {
    text-align: center;
  }

  h2 {
    font-size: 30px;
    text-align: left;
    font-weight: bold;
    color: #722e0e;
  }
}

.classification-header {
  text-transform: uppercase;
  color: #4f7c8b;
  letter-spacing: 0.1rem;
  margin-bottom: -5px;
}

.intro-ps {
  columns: 2;
  font-size: 20px;

  >p:first-child {
    text-indent: 0;

    strong {
      font-size: 125%;
      letter-spacing: -1px;
      line-height: 0;
    }
  }
}

.intro-ps-mobile {
  display: none;
}

.img-shape {
  float: right;
  width: 190px;
  height: 180px;
  shape-outside: circle(50%);
  clip-path: circle(50%);
}


.in-brief {
  text-align: center;
  margin: 5em 0 2rem 0;

  h3 {
    text-align: center;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    display: inline-block;
    padding: 0 20px;
    color: #999;
    letter-spacing: 0.2rem;
    font-size: 100%;
    margin: 0;
    background: #f2f2f2;
    position: relative;
    top: 1px;
    color: rgb(0, 88, 106);
  }
}

.in-brief-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  font-size: 20px;
  text-align: left;
  border: 1px solid #722e0e;
  padding: 20px;
}

h2 {
  font-family: 'Crimson Text', serif;
  font-weight: 400;
}

h4 {
  font-family: 'Montserrat', sans-serif;
}

p {
  text-indent: 2rem;
  margin: 0;
}

.byline {
  font-style: italic;
  font-size: 22px;
  text-align: end;
}

.byline a {
  font-size: 22px;
  text-align: end;
  color: rgb(50, 50, 50);
}

.byline a:hover {
  font-size: 22px;
  text-align: end;
  color: rgb(0, 88, 106);
}

@media (max-width: 500px) {

  .page-wrap {
    max-width: 80%;
    margin: 20px auto;
    padding: 10px;
  }

  .article-header {
    @media (max-width: 500px) {
      h2 {
        color: #722e0e;
        font-size: 24px;
        text-align: left;
        font-weight: bold;
        margin-top: 10px;
        margin-bottom: 50px;
      }
    }
  }

  .intro-ps {
    display: none;
  }

  .in-brief-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    font-size: 17px;
    max-height: 100vh;
    overflow-y: auto;
    text-align: justify;
    margin-bottom: 50%;
  }

  .classification-header {
    text-transform: uppercase;
    color: rgb(0, 150, 200);
    font-size: 12px;
  }

  .img-shape {
    display: none;
  }


  .byline {

    a {
      font-style: normal;
      font-size: 14px;
      text-align: end;
    }
  }

}