/* Блок «Благодарственное письмо» на детальной странице проекта */
.section--thanks-letter .inner {
    display: flex;
    flex-direction: column;
}

.thanks-letter {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px 30px;
    margin-top: 30px;
}

.thanks-letter__files {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    flex: 0 0 auto;
}

/* Когда письмо взято из отзыва — картинка слева, текст отзыва справа. */
.thanks-letter_with-review .thanks-letter__review {
    flex: 1 1 340px;
    min-width: 0;
    padding-top: 6px;
}

.thanks-letter__review-name {
    margin-bottom: 10px;
}

.thanks-letter__review-place {
    margin-bottom: 18px;
    color: #8a8a8a;
    font-size: 15px;
}

.thanks-letter__review-text {
    color: #161616;
    font-size: 17px;
    line-height: 1.55;
}

.thanks-letter__review-text p {
    margin: 0 0 10px;
}

.thanks-letter__review-text p:last-child {
    margin-bottom: 0;
}

.thanks-letter__item {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: #f4f4f4;
    text-decoration: none;
    transition: box-shadow .25s ease, transform .25s ease;
}

.thanks-letter__item:hover {
    box-shadow: 0 10px 30px rgba(22, 22, 22, .12);
    transform: translateY(-2px);
}

.thanks-letter__item_image {
    width: 320px;
    max-width: 100%;
}

.thanks-letter__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.thanks-letter__zoom {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #161616;
    background: #ffd83d;
    box-shadow: 0 4px 12px rgba(22, 22, 22, .18);
    opacity: 0;
    transition: opacity .25s ease;
}

.thanks-letter__item_image:hover .thanks-letter__zoom {
    opacity: 1;
}

.thanks-letter__item_file {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid #ececec;
}

.thanks-letter__file-badge {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 40px;
    padding: 0 12px;
    border-radius: 12px;
    background: #ffd83d;
    color: #161616;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
}

.thanks-letter__file-name {
    color: #161616;
    font-size: 16px;
    word-break: break-word;
}

@media (max-width: 768px) {
    /* На узких экранах заголовок переносится на 2 строки; из-за жёлтой
       подсветки с padding строки «слипаются» — увеличиваем межстрочный. */
    .section--thanks-letter .title--section {
        line-height: 1.45;
    }

    .thanks-letter {
        margin-top: 24px;
        gap: 18px;
    }

    .thanks-letter__files {
        flex-basis: 100%;
        justify-content: center;
    }

    .thanks-letter_with-review .thanks-letter__review {
        flex-basis: 100%;
        padding-top: 0;
    }

    .thanks-letter__review-text {
        font-size: 16px;
    }

    .thanks-letter__zoom {
        opacity: 1;
        width: 38px;
        height: 38px;
        right: 10px;
        bottom: 10px;
    }
}
