:root {
  --story-secondary-color: #808080;
}

.blog-details-article-content {
  h2, h3 {
    font-weight: 700;
  }
  p, cite, ol, ul, h2, h3, h4 {
    margin-bottom: 1.2em;
    line-height: 1.5;
  }
  h2 {
    line-height: 1.66667;
    font-size: 24px;
  }
  h3 {
    color: #000;
    font-size: 21px;
    line-height: 1.2;
  }
  h4 {
    color: #222;
    font-size: 19px;
    text-transform: none;
  }
  p, ul, ol, cite {
    font-size: 18px;
    line-height: 1.5;
  }
  b {
    font-weight: 700;
  }
  strong {
    font-weight: 600;
  }
  blockquote {
    margin-left: min(4rem, 10%);
  }
  section {
    margin-bottom: 4rem;
  }
  cite {
    display: inline-block;
    font-style: italic;
  }
  figure, img, table, ol, ul {
    margin-bottom: 2rem;
  }
  figure img {
    margin: 0;
  }
  ol li {
    list-style-type: decimal;
    list-style-position: inside;
  }
  ul {
    list-style-type: '- ';
  }
  img.vertical {
    width: unset;
  }

  .closing-notes, .closing-notes-section {
    color: var(--story-secondary-color);
    font-size: 16px;
    p {
      color: inherit;
      font-size: inherit;
      margin-bottom: 0.5em;
    }
  }
}

figcaption {
  color: var(--story-secondary-color);
  font-style: italic;
}

.paragraph-title {
  text-transform: unset;
}

.side-by-side-image-container {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: max(1.282%, 10px);
  margin-bottom: 2rem;
  img {
    object-fit: contain;
    margin: 0;
  }
}

.triple-container {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
  grid-template-columns: 1fr 1fr 1fr;
  @media (max-width: 1080px) {
    grid-template-columns: 1fr 1fr;
  }
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
}

.booth-grid {
  background-color: black;
  color: white;
  padding: clamp(1rem, 3.5vw, 3rem);
  margin-bottom: 2rem;
  h4 {
    text-align: center;
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.2;
    margin-bottom: 1em;
    font-weight: 100;
    text-transform: uppercase;
    color: inherit;
  }
  h6 {
    color: #aaa;
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 0.4em;
    font-weight: 600;
  }
  ul {
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }
  ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    break-inside: avoid;
  }
  li ul {
    display: block;
    list-style-type: circle;
    list-style-position: inside;
  }
}