.detail-sub {
    font-size: var(--font-2xl);
    color: #3F80D6;
    font-weight: 500;
    margin-bottom: 25px;
}

.ushr-detail-table {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    font-size: var(--font-md);
}

.ushr-detail-table .table-head {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    background-color: #B9CCF0;
    color: var(--color-text-dark);
    text-align: center;
    font-weight: 500;
}

.ushr-detail-table .table-head div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 10px;
    border-right: 4px solid white;
    min-height: 87px;
    text-align: center;
}

.ushr-detail-table .table-head div:last-child {
    border-right: none;
}

.ushr-detail-table .table-body .table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    background-color: #E5EAF4;
    border-top: 2px solid white;
}

.table-col {
    display: flex;
    align-items: center;
    padding: 20px 35px;
    border-right: 4px solid white !important;
    color: #2B4A79;
    font-weight: 400;
    font-size: var(--font-md);
}

.table-col:last-child {
    border-right: none !important;
}

.table-col.region {
    background-color: #D8E2F5;
    color: #2B4A79;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.table-col.list {
    padding-left: 30px !important;
    justify-content: flex-start !important;
    text-align: left !important;
}

.table-col.list ul {
    padding-left: 0;
    list-style: none;
}

.table-col.list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
    color: var(--color-text-dark);
    font-weight: 400;
    line-height: 1.6;
}

.table-col.list li::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 10px;
    width: 5px;
    height: 5px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.ushr-detail-table .table-row .table-col:last-child {
    border-right: none;
}

@media (max-width: 768px) {
    .ushr-detail-table {
        display: block;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 10px;
    }

    .ushr-detail-table .table-head,
    .ushr-detail-table .table-body .table-row {
        min-width: 720px;
    }

    .ushr-detail-table .table-head div,
    .ushr-detail-table .table-body .table-col {
        font-size: var(--font-sm);
        padding: 16px 12px;
    }

    .table-col.list {
        padding-left: 20px !important;
    }

    .table-col.list li {
        font-size: var(--font-sm);
    }

    .ushr-detail-table::-webkit-scrollbar {
        height: 8px;
    }

    .ushr-detail-table::-webkit-scrollbar-thumb {
        background-color: #bbb;
        border-radius: 4px;
    }
}


@media (max-width: 480px) {

    .detail-sub {
        font-size: var(--font-sm);
    }

    .overview-vertical .overview-description {
        gap: 10px;
    }

    .table-col.list li {
        font-size: var(--font-xs);
    }

    .ushr-detail-table .table-head,
    .ushr-detail-table .table-body .table-row {
        min-width: 610px;
    }

    .ushr-content .margin-top {
        margin-top: 20px !important;
    }

    .table-col.list li::before {
        top: 6px;
    }
}