.content-center-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.cc-card{
    min-height:120px;
    display:flex;
    flex-direction:column;
    background:#111;
    border:1px solid #c8953c;
    border-radius:14px;
    padding:18px;
    text-decoration:none;
    color:#fff;
    transition:.2s ease;
    box-shadow:0 2px 10px rgba(0,0,0,.4);
}

.cc-card:hover{
    transform:translateY(-3px);
    border-color:#fff6d5;
    box-shadow:0 0 18px rgba(201,149,60,.35);
}

.cc-card .title{
    font-size:18px;
    font-weight:bold;
    color:#c8953c;
}

.cc-card .desc{
    font-size:13px;
    color:#aaa;
    margin-top:6px;
}

.cc-card.highlight{
    background:linear-gradient(180deg,#1a1a1a,#111);
    border:1px solid #fff6d5;
}

@media (max-width:640px){
    .content-center-grid{
        grid-template-columns:1fr;
    }
}

/* Content 頁面外框：與目前測試通過的 1128px 規格一致 */
.content_wrap{
    box-sizing:border-box;
    max-width:1128px;
    margin:0 auto;
    padding:0 14px 40px;
}

.content_wrap .breadcrumb{
    max-width:none;
    margin:0 0 16px;
    padding:0;
}


/*
============================================================
New Release
============================================================
*/

.new-release-page{
    max-width:960px;
    margin:0 auto 50px;
}

.new-release-header{
    margin-bottom:24px;
}

.new-release-header h1{
    margin:0;
    color:#222;
    font-size:34px;
    font-weight:700;
}

.new-release-subtitle{
    margin-top:8px;
    color:#888;
    font-size:15px;
}

.new-release-card{
    overflow:hidden;
    border:1px solid #e6e6e6;
    border-radius:8px;
    background:#fff;
}

.new-release-table{
    width:100%;
    border-collapse:collapse;
}

.new-release-table th{
    padding:16px 20px;
    background:#f8f8f8;
    color:#666;
    font-size:14px;
    font-weight:600;
    text-align:left;
}

.new-release-table td{
    padding:18px 20px;
    border-top:1px solid #efefef;
    color:#333;
    font-size:16px;
}

.new-release-table tr:hover{
    background:#fafafa;
}

.new-release-table strong{
    margin:0 4px;
    color:#159b2f;
    font-size:18px;
}

.new-release-empty{
    padding:80px 20px;
    color:#999;
    font-size:16px;
    text-align:center;
}

/*
============================================================
Content Center - New Release Card
============================================================
*/

.content-center-grid .cc-card-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    margin-bottom:14px;
}

.content-center-grid .cc-card-header .title{
    margin:0;
}



/*
============================================================
Content Center - New Release Card
============================================================
*/

.content-center-grid .cc-release-card{
    display:block;
    box-sizing:border-box;
    text-decoration:none;
}

.content-center-grid .cc-release-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    box-sizing:border-box;
    margin-bottom:12px;
}

.content-center-grid .cc-release-header .title{
    margin:0;
}

.content-center-grid .cc-release-more{
    flex:0 0 auto;
    margin-left:15px;
    color:#e6aa19;
    font-size:13px;
    line-height:1.5;
    text-decoration:none;
}

.content-center-grid .cc-release-more:hover{
    color:#ffe08a;
    text-decoration:underline;
}

.content-center-grid .cc-release-list{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    width:100%;
}

.content-center-grid .cc-release-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    width:100%;
    min-height:25px;
    box-sizing:border-box;
    padding-left:14px;
    color:#eee;
    font-size:14px;
    line-height:1.5;
    text-decoration:none;
}

.content-center-grid .cc-release-item:before{
    content:"•";
    position:absolute;
    top:2px;
    left:0;
    color:#e6aa19;
    font-size:13px;
}

.content-center-grid .cc-release-item:hover{
    color:#f4bf3a;
}

.content-center-grid .cc-release-date{
    flex:1 1 auto;
    min-width:0;
}

.content-center-grid .cc-release-total{
    flex:0 0 auto;
    margin-left:20px;
    color:#e6aa19;
    font-weight:600;
    white-space:nowrap;
}

.content-center-grid .cc-release-empty{
    color:#aaa;
    font-size:14px;
    line-height:1.6;
}

/*
============================================================
New Release Page
============================================================
*/

.new-release-panel{
    overflow:hidden;
    box-sizing:border-box;
    border:1px solid #5b481e;
    border-radius:12px;
    background:#111;
}

.new-release-panel-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:76px;
    box-sizing:border-box;
    padding:16px 20px;
    border-bottom:1px solid #38301f;
    background:#151515;
}

.new-release-panel-title{
    color:#e9b22c;
    font-size:18px;
    font-weight:700;
    line-height:1.5;
}

.new-release-panel-desc{
    margin-top:4px;
    color:#aaa;
    font-size:13px;
    line-height:1.5;
}

.new-release-panel-count{
    flex:0 0 auto;
    margin-left:20px;
    color:#c7aa62;
    font-size:13px;
}

.new-release-list{
    width:100%;
}

.new-release-list-head,
.new-release-row{
    display:flex;
    align-items:center;
    width:100%;
    box-sizing:border-box;
}

.new-release-list-head{
    min-height:46px;
    padding:0 20px;
    border-bottom:1px solid #38301f;
    background:#191919;
    color:#c7aa62;
    font-size:13px;
    font-weight:600;
}

.new-release-row{
    min-height:62px;
    padding:0 20px;
    border-bottom:1px solid #292929;
    background:#111;
    color:#eee;
}

.new-release-row:last-child{
    border-bottom:0;
}

.new-release-row:hover{
    background:#171717;
}

.new-release-row.is-today{
    background:#15130d;
}

.new-release-row.is-today:hover{
    background:#1b180f;
}

.new-release-date-column{
    flex:1 1 auto;
    min-width:0;
}

.new-release-total-column{
    flex:0 0 220px;
    text-align:center;
}

.new-release-date{
    display:inline-block;
    color:#eee;
    font-size:15px;
    vertical-align:middle;
}

.new-release-today-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:23px;
    box-sizing:border-box;
    margin-left:10px;
    padding:0 9px;
    border:1px solid #80651f;
    border-radius:12px;
    background:#2c250f;
    color:#e9b22c;
    font-size:12px;
    line-height:21px;
    vertical-align:middle;
}

.new-release-total-number{
    color:#e9b22c;
    font-size:19px;
    font-weight:700;
}

.new-release-total-unit{
    margin-left:4px;
    color:#bbb;
    font-size:13px;
}

.new-release-empty{
    padding:80px 20px;
    color:#999;
    font-size:15px;
    text-align:center;
}

@media screen and (max-width:640px){

    .new-release-panel-head{
        align-items:flex-start;
    }

    .new-release-panel-count{
        margin-left:12px;
    }

    .new-release-list-head,
    .new-release-row{
        padding-right:14px;
        padding-left:14px;
    }

    .new-release-total-column{
        flex-basis:110px;
    }

}

/*
============================================================
New Release Links / Category Products
============================================================
*/

a.new-release-row{
    color:inherit;
    text-decoration:none;
}

.new-release-row-arrow{
    display:inline-block;
    margin-left:12px;
    color:#80651f;
    font-size:22px;
    line-height:1;
    vertical-align:middle;
    transition:transform .18s ease,
        color .18s ease;
}

.new-release-row:hover .new-release-row-arrow{
    color:#e9b22c;
    transform:translateX(4px);
}

.content_wrap .home-section{
    max-width:none;
    margin-top:38px;
}

.content_wrap .home-section:first-of-type{
    margin-top:24px;
}

.content_wrap .home-section-title{
    font-size:22px;
}

.content_wrap .home-section .grid{
    margin-bottom:18px;
}

.new-release-pagebar{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin:34px 0 10px;
}

.new-release-pagebar a,
.new-release-pagebar span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:38px;
    height:36px;
    box-sizing:border-box;
    padding:0 12px;
    border:1px solid #5b481e;
    border-radius:5px;
    background:#111;
    color:#d6a84f;
    font-size:13px;
    text-decoration:none;
}

.new-release-pagebar a:hover{
    border-color:#d6a84f;
    background:#1a1a1a;
    color:#fff3c4;
}

.new-release-pagebar .now{
    border-color:#d6a84f;
    background:#d6a84f;
    color:#111;
    font-weight:bold;
}

@media screen and (max-width:640px){

    .new-release-row-arrow{
        margin-left:6px;
    }

    .content_wrap .home-section{
        margin-top:28px;
    }

    .content_wrap .home-section-title{
        font-size:19px;
    }

}
