
#content h2 {
  margin: 16px 0;
  color: black;

  & a {
    text-decoration: none;
    color: black;
  }
}

#content h3 {
  width: 100%;
  text-align: center;
  margin: 16px auto 2rem auto;
  color: black;

  /* margin-bottom: 2rem; */

  & a {
    text-decoration: none;
    color: black;
  }
}

#content h4 {
  width: 100%;
  text-align: center;
  margin: 0.5rem auto 2rem auto;
  color: black;

  /* margin-bottom: 2rem; */

  & a {
    text-decoration: none;
    color: rgb(255, 76, 204);
  }
}

#content h2:not(:first-child) {
  margin-top: 42px;
}

#content h2:first-child {
  width: 100%;
  color: rgb(255, 166, 0);
  text-align: center;
  font-size: 40px;
  margin: 2rem 0 30px;
  line-height: 44px;

  word-break: keep-all;

  & a {
    color: rgb(255, 166, 0);
  }
}

#content{
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 3rem 2rem 3rem;
  font-size: 16px;
  line-height: 24px;  
  box-sizing: border-box;

  background-color: white;
}

img {
  align-self: center;
  width: auto;
  margin: 1rem auto;
  display: block;
}

.infeed-image{
  width: 100%;
  max-width: 450px;
  height: auto;

  margin: 2rem auto;
  display: block;
}

#content .article-wrapper{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  
  gap: 10px;
}

#content p {
  line-height: 26px;
}

#content li {
  list-style-type: ' - ';
  margin-left: 10px;
  line-height: 28px;
}

table{
  width: auto;
  word-break: break-all;

  margin: 20px 0 30px 0;
}



/* 좁은 화면시 */
@media (max-width: 500px) {
  #content {
    padding: 1.3rem;
  }
}

