
article{
    padding: 4rem 0;
}
article section{
    width: clamp(48rem, 90%, 68.75rem);
    margin: 0 auto;
}
article h2{
    width: 20rem;
    margin: 0 auto 3rem;
}
article h3{
    font-size: 1.5rem;
    text-align: center;
    font-weight: normal;
    border-bottom: 2px solid;
    border-image:var(--main-gradation) 1;
    padding-bottom: .5rem;
    margin-bottom: 1rem;
}
.blog__time{
    text-align: right;
    margin: 0 auto 3rem;
}
article p{
    margin: 1rem auto;
    line-height: 1.8;
    text-align: justify;
}

.pagenav{
    border-bottom: 2px solid;
    border-top: 2px solid;
    border-image:var(--main-gradation) 1;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}
.pagenav a{
    color: var(--text-color);
}
.next{
    text-align: right;
}
@media (max-width: 767px){
    .pagenav{
        flex-direction: column;
    }

}


aside{
    background: var(--reverse-gradation);
    padding: 4rem 0;
}
#sidebar{
    width: clamp(48rem, 90%, 68.75rem);
    margin: 0 auto;
}
#sidebar > ul{
    display: grid;
    grid-template-columns: repeat(3,auto);
    gap: 3rem;
}
#sidebar h3{
    font-weight: normal;
    margin-bottom: .5rem;
    font-size: 1rem;
}
.widget-container li{
    list-style-type: circle;
    margin-left: 1.5rem;
}
aside a{
    color: var(--text-color);
}
@media (max-width: 767px){
    #sidebar{
        width: 90%;
    }
    #sidebar > ul{
        grid-template-columns: 1fr;
    }
}