/* ----------------------  LOAD FONTS FROM SERVER ------------------------------ */

@font-face {
  font-family: "GrotzecCond-Demibold";
   src: url(https://mediainnovation.camd.northeastern.edu/2021/loveinthetimeofcovid/fonts/GrotzecCond-Demibold3.woff2);
 }  
 
 @font-face {
  font-family: "GrotzecCond-DemiboldItalic";
   src: url(https://mediainnovation.camd.northeastern.edu/2021/loveinthetimeofcovid/fonts/GrotzecCond-DemiboldItalic.woff2);
 }  
 
 @font-face {
  font-family: "LeJeunePoster-Regular";
   src: url(https://mediainnovation.camd.northeastern.edu/2021/loveinthetimeofcovid/fonts/LeJeunePoster-Regular.otf);
 } 
 
 @font-face {
  font-family: "LeJeunePoster-RegularItalic";
   src: url(https://mediainnovation.camd.northeastern.edu/2021/loveinthetimeofcovid/fonts/LeJeunePoster-RegularItalic.otf);
 }
 
 /* ----------------------  BASIC CSS FOR MY STORY ------------------------------ */
 
 * {
     box-sizing: border-box;
     
 }

html {
  font-size: 16px;
  scroll-behavior: smooth;

}

.campus-photo {
    text-align: left;
  }
  .caption {
    font-size: 0.9em;
    margin-top: 6px;
  }

body {
  margin: 0;
  font-family: "LeJeunePoster-Regular";
  line-height: 1.65;
  color: #1a1a1a;
  background: #f5f5f5;
}


.article-header {
  max-width: 780px;
  
  margin: 0 auto 2.5rem;
  text-align: left;
}


.article-title {
  font-size: clamp(2.2rem, 5vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  text-align:center;
  font-weight: 700;
}

.article-meta {
  font-size: 0.9rem;
  text-align:center;
  color: #555;
}


.article-body {
  max-width: 780px;
  font-size: 18px;
  margin: 0 auto;
  background: auto
  padding: 2rem 2.25rem;
  border-radius: 1.25rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.03);
}


.article-body figure {
  margin: 2.25rem -2.25rem;
  background: #f0f0f0;
}

.article-body img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.article-body figure img {
  border-radius: 0;
}

.article-body figcaption {
  font-size: 0.8rem;
  text-align:center;
  color: #555;
  padding: 0.75rem 2.25rem 1rem;
}

.photo-pair {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap; 
}

.photo-pair figure {
  flex: 1 1 45%;
  max-width: 400px; 
  margin: 0;
}

.photo-pair img {
  width: 100%;
  aspect-ratio: 4 / 3; 
  object-fit: cover; 
  border-radius: 8px;
  display: block;
}

.photo-pair figcaption {
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
}


@media (max-width: 700px) {
  .photo-pair {
    flex-direction: column;
    align-items: center;
  }
  .photo-pair figure {
    max-width: 100%;
  }
}

:root{
  --page-max: 1100px;
  --left-col: 340px;     
  --gap: 28px;
  --caption: #1f2937;
}

.interactive-block-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.interactive-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ddd;
  border-radius: 0.85rem;
  overflow: hidden;
}


.article-footer {
  max-width: 780px;
  margin: 3.5rem auto 0;
  font-size: 0.75rem;
  color: #777;
  text-align: left;
}
.article-footer a {
  color: inherit;
  text-decoration: underline;
}


@media (max-width: 960px) {
  .article-body {
    padding: 1.5rem 1.25rem 1.75rem;
    border-radius: 1rem;
  }
  .article-title {
    font-size: clamp(2.1rem, 8vw, 2.6rem);
  }
  .figure,
  .article-body figure {
    margin: 1.5rem -1.25rem;
  }
  .article-body figcaption {
    padding: 0.75rem 1.25rem 1rem;
  }
}

@media (max-width: 560px) {
  .page {
    padding-inline: 0.75rem;
  }
  .article-body {
    padding: 1.25rem 1rem 1.5rem;
  }
  .article-body h2 {
    font-size: 1.45rem;
  }
  .article-body h3 {
    font-size: 1.1rem;
  }
  .article-meta {
    font-size: 0.8rem;
  }
}