:root {
    --drone-blue: #8bbcdc;
    --robot-gold: #ddb537;
    --dark-bg: #2c3e50;
    --light-bg: #f8f9fa;
    --border-color: #e1e5eb;
    --text-dark: #333;
    --text-light: #666;
    --error-red: #dc3545;
    --success-green: #44e96a;
    --success-green-dark: #094226;
}
/* Теги в статье */

/* Теги */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.tag {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85em;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag:hover {
    background: #3b82f6;
    color: white;
}

.tag i {
    font-size: 0.9em;
}

.tag-gcs { background: #e0f2fe; color: #0369a1; }
.tag-arduino { background: #dcfce7; color: #166534; }
.tag-chip { background: #fef9c3; color: #854d0e; }
.tag-drone { background: #fef9c3; color: #854d0e; }
.tag-robots { color: #4A3B16; background: linear-gradient(135deg, #F9E6B3 0%, #F1C40F 100%); border-color: #F7DC6F; box-shadow: 0 2px 10px rgba(241, 196, 15, 0.3); }
.tag-blue { background: #e0f2fe; color: #0369a1; }
.tag-work { background: #f1f5f9; color: #334155; }
.tag-grass { color: #065F46; background-color: #D1FAE5; border-color: #10B981; }
.tag-industrial { color: #1E293B; background-color: #F1F5F9; border-color: #64748B; }
.tag-photo { color: #9D174D; background-color: #FCE7F3; border-color: #EC4899; }
.tag-wind-sky { color: #1E3A8A; background-color: #E0F2FE; border-color: #38BDF8; }
.tag-wind-digital { color: #0C4A6E; background-color: #CFFAFE; border-color: #06B6D4; }
.tag-tag-wind-gold { color: #5B3E1D; background: linear-gradient(145deg, #FFF2D6 0%, #FFE4B5 100%); border-color: #D4AF37; box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15); }

