

/* Start:/local/components/custom/quotes.list/templates/.default/style.css?17782453555867*/
/* ================================================
   Общий макет: 2 колонки (контент + сайдбар)
   ================================================ */
.quotes-page {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    align-items: start;
}

@media (max-width: 768px) {
    .quotes-page {
        grid-template-columns: 1fr;
    }
    /*.quotes-sidebar {
        order: -1;
    }*/
}

/* ================================================
   H1
   ================================================ */
.quotes-h1 {
    margin: 0 0 20px;
    font-size: 28px;
    color: #1a1a2e;
    line-height: 1.3;
}

/* ================================================
   Активные фильтры (теги)
   ================================================ */
.quotes-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.quotes-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #eef3fb;
    border: 1px solid #b0c9ef;
    border-radius: 4px;
    padding: 4px 10px;
    font-size: 13px;
    color: #2c5f9e;
}

.quotes-tag--taxonomy {
    background: #fff3e0;
    border-color: #ffcc80;
    color: #e65100;
}

.quotes-tag__label {
    font-weight: 600;
}

.quotes-tag__remove {
    margin-left: 4px;
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
    line-height: 1;
}

.quotes-tag__remove:hover {
    color: #c0392b;
}

/* ================================================
   Пустой список
   ================================================ */
.quotes-empty {
    text-align: center;
    color: #999;
    padding: 60px 0;
    font-size: 18px;
}

/* ================================================
   Карточки цитат
   ================================================ */
.quotes-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.quote-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #4a90e2;
    border-radius: 6px;
    padding: 20px 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .07);
}

.quote-card__title {
    margin: 0 0 10px;
    font-size: 18px;
    color: #222;
}

.quote-card__text {
    margin: 0 0 16px;
    font-size: 16px;
    color: #444;
    line-height: 1.65;
    font-style: italic;
    border: none;
    padding: 0;
}

.quote-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.quote-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* Бейджи */
.quote-card__badge {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: opacity .2s;
}

.quote-card__badge:hover {
    opacity: .75;
}

.quote-card__badge--category {
    background: #e8f4e8;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.quote-card__badge--taxonomy {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #ffcc80;
}

.quote-card__date {
    margin-left: auto;
    color: #aaa;
    white-space: nowrap;
}

/* ================================================
   Пагинация
   ================================================ */
.quotes-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin: 28px 0 16px;
    flex-wrap: wrap;
}

.quotes-pagination__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background .2s, border-color .2s, color .2s;
    background: #fff;
}

.quotes-pagination__btn:hover {
    background: #eef3fb;
    border-color: #4a90e2;
    color: #4a90e2;
}

.quotes-pagination__btn--active {
    background: #4a90e2;
    border-color: #4a90e2;
    color: #fff;
    cursor: default;
    pointer-events: none;
}

.quotes-pagination__btn--arrow {
    font-size: 16px;
    color: #4a90e2;
}

.quotes-pagination__dots {
    display: inline-flex;
    align-items: center;
    padding: 0 6px;
    color: #999;
    font-size: 16px;
    letter-spacing: 1px;
    user-select: none;
}

/* ================================================
   Итого
   ================================================ */
.quotes-total {
    text-align: right;
    color: #aaa;
    font-size: 13px;
    margin-top: 8px;
}

/* ================================================
   Сайдбар
   ================================================ */
.quotes-sidebar {
    position: sticky;
    top: 20px;
}

.quotes-sidebar__block {
    background: #f9f9f9;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    padding: 16px 18px;
    margin-bottom: 20px;
}

.quotes-sidebar__title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: .5px;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 6px;
}

.quotes-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.quotes-sidebar__item {
    border-radius: 4px;
    overflow: hidden;
}

.quotes-sidebar__link {
    display: block;
    padding: 6px 8px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    border-radius: 4px;
    transition: background .15s, color .15s;
}

.quotes-sidebar__link:hover {
    background: #eef3fb;
    color: #4a90e2;
}

.quotes-sidebar__item--active .quotes-sidebar__link {
    background: #4a90e2;
    color: #fff;
    font-weight: 600;
    pointer-events: none;
}

/* End */
/* /local/components/custom/quotes.list/templates/.default/style.css?17782453555867 */
