.quotes-wrap { max-width: 900px; margin: 0 auto; }
.quotes-wrap h1 { text-align: center; margin: 4px 0 18px; color: var(--accent); }

.quote-tab {
    background-color: var(--card);
    border: 1px solid var(--card);
    border-radius: 30px;
    display: flex;
    align-items: center;
    padding: 10px 18px;
    margin-top: 2px;
    transition: .25s;
    gap: 10px;
}
.quote-tab:hover {
    border: 1px solid var(--accent);
    border-radius: 6px;
    margin-left: 10px;
}
.quote-id     { flex: 0 0 60px; font-weight: bold; color: var(--accent); }
.quote-text   { flex: 1; line-height: 1.4; word-break: break-word; overflow-wrap: anywhere; }
.quote-author { flex: 0 0 180px; color: #9b72cf; font-style: italic; text-align: right; }

@media (max-width: 600px) {
    .quote-tab { flex-wrap: wrap; }
    .quote-author { flex: 1 0 100%; text-align: left; margin-top: 4px; }
}
