.post-meta {
    margin-top: 0rem;
    margin-bottom: clamp(1rem, 4vw, 2rem);
    margin-left: clamp(0.1rem, 2vw, 0.2rem);
    font-family: "Roboto", "Noto Serif TC", "Noto Sans TC", sans-serif;
    letter-spacing: 0.05em;
    font-size: clamp(0.7rem, 2vw, 0.8rem);
    color: rgba(230, 230, 230, 0.65);
    display: flex;
    gap: clamp(0.5rem, 2vw, 1rem);
    flex-wrap: wrap;
}

.post-meta .meta-item {
    white-space: nowrap;
}

.post-meta .meta-separater {
    opacity: 0.6;
}

.content {
    max-width: 55rem;
    margin: 0rem auto;
    padding: clamp(0.75rem, 3vw, 1.5rem) clamp(0.5rem, 2vw, 0.2rem);
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    color: #e6e9f0;
    font-family:  "Noto Sans TC", sans-serif;
    font-weight: 350;
    letter-spacing: 0.03em;
}

@media (max-width: 1023px) {
    .content {
        margin: 0rem auto;
        padding: clamp(0.75rem, 3vw, 1.5rem) clamp(0.75rem, 3vw, 1.0rem);
    }
}

@media (max-width: 639px) {
    .content {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    .post-meta {
        margin-bottom: 1rem;
        margin-left: 0.1rem;
        font-size: 0.7rem;
        gap: 0.5rem;
    }
}

.content h1,
.content h2,
.content h3 {
    margin: 1.2rem 0 0.8rem 0;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.content h1 { font-size: 2rem; }
.content h2 { font-size: 1.5rem; }
.content h3 { font-size: 1.2rem; }

.content p {
    margin-bottom: clamp(0.8rem, 2vw, 1.2rem);
    padding-left: clamp(0.75rem, 3vw, 1.5rem);
}

.content ul,
.content ol {
    padding-left: clamp(0.50rem, 2vw, 1.2rem);
    list-style-position: inside; 
}

.content a {
    color: #8aebf8;
    text-decoration: underline;
}

.content a:hover {
    color: #cef9ff;
}

.content blockquote {
    margin: clamp(1.5rem, 4vw, 2rem) 0;
    padding: clamp(0.75rem, 2vw, 1.0rem) 0rem clamp(0.05rem, 1vw, 0.1rem) 0rem;
    background: #0c234099;
    border-left: clamp(2px, 0.5vw, 4px) solid #00586e;
    border-radius: 0.4rem;
}

.content img {
    max-width: 100%;
    border-radius: 0.5rem;
    margin: clamp(1rem, 3vw, 1.5rem) auto;
    display: block;
}

.content iframe {
    max-width: 100%;
    border-radius: 0.5rem;
    margin: clamp(1rem, 3vw, 1.5rem) auto;
    display: block;
}

.content hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.15);
    margin: clamp(2rem, 5vw, 3rem) 0;
}

.content pre {
    background: rgba(27,31,35,0.05);
    padding: clamp(0.75rem, 2vw, 1rem);
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: clamp(1rem, 3vw, 1.5rem) 0;
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
}

.content code {
    background: rgba(27,31,35,0.05);
    padding: clamp(0.1rem, 0.5vw, 0.2rem) clamp(0.2rem, 1vw, 0.4rem);
    border-radius: 0.3rem;
    font-family: 'Fira Code', monospace;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
}

.content table {
    width: 100%;
    border-collapse: collapse;
    margin: clamp(1rem, 3vw, 1.5rem) 0;
    overflow-x: auto;
    display: block;
}

.content th,
.content td {
    border: 1px solid rgba(255,255,255,0.1);
    padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.5rem, 2vw, 1rem);
    text-align: left;
    font-size: clamp(0.85rem, 1.2vw, 0.95rem);
}