.feedback-block {
    display: grid;
    grid-auto-rows: 295px;
    grid-template-columns: repeat(2, 1fr);
    color: var(--gray4-text-color);
    gap: 20px;
}

.feedback-text.video {
    display: flex;
    padding: 0;
}

.feedback-text.video .feedback-preview {
    min-width: 166px;
    position: relative;
}

.feedback-text.video .feedback-preview img {
    width: 100%;
}

.feedback-text.video .feedback-text-block {
    padding: 40px 20px 20px 20px;
}

.gallery-play-button {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: 2;
    background-image: url("/local/templates/csio-dpo/svg/play-button.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.feedback-block > a {
    background-color: white;
    padding: 40px 20px 20px 20px;
    overflow: hidden;
    position: relative;
}

.feedback-block .title-block {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-block .title-block h2 {
    font-size: 22px;
}

.feedback-block .file-block {
    width: 208px;
    margin: 0;
    padding: 0;
    gap: 14px;
    border-bottom: none;
}

.feedback-block .file-img-pdf {
    height: 24px;
    width: 21px;
    min-width: 21px;
    margin-right: 0;
    background-color: white;
}

.feedback-block .file-open,
.feedback-block .file-download {
    height: 19px;
    width: 21px;
    min-width: 21px;
}

.feedback-block .file-button > div {
    gap: 1px;
}

.feedback-block .file-button {
    margin-top: 0;
    gap: 10px;
    font-size: 15px;
    font-weight: 300;
    text-decoration: underline;
}

.feedback-body {
    display: -webkit-box;
    line-clamp: 8;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--gray4-text-color);
}

.feedback-block .rating {
    justify-content: start;
    margin-top: 15px;
    cursor: unset;
}

.feedback-block .rating-stars {
    cursor: unset;
}

@media (max-width: 780px) {
    .feedback-block {
        grid-auto-rows: auto;
        grid-template-columns: repeat(1, 1fr);
    }

    .feedback-body {
        font-size: 14px;
        line-height: 16px;
    }

    .feedback-block a {
        padding: 10px;
    }

    .feedback-block .title-block {
        gap: 10px;
        flex-direction: column;
        align-items: start;
    }

    .feedback-block .file-button {
        flex-direction: row;
    }

    .feedback-block .rating {
        margin-bottom: 15px;
    }
}
