/* open-sans-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2');
}

/* open-sans-700 - latin (for b/strong in body text) */
@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v34-latin-700.woff2') format('woff2');
}

/* lato-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/lato-v24-latin-regular.woff2') format('woff2');
}

/* lato-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/lato-v24-latin-700.woff2') format('woff2');
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header img,
article header img.full {
    width: 100%;
    margin: 0 auto;
    display: block;
    border-bottom: 2px solid #fff;
    margin-bottom: 1em;
}

article {
    width: 80%;
    margin: 0 auto;
}

article header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.8);
}

article header img {
    padding: 0rem;
}

h1, h2 {
    font-family: Lato, sans-serif;
}

article h1 {
    margin-top: 0;
    font-size: 2.5rem;
}

article h2 {
    font-size: 1.5rem;
}

article img, article video {
    width: 100%;
    max-width: 100%;
    margin: 1rem 0;
    padding: 1rem 0;
    display: block;
}

article p {
    text-align: justify;
    line-height: 1.4;
    margin: 0;
    hyphens: auto;
}

article p + p {
    text-indent: 1.4rem;
}

article b,
article strong {
    font-weight: 700;
}

p a {
    font-weight: bolder;
    color: #000;
    text-decoration: none;
}

.highlight-note {
    color: #c62828;
    font-weight: 700;
}
.highlight-note .highlight-link,
.highlight-note a {
    color: #ff5252;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 700;
}
.highlight-note .highlight-link:hover,
.highlight-note a:hover {
    color: #ff1744;
}

p.credits {
    text-align: left;
    font-style: italic;
    text-indent: 0 !important;
    margin: 1rem 0;
}

.article-section {
    margin: 1.5rem 0;
}

.multi-col {
    --col-gap: 2rem;
    column-gap: var(--col-gap);
    column-fill: balance;
}

.multi-col.cols-1,
.multi-col.cols-2,
.multi-col.cols-4 {
    column-count: 1;
}

@media only screen and (min-width: 768px) {
    .multi-col.cols-2 { column-count: 2; }
    .multi-col.cols-4 { column-count: 2; }
}

@media only screen and (min-width: 1200px) {
    .multi-col.cols-4 { column-count: 4; }
}

.multi-col h1,
.multi-col h2,
.multi-col img,
.multi-col video {
    break-inside: avoid-column;
    -webkit-column-break-inside: avoid;
    column-break-inside: avoid;
}

.figure-block {
    margin: 1.5rem auto;
    text-align: center;
}

.figure-block img,
.figure-block video {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.figure {
    -webkit-column-span: all;
    column-span: all;
    break-inside: avoid;
    margin: 1.5rem 0;
}
.figure img,
.figure video {
    width: 100%;
    height: auto;
    display: block;
}

.figure-block.span-1-of-4 { max-width: 25%; }
.figure-block.span-2-of-4 { max-width: 50%; }
.figure-block.span-4-of-4 { max-width: 100%; }

@media only screen and (max-width: 767px) {
    .figure-block.span-1-of-4,
    .figure-block.span-2-of-4,
    .figure-block.span-4-of-4 { max-width: 100%; }
}

@media only screen and (min-width: 768px) {
    article header {
        margin-bottom: 2.5rem;
        padding-bottom: 1rem;
    }
}
