/* Quotes Section CSS Styles - Minimal Version */
/* Updated to work with FAQ-style minimal design */

/* Only keeping essential styles that may still be used */

/* =========================
   ESSENTIAL QUOTES STYLES
   ========================= */

/* Quotes Grid - Used in template.html */
.quotes-grid {
    display: grid;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    grid-template-columns: 1fr;
}

.quote-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(29, 170, 154, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.2s ease;
    min-height: 80px;
}

.quote-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #1DAA9A;
}

.quote-number {
    color: #1DAA9A;
    font-weight: 600;
    font-size: 1rem;
    min-width: 30px;
    flex-shrink: 0;
}

.quote-text {
    color: var(--color-text-primary);
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
    word-wrap: break-word;
}

.quote-copy-btn {
    background: #1DAA9A;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    align-self: flex-start;
    flex-shrink: 0;
}

.quote-copy-btn:hover {
    background: rgba(29, 170, 154, 0.8);
    transform: translateY(-1px);
}

/* FAQ Mini Component Active States */
.faq-mini-toggle.active .faq-mini-icon {
    transform: rotate(45deg) !important;
}

.faq-mini-answer.active {
    max-height: 200px !important;
    padding-top: 1rem !important;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */

/* Mobile: Adjust layout for smaller screens */
@media (max-width: 639px) {
    .quote-item {
        flex-direction: column;
        align-items: stretch;
    }
    
    .quote-copy-btn {
        align-self: flex-end;
        margin-top: 8px;
    }
}

/* =========================
   UTILITY CLASSES
   ========================= */

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

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* NOTE: Most complex styling removed as pages now use FAQ-style minimal design with inline styles */