/* static/css/patents_summary.css */

/**
 * БЛОК СВОДКИ ПАТЕНТОВ
 * Максимум 200 строк, модульная архитектура
 */

/* Блок сводки */
.patents-summary {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 249, 250, 0.98) 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(40, 167, 69, 0.3);
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
}

.patents-summary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.15);
    border-color: rgba(40, 167, 69, 0.5);
}

.summary-title {
    color: #28a745;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.summary-text {
    color: #212529;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* Высокий контраст для accessibility */
@media (prefers-contrast: high) {
    .patents-summary {
        background: #ffffff;
        border: 3px solid #28a745;
    }
    
    .summary-title {
        color: #006600;
    }
    
    .summary-text {
        color: #000000;
    }
}
