.questions .question_item {
    border: #000 solid 1px;
    border-radius: 15px;
}

.question_item {
    padding: 15px;
    height: auto;
    margin-bottom: 15px;
}

.question_item .wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    text-align: left;
}

.question_item .wrapper img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.answer_item {
    padding: 15px;
    height: auto;
    margin-bottom: 15px;
    border: #000 solid 1px;
    border-radius: 15px;
}

.answer_item .wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}

.answer_item .wrapper img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.rating {
    display: flex;
    justify-content: center;
    width: 100%;
}

.like {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    height: 26px;
    padding: 0 3px;
    box-sizing: border-box;
    white-space: nowrap;
}

.like .like-icon {
    width: 24px;
    height: 24px;
    background: no-repeat 50% / contain;
    opacity: 0.7;
    transition: opacity 100ms ease-in-out;
    flex: 0 0 auto;
    background: url("/static/img/like.svg");
}

.like.active .like-icon {
    background: url("/static/img/active-like.svg");
}

.like .like-count {
    font-size: 14px;
    line-height: 16px;
    height: 16px;
    overflow: hidden;
    margin-left: 6px;
    color: #67707a;
}

@media (max-width: 768px) {
    .questions-header {
        flex-wrap: nowrap;
        justify-content: space-around;
        text-align: center;
    }

    .questions-header h3 {
        font-size: 1.5em;
    }

    .question_item {
        text-align: center;
    }
}