* {
  box-sizing: border-box;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
  margin-left: 0;
}

p {
  margin-bottom: 10px;
  font-size: 16px;
}

p:empty {
  min-height: 1em;
}

li {
  font-size: 16px;
}

a {
  font-size: 16px;
}

span {
  font-size: 16px;
}

.column-title {
  position: relative;
  margin: 0 auto;
  /* width: 77.5vw; */
  text-align: left;
  font-size: 42rem;
  font-weight: bold;
  color: #005573
}

.content-wrap {
  display: flex;
  justify-content: center;
  align-items: start;
  column-gap: 2.5%;
}

.content-wrap-left {}

.blog-intro {
  /* max-width: 700px; */
  /* max-height: 350px; */
  width: 55vw;
  /* aspect-ratio: 16 / 9; */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-intro img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: center top; */
  display: block;
}

.sidebar-title {
  margin: 0;
  padding: 20px 0;
  font-size: 20px;
  font-weight: bold;
}

.related-articles-list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  padding: 0;
  margin: 0;
}

.related-article-item {
  list-style: none;
  width: 100%;
  height: 120px;
  /* aspect-ratio: 1.414 / 1; */
}

.related-article-link {
  display: flex;
  justify-content: start;
  align-items: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  color: #000;
  font-size: 16px;
}

.related-article-thumbnail {
  width: 50%;
  height: 100%;
}

.related-article-thumbnail img {
  display: inline-block;
  max-width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.related-article-content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 50%;
  height: 100%;
  padding: 10px;
}

.related-article-title {
  margin: 0;
  font-size: 14px;
}

.related-article-date {
  font-size: 14px;
}

@media screen and (max-width: 840px) {
  .blog-intro {
    width: 100%;
  }

  .content-wrap {
    flex-direction: column;
  }

  .contact-intro {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }


  .content-wrap-right {
    width: 100%;
  }

  .sidebar-title {
    margin-top: 25px;
  }

  .related-article-title {
    margin: 0;
    font-size: 16px;
  }

  .related-article-date {
    font-size: 16px;
  }
}

@media screen and (min-width: 841px) {
  .blog-intro {
    max-width: 900px;
    width: 55vw;
  }

  .contact-intro {
    margin: 52rem auto 0;
    /* max-width: 700px; */
    max-width: 900px;
    width: 55vw;
  }

  .content-wrap-right {
    width: 20%;
    position: sticky;
    top: 100px;
  }

  .related-article-title {
    margin: 0;
    font-size: 14px;
  }

  .related-article-date {
    font-size: 14px;
  }
}
