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

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

.trade-section {
    width: 100%;
    background-color: #f5f5f5;
    margin-top: 64px;
    padding: 48px 0;
}

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

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

.trade-section .header-title {
    margin: 0 0 20px 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #292929;
}

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

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.feature-list > div {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.trade-section .feature-text {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: #292929;
    margin: 0;
}

.checkmark {
    width: 21px;
    height: 25px;
    display: inline-block;
    line-height: 25px;
    user-select: none;
    flex-shrink: 0;
}

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

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

.trade-section .left-side img {
    /* width: 690px;
    height: 650px; */
    width: 100%;
    height: 600px;
    max-height: 724px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    filter: brightness(0.95);
}

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

    .trade-section .header-title {
        font-size: 42px;
        line-height: 130%;
    }

    .trade-section .paragraph-body,
    .trade-section .feature-text {
        font-size: 16px;
    }

    .text-content {
        order: 2;
    }

    .feature-list {
        order: 1;
    }

    .trade-section .info-badge {
        font-size: 16px;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
}

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

    .trade-section .header-title {
        font-size: 32px;
    }

    .trade-section .left-side img {
        width: 400px;
        height: 444px;
        max-height: 444px;
    }
}

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