.faq-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-list .item {
    border: 1px solid #ededed;
    border-radius: 8px;
    transition: all ease .3s;
    position: relative;
    overflow: hidden;
}
.faq-list .item:hover {
    border-color: #fff;
    box-shadow: 0 5px 30px rgba(34, 34, 34, .1);
    z-index: 1;
}
.faq-list .item-comment {
    display: flex;
    flex-direction: column;
    padding: 30px 22px;
}
.faq-list .item-comment__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}
.faq-list .author__avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
.faq-list .author__date {
    color: #999;
    font-size: 12px;
}
.faq-list .author__name {
    font-size: 16px;
    line-height: calc(1em + 7px);
    color: #333;
    font-weight: 700;
    margin-bottom: 4px;
}
.faq-list .item-comment__text {
    color: #555;
    font-size: 14px;
}
.faq-list .item-answer {
    padding: 30px 22px;
    border-top: 1px solid #e5e5e5;
    background: #fafafa;
}
.faq-list .item-answer__title {
    color: #999;
    font-size: 13px;
    margin-bottom: 7px;
}
.faq-list .item-answer__text {
    color: #555;
    font-size: 15px;
}


@media screen and (max-width: 991px){
    .faq-list .author__avatar img {
        width: 34px !important;
        height: 34px !important;
        max-width: none;
    }
}