nav a img {
    border-style: outset;
    border-color: var(--color-link);
    border-width: 0px;
    max-width: 30% !important;
    height: auto;
    /*box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);*/
}

.post-title {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
}



blockquote,
blockquote p {
    display: block;
    font-size: medium;
    line-height: var(--line-height);
    text-align: var(--justify-normal);
    border-right: none;
    border-left: 0.25rem solid var(--color-accent);
    padding: 0 0 0 1rem;
    margin-left: 0;
    max-width: 100%;
}

blockquote p {
    border-left: none;
}

blockquote footer {
    color: var(--color-text);
    display: block;
    font-size: small;
    line-height: var(--line-height);
    padding: 1.5rem 0;
}

a {
    text-decoration: none;
    word-break: break-word;
}

* {
    scrollbar-width: auto;
}

nav {
    margin-bottom: 1rem;
}

img {
    max-height: 500px !important;
    max-width: 80% !important;
    height: auto;
    display: block;
    margin: 0 auto;
}

pre,
pre code,
pre samp {
    max-width: 100%;
}

table td[align],
table th[align] {
    text-align: left !important;
}

table td[align="center"],
table th[align="center"] {
    text-align: center !important;
}

table td[align="right"],
table th[align="right"] {
    text-align: right !important;
}

/* Publications container styling */
.publications-container {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.publications {
    flex: 1;
}



/* Mobile responsive */
@media (max-width: 768px) {
    .publications-container {
        flex-direction: column;
        gap: 1rem;
    }

    }

/* 태그 스타일링 */
.tags {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-accent);
}

.tag {
    display: inline;
    margin-right: 0.5rem;
}

/* 태그 페이지 스타일링 */
.posts-list {
    margin-top: 2rem;
}

.post-preview {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-accent);
}

.post-preview h3 {
    margin: 0 0 0.5rem 0;
}

.post-meta {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.post-summary {
    color: var(--color-text);
    line-height: 1.5;
}

/* Posts 섹션 이미지 스타일링 */
.posts-with-images .post-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-accent);
}

.post-thumbnail {
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.post-thumbnail-empty {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    /* 완전히 투명한 공간으로 처리 */
}

.post-content {
    flex: 1;
    min-width: 0;
}

.post-content .post-header {
    margin-bottom: 0.5rem;
}

.post-content .post-summary {
    margin: 0;
}
