/**
 * Custom Quote Block Styles
 */

.custom-quote-block {
    position: relative;
    padding: 25px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Аватар */
.quote-avatar {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.quote-avatar-left {
    float: left;
    margin-right: 20px;
}

.quote-avatar-right {
    float: right;
    margin-left: 20px;
}

.quote-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Контент */
.quote-content {
    overflow: hidden;
}

.quote-text {
    font-size: 1.1em;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 10px;
}

.quote-author {
    text-align: right;
    font-weight: bold;
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 10px;
}

/* Очистка float */
.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

/* Адаптивность */
@media (max-width: 480px) {
    .quote-avatar-left,
    .quote-avatar-right {
        float: none;
        margin: 0 auto 15px;
    }

    .custom-quote-block {
        text-align: center;
    }

    .quote-author {
        text-align: center;
    }
}
