section.trading-bot-header {
    margin: 5px 0;
}

section.trading-bot-header .box {
    padding: 15px;
}

section.trading-bot-header .title {
    display: grid;
    grid-template-columns: 53px 1fr;
    grid-gap: 5px;
    position: relative;
}

section.trading-bot-header .title .image {}

section.trading-bot-header .title .image img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    position: absolute;
    top: -6px;
    left: 0;
    object-fit: cover;
    border: var(--border);
}

section.trading-bot-header .title h1 {
    margin: unset;
    font-size: 34px;
}



@media all and (max-width: 576px) {

    section.trading-bot-header .title {

        grid-template-columns: 40px 1fr;

    }


    section.trading-bot-header .title .image img {

        width: 36px;

        height: 36px;

    }

    section.trading-bot-header .title h1 {

        font-size: 24px;

        line-height: 24px;

    }
}