/* Container Layout & Colors */
.ztv-quote-container {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-right: 50px solid #ff0000;
    border-radius: 6px;
    padding: 25px 20px;
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.04);
    direction: rtl;
    margin-bottom: 20px;
    font-family: inherit;
}

/* Background Faded Quote Icon */
.ztv-quote-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 55px;
    color: rgba(204, 0, 0, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

/* Typography */
.ztv-quote-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333333;
    margin: 0 0 20px 0;
    position: relative;
    z-index: 2;
    font-weight: 500;
}

/* Flexbox Layout for the Speaker */
.ztv-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

/* Speaker Image */
.ztv-quote-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff0000;
}

/* Meta Data */
.ztv-quote-meta {
    display: flex;
    flex-direction: column;
}

.ztv-quote-name {
    font-family: 'Graphology-Arabic-Bold';
    font-weight: 700;
    color: #111111;
    font-size: 16px;
    margin: 0 0 2px 0;
}

.ztv-quote-role {
    font-size: 13px;
    color: #777777;
    margin: 0;
}

/* Specific Adjustments for the Gutenberg Editor UI */
.ztv-editor-block .ztv-media-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ztv-editor-block .ztv-change-img {
    font-size: 11px;
    padding: 0 6px;
    min-height: 24px;
    line-height: 22px;
}