.category-page{
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.category-page-title{
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.cp-t-main{
    text-align: center;
    font-weight: bold;
}

.cp-t-sub{
    font-size: 12px;
    text-align: center;
    padding: 0px 45px;
}

.category-page-content{
    width: 100%;
    padding: 10px 20px;
}

.cat-page-row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.cat-page-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.cat-page-item-text{
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
    color: #000;
    font-weight: bold;
}

.cat-page-item a{
    text-decoration: none;
}

.cat-normal{
    display: flex;
    flex-direction: column;
}

.cat-page-item-img{
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.cat-page-item-img img{
    width: 100%;
    height: 100%;
}