.blog-list section {
    margin-bottom: 0;
}

.blog-category-nav {
    overflow: auto;
}

#category-list {
    display: flex;
    gap: 8px;
    width: max-content;
    padding: 11px 8px;
}

#category-list li {
    padding: 9px;
    text-align: center;
    cursor: pointer;
    color: #505050;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.35px;
    border-radius: 18px;
    background-color: #F7F7FB;
}

#category-list li.active {
    background-color: #333;
    color: #fff;
}

#blog-post-list {
    display: flex;
    flex-direction: column;
}

.blog-card {
    overflow: hidden;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.blog-card a {
    display: block;
    padding: 24px 0;
}

.blog-card .blog-image {
    display: block;
    width: 100%;
    height: 227px;
    border-radius: 20px;
}

.blog-card .blog-info {

}

.blog-card .blog-title {
    margin-top: 24px;
    color: #111;
    font-family: Pretendard;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.blog-card .blog-date {
    color: #999;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    letter-spacing: -0.35px;
}

.blog-card .blog-meta {
    display: flex;
    align-items: center;
}

.blog-card .blog-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #999;
    font-family: Pretendard;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.35px;
}

.blog-card .blog-meta span:first-child {
    margin-right: 16px;
}

.carbon-view img {
    width: 16px;
    height: 16px;
}

.basil-comment img {
    width: 12px;
    height: 12px;
}

.loading-img {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-img img {
    width: 30px;
}