/* recommend */
.article-nav {
    width: 100%;
    flex-direction: column;
}
.article-nav {
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    padding: 0 1rem;
    margin-bottom: 3rem;
}
.article-nav .article-nav-header {
    width: 90%;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 3rem;
    margin-top: 17rem;
    position: relative;
}

.article-nav .article-nav-header .article-num {
    position: absolute;
    font-size: 13rem;
    font-weight: 500;
    line-height: 1;
    color: var(--theme-gray-bright);
    right: -6rem;
    top: -8rem;
}

.article-nav .article-nav-header a {
    /* text-decoration: none; */
    font-family: var(--font-family);
    color: var(--theme-text-primary);
    font-weight: bold;
    font-size: .8rem;
    text-decoration: underline;
    cursor: pointer;
}
.article-nav .article-nav-header a:hover {
    color: var(--theme-blue-deep);

}
.article-nav .article-nav-header h2 {
    font-family: var(--font-family);
    font-size: 8rem;
    color: var(--theme-text-primary);
    position: relative;
    display: inline-block;
    letter-spacing: .2rem;
    font-weight: 500;
}

.article-main {
    gap: 2rem;
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(30%, 1fr)); */
    grid-template-columns: repeat(3, 1fr);

}
.article-item {
    flex: 1;
    flex-direction: column;
}

.article-item .img-wrapper {
    width: 100%;
    height: 20rem;
    overflow: hidden;
}
.article-item .img-wrapper img {
    width: 100%;
    object-position: center;
    object-fit: cover;
    border-radius: 1rem;
}
.info-wrapper {
    padding: .8rem 0;
    align-items: center;
    gap: 5rem;
}

.info-wrapper .info-date span {
    font-family: var(--font-family);
    font-size: .8rem;
}
.info-wrapper .info-readingtime {
    align-items: center;
}
.info-wrapper .info-readingtime svg {
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
}
.info-wrapper .info-readingtime span {
    font-family: var(--font-family);
    font-size: .8rem;
}
.article-item .article-title-wrapper {
    width: 70%;
}
.article-item .article-title-wrapper h2 {
    font-family: var(--font-family);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: .02em;
    line-height: 1.05;
    color: var(--theme-text-primary);
}