:root {
    --second-family: 'Plus Jakarta Sans', sans-serif;
    --font-family: 'DM Sans', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    --color-text-text-950: #0f172a;
    --primary: #4dc0b5;
    --section-bg: #ffffff;
    --badge-bg: #d8f3e5;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--section-bg);
    font-family: var(--body-font);
}

.asset-section {
    width: 100%;
    background: var(--section-bg);
    padding: 42px 0 0;
}

.asset-container {
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.left-side {
    flex: 1;
    max-width: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-side .img-wrapper {
    width: 100%;
    display: flex;
}

.asset-section .left-side img {
    /* width: 690px;
    height: 650px; */
    width: 100%;
    height: 600px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
}

.text-content {
    margin: 0;
    padding: 0;
}

.asset-section .info-badge {
    display: inline-block;
    background: var(--badge-bg);
    color: #292929;
    font-weight: 600;
    font-size: 16px;
    padding: 6px 12px;
    border-radius: 5px;
    white-space: nowrap;
}

.asset-section .header-title {
    margin: 0;
    font-family: var(--second-family);
    font-size: 39px;
    font-weight: 700;
    color: #292929;
    line-height: 1.3;
}

.asset-section .paragraph-body {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #161616;
    text-align: left;
    font-weight: 400;
    font-family: var(--second-family);
}

.stats {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 220px;
    text-align: left;
}

.stat-heading {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0 0 8px;
}

.asset-section .stat-value {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 42px;
    color: #292929;
    line-height: 1;
}

.asset-section .stat-label {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 32px;
    color: #292929;
    line-height: 1;
}

.stat-item div {
    margin: 0;
    font-size: 16px;
    color: #161616;
    line-height: 1.5;
    font-family: var(--font-family);
}

@media (max-width: 991.98px) {
    .asset-container {
        flex-direction: column;
        gap: 32px;
        padding: 0 8px;
        align-items: flex-start;
    }

    .left-side {
        order: 0;
        max-width: 100%;
        width: 100%;
    }

    .right-side {
        order: 1;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .text-content {
        order: 0;
    }

    .stats {
        order: 1;
        flex-direction: column;
        gap: 12px;
    }

    .info-badge {
        font-size: 14px;
        padding: 4px 10px;
    }

    .header-title {
        font-size: 24px;
        line-height: 130%;
    }

    .paragraph-body {
        font-size: 16px;
    }

    .stat-value {
        font-size: 34px;
    }

    .stat-label {
        font-size: 22px;
    }

    .asset-section .left-side img {
        width: 100%;
        height: auto;
        max-width: 100%;
        max-height: 560px;
    }
}

@media (max-width: 480px) {
    .asset-section {
        padding-top: 48px;
        padding-bottom: 0;
    }

    .asset-section .header-title {
        font-size: 29px;
    }

    .asset-section .stat-value {
        font-size: 42px;
    }

    .asset-section .stat-label {
        font-size: 32px;
        padding: 0 0 20px;
    }

    .asset-section .left-side img {
        width: 424px;
        height: 444px;
        max-height: 444px;
    }
}

@media (max-width: 320px) {
    .asset-section .left-side img {
        max-height: 400px;
        width: 100%;
        height: auto;
        padding-bottom: 8px;
    }
}
