.section-feedback-list {
    padding: 60px 0;
    background: #f9f9f9;
}

.feedback-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #1d1d1d;
    font-weight: 600;
}

.feedback-entry {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    overflow: hidden;
}

.feedback-image img {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    display: block;
    background: #eef3f9;
    padding: 20px;
}

.feedback-text {
    padding: 30px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.feedback-text p {
    margin-bottom: 15px;
}

.feedback-signature {
    margin-top: 20px;
    font-weight: 600;
    color: #0077cc;
}

@media (min-width: 768px) {
    .feedback-entry {
        flex-direction: row;
        gap: 40px;
        align-items: flex-start;
        padding: 30px;
    }

    .feedback-image {
        flex: 0 0 40%;
    }

    .feedback-image img {
        height: auto;
        max-height: 100%;
    }

    .feedback-text {
        flex: 1;
        padding: 0;
    }
}
