.result-group{
    width: 360px;
    gap: 30px 0;
}

.group-title{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px 0;
}

.group-title span{
    font-size: var(--fontSizeBase);
    line-height: var(--lineHeightBase);
    color: var(--colorGray800);
    font-weight: var(--fontWeightRegular);
}

.result-img img{
    width: 140px !important;
}

.btn-group{
    gap: 8px 0;
}





@media screen and (max-width: 767px) {
    .result-group {
        width: 100%;
        gap: 20px 0;
    }

    .result-content{
        gap: 20px 0;
    }

    .group-title span{
        font-size: var(--fontSizeSm);
        line-height: var(--lineHeightSm);
    }
}