@import url('/css/global.css');
@import url('/app/home/index.css');


    .total-item {
        width: 100%;
        background-color: var(--bg-gray);
        border-radius: 12px;
        padding: 12px 16px;

        display: flex;
        flex-direction: column;
        gap: 4px;

        .total-title {
            font-family: var(--pret-bold);
            font-size: 12px;
            color: var(--gray);
        }

        .total-number {
            font-family: var(--star-bold);
            font-size: 32px;
        }

        .total-desc {
            color: var(--gray);
            font-size: 10px;
        }
    }
.total {
    width: 100%;
    padding: 24px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 8px;

    .total-total {
        width: 100%;
        background-color: var(--primary);
        color: white;
        box-sizing: border-box;
        .total-title {
            color: white;
        }
    }

    .total-container {
        display: flex;
        flex-direction: row;
        gap: 8px;

    }
}

.most {
    width: 100%;
    padding: 24px 16px;
    box-sizing: border-box;

    .most-title {
        font-family: var(--pret-bold);

        padding: 16px 8px;
        font-size: 20px;
    }

    .most-container {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;

        .most-item {
            border-radius: 12px;
            background-color: var(--bg-gray);
            box-sizing: border-box;
            padding: 8px 16px;

            display: flex;
            flex-direction: row;
            gap: 8px;

            height: 80px;
            align-items: center;

            .most-item-left {
                padding-right: 24px;
                font-family: var(--star-bold);
                color: var(--primary);
                font-size: 48px;
                text-align: left;
            }

            .most-2 {
                color: var(--primary-2);
            }

            .most-3 {
                color: var(--primary-3);
            }

            .most-item-img {
                background-position: center;
                background-repeat: no-repeat;
                background-size: contain;

                height: 100%;
                aspect-ratio: 1/1;
            }

            .most-item-right {
                width: 100%;
                font-family: var(--star-bold);
                font-size: 24px;
            }
        }
    }
}