/* JK TRADE Auto Prices */
.jkap-board {
    width: 100%;
}

.jkap-meta {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 0 0 18px;
}

.jkap-meta-label {
    color: #c6a15b;
    font: 700 10px/1.4 Arial, Helvetica, sans-serif;
    letter-spacing: .18em;
}

.jkap-meta-date {
    color: #d3c8bb;
    font: 700 17px/1.35 Arial, Helvetica, sans-serif;
    font-variant-numeric: tabular-nums;
}

.jkap-main-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.jkap-metric {
    overflow: hidden;
    min-height: 132px;
    background: #17130f;
    border: 1px solid #473728;
}

.jkap-metric-head {
    min-height: 49px;
    display: flex;
    align-items: center;
    padding: 12px 17px 11px;
    background: #211a13;
    border-bottom: 1px solid #473728;
    border-left: 3px solid #c6a15b;
    color: #e6cf95;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .035em;
}

.jkap-silver .jkap-metric-head,
.jkap-detail.jkap-silver .jkap-detail-head {
    border-left-color: #a7a7a3;
    color: #deddd7;
}

.jkap-platinum .jkap-metric-head,
.jkap-detail.jkap-platinum .jkap-detail-head {
    border-left-color: #c3b9ae;
    color: #eadfd2;
}

.jkap-metric-body {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
}

.jkap-price {
    color: #fff8ec;
    font-family: Arial, "Helvetica Neue", "Yu Gothic", sans-serif;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.01em;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.jkap-diff {
    color: #c8bcae;
    font-family: Arial, "Helvetica Neue", "Yu Gothic", sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    white-space: nowrap;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.jkap-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.jkap-detail {
    overflow: hidden;
    background: #17130f;
    border: 1px solid #473728;
}

.jkap-detail:last-child {
    grid-column: 1 / -1;
}

.jkap-detail-head {
    min-height: 45px;
    display: flex;
    align-items: center;
    padding: 11px 15px;
    background: #211a13;
    border-bottom: 1px solid #473728;
    border-left: 3px solid #c6a15b;
    color: #e6cf95;
    font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.jkap-detail-body {
    padding: 8px 13px 10px;
}

.jkap-detail-row {
    min-height: 39px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 8px 3px;
    border-bottom: 1px solid #30271f;
}

.jkap-detail-row:last-child {
    border-bottom: 0;
}

.jkap-detail-row span {
    color: #d4bd88;
    font: 500 11px/1.45 Arial, "Yu Gothic", sans-serif;
}

.jkap-detail-row strong {
    color: #eee7dd;
    font: 600 11px/1.45 Arial, "Yu Gothic", sans-serif;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.jkap-note {
    margin: 13px 0 0;
    color: #8f8579;
    font-size: 10px;
    line-height: 1.75;
}

.jkap-unavailable {
    padding: 18px;
    background: #17130f;
    border: 1px solid #473728;
    color: #d7cbbd;
    font-size: 13px;
    line-height: 1.7;
}

@media screen and (max-width: 640px) {
    .jkap-main-grid,
    .jkap-detail-grid {
        grid-template-columns: 1fr;
    }

    .jkap-detail:last-child {
        grid-column: 1;
    }

    .jkap-meta-date {
        font-size: 16px;
    }

    .jkap-metric-body {
        min-height: 72px;
        padding: 15px 16px;
        gap: 16px;
    }

    .jkap-price {
        font-size: 21px;
    }

    .jkap-diff {
        font-size: 13px;
        font-weight: 600;
    }
}
