#quote-block {
    display: flex;
    position: relative;
    flex-direction: column;
    padding: 30px 0;
    z-index: 1;
    gap: 20px;
}

#quote-block .quote__icon {
    width: 30px;
    height: 30px;
}

#quote-block .quote__author {
    text-align: right;
}

#quote-block::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 400px;
    background: var(--hover-main);
}

#quote-block::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    height: 1px;
    width: 400px;
    background: var(--hover-main);
}

@media screen and (max-width: 500px) {
    #quote-block::before {
        width: 100%;
    }

    #quote-block::after {
        width: 100%;
    }
}

/*# sourceMappingURL=block.css.map */