.post_content p {
  padding-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.post_content p:last-child {
  padding-bottom: 0;
}

.post_content em {
  font-style: normal;
  font-weight: 700;
}

.post_content .wp-block-file a,
.post_content p a {
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  color: var(--text-link);
  font-weight: normal;
  opacity: 1;
}

.post_content .wp-block-file a:hover,
.post_content p a:hover {
  color: var(--text-link-hover);
}

.wp-block-file__button {
  display: none !important;
}

.post_content p a[target='_blank']::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(../img/icon/open_in_new.svg);
  background-size: cover;
}

.post_content ul,
.post_content ol {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
}

.post_content ul:last-child,
.post_content ol:last-child {
  padding-bottom: 0;
}

.post_content ul li,
.post_content ol li {
  padding-left: 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  position: relative;
}

.post_content ul li ul,
.post_content ol li ol {
  padding-bottom: 0;
}

.post_content ul li:not(:has(ul)):before {
  content: '';
  display: inline-block;
  width: 20px;
  aspect-ratio: 20 / 28;
  background-image: url(../img/icon/li_icon.svg);
  background-size: cover;
  background-position: left center;
  line-height: 1.6;
  position: absolute;
  top: 0;
  left: 0;
}

.post_content ul li ul li::before {
  content: '';
  display: inline-block;
  width: 20px;
  aspect-ratio: 20 / 28;
  background-image: url(../img/icon/in_li_icon.svg);
  background-size: cover;
  background-position: left center;
  line-height: 1.6;
}

.post_content ol {
  counter-reset: item;
}

.post_content ol li:not(:has(ol))::before {
  counter-increment: item;
  content: counter(item);
  display: inline-block;
  width: 20px;
  aspect-ratio: 20 / 28;
  color: var(--main-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  position: absolute;
  top: 0;
  left: 0;
}

.post_content ol li ol li:nth-child(1):before {
  content: 'a';
}

.post_content ol li ol li:nth-child(2):before {
  content: 'b';
}

.post_content ol li ol li:nth-child(3):before {
  content: 'c';
}

.post_content ol li ol li:nth-child(4):before {
  content: 'd';
}

.post_content ol li ol li:nth-child(5):before {
  content: 'e';
}

.post_content ol li ol li:nth-child(6):before {
  content: 'f';
}

.post_content ol li ol li:nth-child(7):before {
  content: 'g';
}

.post_content ol li ol li:nth-child(8):before {
  content: 'h';
}

.post_content ol li ol li:nth-child(9):before {
  content: 'i';
}

.post_content ol li ol li:nth-child(10):before {
  content: 'k';
}
