/* ==================== SKILLS SECTION ==================== */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.skill-card {
    background: rgba(42, 42, 42, 0.8);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #525252;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.skill-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.2);
}

.skill-name {
    font-size: 16px;
    font-weight: 600;
    color: #e5e5e5;
    margin-bottom: 6px;
}

.skill-level {
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 6px;
    display: inline-block;
}

.skill-level.advanced {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.skill-level.intermediate {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.skill-level.beginner {
    background: linear-gradient(135deg, #64748b, #475569);
    color: white;
}

.skill-experience {
    font-size: 13px;
    color: #a3a3a3;
}

/* Tools Grid */
.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tool-tag {
    background: rgba(42, 42, 42, 0.8);
    border: 1px solid #525252;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.tool-name {
    font-weight: 600;
    color: #e5e5e5;
    font-size: 13px;
}

.tool-level {
    font-size: 11px;
    color: #a3a3a3;
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 15px;
}

.leadership-card {
    background: rgba(42, 42, 42, 0.8);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #525252;
}

.leadership-name {
    font-size: 15px;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 6px;
}

.leadership-level {
    font-size: 13px;
    color: #e5e5e5;
    margin-bottom: 6px;
}

.leadership-desc {
    font-size: 12px;
    color: #a3a3a3;
    line-height: 1.3;
}