/* ===== ДИЗАЙН ОТЗЫВОВ ===== */

.easy_frame {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 25px;
    transition: box-shadow 0.2s;
}

.easy_frame:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.easy_top {
    background: #f8fafc;
    height: auto;
    padding: 10px 0 6px 12px;
    border-bottom: 1px solid #f0f2f5;
    border-radius: 20px 20px 0 0;
}

.easy_top_left strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e466e;
    background: #e1edf9;
    padding: 6px 20px;
    border-radius: 30px;
    display: inline-block;
}

.easy_small {
    font-size: 1.1rem;
    color: #6c7a8e;
    background: #f5f7f9;
    padding: 6px 16px;
    border-radius: 30px;
    margin-left: 12px;
}

.easy_rating {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    margin-left: 12px;
    font-size: 1.1rem;
    vertical-align: middle;
}

.easy_rating img {
    margin: 0 2px;
    vertical-align: middle;
}

.easy_content {
    padding: 6px 16px 8px 18px;
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
}

.easy_admincomment {
    background: #f8fafc !important;
    height: auto;
    padding: 14px 28px 14px 28px !important;
    margin: 0 !important;
    border: 1px solid #f0f2f5;
    border-right: 0;
    border-left: 0;
    border-radius: 0 0 20px 20px;
}

.easy_admincomment strong:first-child {
    display: inline-block;
    color: #1e466e;
    background: #e1edf9;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 1.5rem;
}

.easy_admincomment strong {
    color: #1e466e;
    background: #e1edf9;
    font-weight: 700;
    font-size: 1.2rem;
}

.easy_admincomment p {
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 18px 0;
}

.sign {
    margin-top: 10px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .easy_top {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 16px !important;
    }

    .easy_top_left,
    .easy_top_right {
        width: 100%;
        text-align: center;
        margin: 0 !important;
        padding: 0 !important;
    }

    .easy_top_left {
        margin-bottom: 10px !important;
    }

    .easy_top_left strong {
        display: inline-block;
        margin: auto;
    }

    .easy_small {
        display: inline-block;
        margin: 4px 4px !important;  /* Уменьшено с 6px до 4px */
    }

    .easy_rating {
        display: inline-block;
        margin: 4px 4px !important;  /* Уменьшено с 6px до 4px */
        margin-left: 4px !important;
    }

    .easy_top_right img {
        display: inline-block;
        margin: 4px 2px !important;  /* Уменьшено */
    }

    .easy_content {
        padding: 16px 20px !important;
        text-align: left;
    }

    .easy_admincomment {
        margin: 12px 16px 20px 16px !important;
        padding: 14px 18px !important;
        text-align: left;
    }
}

/* Иконки */
.icon-user,
.icon-calendar,
.icon-location {
    display: inline-block;
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    margin-right: 6px;
    color: #1e466e;
}

.icon-user:before {
    content: "\f007";
}

.icon-calendar:before {
    content: "\f073";
}

.icon-location:before {
    content: "\f041";
}

.icon-comment:before {
    content: "\f0e5";
}