.tabs {
    display: flex;
    margin: 20px 0;
    border-radius: 6px;
}

.tab-label {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    background-color: #f5f5f5;
    margin-right: 10px;
    font-size: 24px;
    color: #333333;
}

.tab-button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    background-color: #ECECEC;
    color: #666666;
    font-size: 24px;
    border-radius: 0;
    margin-right: 0;
}

.tab-button.active {
    background-color: #DC0000;
    color: #FFFFFF;
    border-radius: 2px;
}

button#accountTab {
    /*border-top-left-radius: 6px;*/
    /*border-bottom-left-radius: 6px;*/
}

button#faqTab {
    /*border-top-right-radius: 6px;*/
    /*border-bottom-right-radius: 6px;*/
}

.card {
    padding: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #DCDCDC;
}

.card:last-child{
    border-bottom: none;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #333333;
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card p {
    color: #999999;
    font-size: 18px;
}

.arrow-right {
    flex-shrink: 0;
}

.arrow-right img {
    width: 46px;
    height: 46px;
    margin: 0px 0px 0px 50px;
}

.arrow-right:hover {
    color: #b30000;
}

.page-title {
    display: none;
}

@media (max-width: 1080px) {

    body{
        background-color: #f4f4f4
    }
    
    .news_news_wrap__2cbiV{
        padding-bottom: 0vw;
    }
    
    .news_news_wrap__2cbiV .news_news_list__XbwLj{
        margin-bottom: 0vw;
    }

    .common-container{
        margin: 0px 2vw;
    }

    .page-title {
        display: block;
        margin-left: 8vw;
        font-size: 24px;
    }
    
    .tabs{
        margin: 20px 5vw;
        justify-content: center;
        align-items: center;
        background: #FFFFFF;
    }

    .tab-label {
        display: none;
    }

    .tab-button {
        background-color: #FFFFFF;
        font-size: 3.8vw;
        padding: 2.5vw;
    }
    
    .divider{
        width: 0.24px;
        height: 6vw;
        background-color: #D2D2D2;
    }

    .card h3 {
        font-weight: bold;
        font-size: 5vw;
    }

    .card p {
        font-size: 3.25vw;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: normal;
    }

    .arrow-right img {
        width: 12vw;
        height: 11vw;
    }
}