#ct-article {
    margin: 78px auto;
    max-width: 944px;
    padding: 0 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 49px;
}

#ct-article>header>figure {
    margin-top: 49px;
    width: 100%;
    display: flex;
	align-items:center;
    flex-direction: column;
    gap: 15px;
}

#ct-article>header>figure>figcaption{
    font-size: 14px;
    line-height: 18px;
}

#ct-article>header>figure>figcaption:empty{display:none;}
#ct-article>header>figure>img {
    width: fit-content;
    max-width: 100%;
    height: auto;
}

#ct-article>header>h1 {
    font-size: 30px;
    line-height: 38px;
    text-align: center;
}

#ct-article>header>span {
    font-family: 'Inter';
    font-weight: bold;
    color: var(--dark-blue);
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    display: block;
    margin-bottom: 24px;
}

/* article content */
#article-content {
    display: flex;
    flex-direction: column;
}

#article-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

#article-content a {
    color: var(--dark-blue);
    text-decoration: none;
}

#article-content a:hover {
    text-decoration: underline;
}

#article-content blockquote {
    margin: 0 0 20px;
    padding: 10px 20px;
    background-color: #f9f9f9;
    border-left: 4px solid var(--dark-blue);
    font-style: italic;
}

#article-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

#article-content .wp-caption {
    margin-bottom: 20px;
    text-align: center;
    margin: 0 auto 20px;
}

#article-content .wp-caption-text {
    font-style: italic;
    font-size: 14px;
}

#article-content pre {
    background-color: #f9f9f9;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: auto;
}

#article-content code {
    font-family: Consolas, Monaco, Courier, monospace;
    font-size: 14px;
    background-color: #f9f9f9;
    padding: 2px 4px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#article-content ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

#article-content ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 15px;
}

#article-content li {
    margin-bottom: 5px;
}

#article-content li:before {
    content: "\2022";
    position: absolute;
    margin-left: -20px;
    color: var(--black);
}

#article-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

#article-content th,
#article-content td {
    border: 1px solid #ccc;
    padding: 8px;
}
#article-content h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-top: 30px;
    margin-bottom: 20px;
}

#article-content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin-top: 25px;
    margin-bottom: 15px;
}

#article-content h4 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-top: 20px;
    margin-bottom: 10px;
}

#article-content h5 {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin-top: 15px;
    margin-bottom: 10px;
}

#article-content h6 {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
    margin-bottom: 5px;
}

