/* ==========================================================================
   EU RECOMMENDATIONS SECTION
   Clean design matching the site's warm aesthetic
   ========================================================================== */

.eu-recommendations-section {
    margin-top: 4rem;
    padding: 3rem 0;
}

.eu-recommendations-header {
    text-align: center;
    margin-bottom: 3rem;
}

.eu-recommendations-header h3 {
    font-size: 2rem;
    color: var(--warmth-primary);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.eu-recommendations-header p {
    font-size: 1.1rem;
    color: rgba(44, 38, 37, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.eu-recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .eu-recommendations-grid {
        grid-template-columns: 1fr;
    }
}

.eu-recommendation-card {
    background: white;
    border-radius: 20px 16px 20px 16px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
    position: relative;
    transition: all 0.4s var(--ease-organic);
}

.eu-recommendation-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.eu-recommendation-card.recommended {
    border-color: var(--warmth-accent);
    background: linear-gradient(135deg, #f0fdf4 0%, white 100%);
}

.eu-recommendation-card.limited {
    border-color: #f97316;
    background: linear-gradient(135deg, #fff7ed 0%, white 100%);
}

.eu-recommendation-card.mixed {
    border-color: #f97316;
    background: linear-gradient(135deg, #fff7ed 0%, white 100%);
}

.eu-recommendation-card.dangerous {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, white 100%);
}

.eu-recommendation-card.partially-allowed {
    border-color: #f97316;
    background: linear-gradient(135deg, #fff7ed 0%, white 100%);
}

.eu-recommendation-card.under-investigation {
    border-color: #eab308;
    background: linear-gradient(135deg, #fefce8 0%, white 100%);
}

.eu-recommendation-card.high-risk {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, white 100%);
}

.eu-recommendation-card.forbidden {
    border-color: #991b1b;
    background: linear-gradient(135deg, #fef2f2 0%, white 100%);
    border-width: 3px;
}

.eu-recommendation-card.not-recommended {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, white 100%);
}

.recommendation-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 25px 20px 25px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.eu-recommendation-card.recommended .recommendation-badge {
    background: var(--warmth-accent);
    color: white;
}

.eu-recommendation-card.limited .recommendation-badge {
    background: #f97316;
    color: white;
}

.eu-recommendation-card.partially-allowed .recommendation-badge {
    background: #f97316;
    color: white;
}

.eu-recommendation-card.under-investigation .recommendation-badge {
    background: #eab308;
    color: white;
}

.eu-recommendation-card.high-risk .recommendation-badge {
    background: #dc2626;
    color: white;
}

.eu-recommendation-card.forbidden .recommendation-badge {
    background: #991b1b;
    color: white;
}

.eu-recommendation-card.not-recommended .recommendation-badge {
    background: #dc2626;
    color: white;
}

.recommendation-models {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.model-item {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px 10px 12px 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.model-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--warmth-charcoal);
    margin-bottom: 0.75rem;
}

.model-tier {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(44, 38, 37, 0.65);
    margin-bottom: 0.75rem;
    font-style: italic;
}

.model-score {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    position: relative;
    height: 28px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 14px;
    overflow: hidden;
}

.score-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--warmth-accent) 0%, var(--warmth-secondary) 100%);
    border-radius: 14px;
    transition: width 0.8s var(--ease-organic);
}

.eu-recommendation-card.limited .score-bar {
    background: linear-gradient(90deg, #f97316 0%, #fed7aa 100%);
}

.score-bar.danger {
    background: linear-gradient(90deg, #ef4444 0%, #fca5a5 100%);
}

.score-text {
    position: relative;
    margin-left: auto;
    margin-right: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--warmth-charcoal);
    z-index: 1;
}

.model-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.model-highlights li {
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: rgba(44, 38, 37, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.model-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--warmth-charcoal);
    font-weight: 700;
    font-size: 1.2em;
}

.eu-recommendation-card.recommended .model-highlights li::before {
    color: var(--warmth-accent);
}

.eu-recommendation-card.mixed .model-highlights li::before {
    color: #f97316;
}

.eu-recommendation-card.dangerous .model-highlights li::before {
    color: #dc2626;
}

.eu-recommendation-card.limited .model-highlights li::before {
    content: '•';
    color: #f97316;
}

.model-highlights.danger li {
    color: #991b1b;
}

.model-highlights.danger li::before {
    content: '•';
    color: #dc2626;
}

/* AI Act Notice */
.ai-act-notice {
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    border-radius: 16px 12px 16px 12px;
    border-left: 4px solid #3b82f6;
    font-size: 0.95rem;
    color: rgba(44, 38, 37, 0.85);
    line-height: 1.7;
}

.ai-act-notice strong {
    color: #1e40af;
    font-weight: 700;
}

/* Legal Notice */
.eu-legal-notice {
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: var(--warmth-cream);
    border-radius: 16px 12px 16px 12px;
    border-left: 4px solid var(--warmth-primary);
    font-size: 0.9rem;
    color: rgba(44, 38, 37, 0.8);
    line-height: 1.6;
}

.eu-legal-notice strong {
    color: var(--warmth-primary);
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .eu-recommendations-grid {
        grid-template-columns: 1fr;
    }

    .eu-recommendations-header h3 {
        font-size: 1.5rem;
    }

    .eu-recommendation-card {
        padding: 1.5rem;
    }

    .model-item {
        padding: 1rem;
    }

    .model-name {
        font-size: 1rem;
    }
}