/* Стили для шорткода цитат */

.custom-quote {
    padding: 25px;
    padding-left: 0;
    border-top: 3px solid #007cba;
    border-bottom: 3px solid #007cba;
    position: relative;
    font-style: italic;
}

/* Базовые стили для всех цитат */
.custom-quote .quote-content {
    font-size: 1.4em;
    line-height: 1.6;
    color: #333;
    position: relative;
}
.quote-icon{
    position: absolute;
    top: -15px;
    left: 0px;
    padding: 0 20px;
    padding-left: 0;
    background: #fff;
}
.quote-icon svg{
    width: 32px;
    height: 32px;
    fill: #007cba;

}
.custom-quote .quote-footer {
    padding: 0;
    background: transparent;
    text-align: right;
}

.custom-quote .quote-author {
    font-weight: 500;
    color: #555;
}

.custom-quote .quote-source {
    margin-left: 0.5em;
    color: #888;
}


/* Выравнивание */
.custom-quote.quote-full {
    text-align: left;
    margin: 20px 0;
}

.custom-quote.quote-right{
    float: right;
    width: 50%;
    margin: 20px 0;
    margin-left: 20px;
}
.custom-quote.quote-left{
    float: left;
    width: 50%;
    margin: 20px 0;
    margin-right: 20px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .custom-quote.quote-right,
    .custom-quote.quote-left,
    .custom-quote.quote-full{
        float: none;
        width: 100%;
        margin: 20px 0;
    }
    
    .custom-quote .quote-content {
        font-size: 1.1em;
    }
}