.host {
    padding: 80px 0;
}

.host .host__wrapper {
    display: flex;
    gap: 34px;
}

.host .host__block {
    display: flex;
    flex-direction: column;
    padding: 40px;
    border-radius: 32px;
    background: #FFFFFF;
    border: 1px solid #F1F1F1;
    box-shadow: 0px 149px 60px rgba(184, 184, 184, 0.01),
        0px 84px 50px rgba(184, 184, 184, 0.05),
        0px 37px 37px rgba(184, 184, 184, 0.09),
        0px 9px 20px rgba(184, 184, 184, 0.1);
}

.host .host__picture {
    width: 619px;
    display: flex;
    flex-shrink: 0;
    max-width: 50%;
}

.host .host__img {
    max-width: unset;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 40px;
    box-shadow: 0px 8px 16px -2px rgba(17, 8, 0, 0.04),
        0px 4px 8px -1px rgba(17, 8, 0, 0.04),
        0px 2px 4px rgba(17, 8, 0, 0.04);
    background-color: #B8A4FF;
    object-position: bottom;
}

.host .host__name {
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    letter-spacing: 0%;
    margin: 24px 0;
    color: #2A2A37;
}

.host .host__list {
    display: flex;
    flex-direction: column;
    gap: 1em;
    list-style: disc;
    margin-left: 1em;
    margin-bottom: 30px;

    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #2A2A37E5;
}

.host .register-btn {
    width: 100%;
    margin-top: auto;
}

@media screen and (max-width: 1120px) {
    .host .host__wrapper {
        flex-direction: column-reverse;
        gap: 0;
    }

    .host .host__picture {
        width: 100%;
        max-width: unset;
        margin-bottom: -45px;
        position: relative;
        z-index: -1;
        max-height: 818px;
    }

    .host {
        padding: 60px 0;
    }

    .host .host__list {
        margin-bottom: 16px;
    }

    .host .host__img {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}

@media screen and (max-width: 680px) {
    .host {
        padding: 40px 0;
    }

    .host .block-title {
        font-size: 32px;
        max-width: 280px;
    }

    .host .host__block {
        padding: 20px;
    }

    .host .host__name {
        margin-top: 16px;
    }

    .host .content-wrap {
        padding-left: 0;
        padding-right: 0;
    }

    .host .host__list {
        font-size: 18px;
    }
}

