/* --------------------- */
/* 右側 隱藏選單
/* --------------------- */
aside {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 100;
    height: var(--100vh);
    color: #f8f8f8;
    background-color: rgba(13, 13, 17, 0.95);
    box-shadow: -2px 3px 4px rgba(0, 0, 0, 0.3);
    transform: translateX(110%);
    transition: transform 0.3s;
    backdrop-filter: var(--glass_blur);
    max-width: 100vw;
}
aside.isShow {
    transform: translateX(0);
}

/* --------------------- */
/* Blog QA
/* --------------------- */
.template_blog {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}

.template_blog article {
    margin-top: 1.5rem;
}

.template_blog article h1 {
    font-size: 1.6rem !important;
}

.template_blog article h2 {
    font-size: clamp(1.2rem, 1rem + 0.3vw, 1.5rem) !important;
}
