.wp-block-code code {
    background-color: #eee;
    padding: 1rem;
    border-radius: .5rem;
}

.oxy-stock-content-styles img {
    height: auto;
}

.dx-article-tree ul {
    width: 100%;
    list-style: none;
    padding-left: 0px;
}

.dx-article-tree li>ul {
    display: none;
}

.dx-article-tree li.open>ul {
    display: block;
}

.dx-article-tree .article-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dx-article-tree .toggle-icon {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s;
    /* width: 1em; */
    text-align: center;
    flex-shrink: 0;
    transform: rotate(0deg);
    padding:12px;
}

.dx-article-tree li.open>.article-item>.toggle-icon {
    transform: rotate(180deg);
}

.dx-article-tree .current-article>.article-item>a {
    font-weight: 600;
    color: #005EEB;
}
.dx-article-tree > ul > li {
}
.dx-article-tree a {
    display: inline-flex;
    flex: 1;
    padding: 7px 0;
    color: #667094;
    font-size: 14px;
    line-height: 1.4;
    width: 100%;
}
.dx-article-tree > ul > li > div > a {
}
.dx-article-tree > ul > li > ul > li > div {
    padding-left: 15px;
}
.dx-article-tree > ul > li > ul > li > ul > li > div {
    padding-left: 30px;
}

.dx-child-articles-list {
    margin-top: 40px;
}
.dx-child-articles-list ul {
    list-style: none;
    padding-left: 0px;
    display: grid;
    column-gap: 18px;
    row-gap: 21px;
    grid-template-columns: repeat(2, 1fr);
}
.dx-child-articles-list ul li {
    padding: 24px 23px 16px;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;

}
.dx-child-articles-list ul li a {
    min-width: 0;
    width: 100%;
}
.dx-child-articles-list ul li a strong {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    color: #667094;
}
.dx-child-articles-list ul li a .child-article-meta {
  min-width: 0;
  overflow: hidden;
}
.dx-child-articles-list ul li a .child-excerpt {
    margin-top: 6px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    color: #575757;
    max-width: 100%;                    /* 부모 너비 기준으로 제한 */
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dx-post-navigation {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 47px;
}
.dx-post-navigation .prev-post,
.dx-post-navigation .next-post {
    background-color: #EBF2F6;
    width: 100%;
}
.dx-post-navigation .prev-post {
    padding: 19px 20px 17px 10px;
    border-radius: 10px 0 0 10px;
    border-right: 1px solid #D7EBF5;
}
.dx-post-navigation .next-post {
    padding: 19px 10px 17px 20px;
    border-radius: 0 10px 10px 0;
}
.dx-post-navigation .next-post img {
    transform: rotate(180deg);
}
.dx-post-navigation .next-post.only-next {
    border-left: 1px solid #D7EBF5;
}
.dx-post-navigation a {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.dx-post-navigation a div {
    display: flex;
    flex-direction: column;
}
.dx-post-navigation .prev-post a div {
    align-items: end;
}
.dx-post-navigation a span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    color: #859CA6;
}
.dx-post-navigation a strong {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.6;
    color: #313131;
}
.vert-divider:before {
  border-left: 1px solid #C4CDD5;
  content: '';
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 12px;
  z-index: -1;
}
.vert-divider a {
  margin-top: 50px;
}
.hide-wrap img {
  transform: rotate(180deg);
}
.nav-section .inactive .toggle-wrap {
    display: none;
}
.nav-section .ct-div-block.inactive .toggle-1 {
    display: block;
}
.nav-section .ct-div-block:not(.inactive) .toggle-1 {
    display: none;
}
.nav-section .ct-div-block.inactive .toggle-2 {
    display: none;
}
.nav-section .ct-div-block:not(.inactive) .toggle-2 {
    display: block;
}

@media (max-width: 768px) {
    .dx-child-articles-list ul {
        grid-template-columns: repeat(1, 1fr);
    }
}