/**
 * Global Components CSS - Executive Professional Design
 * This file only contains ADDITIONAL styles not in style.css
 * File: assets/css/global-components.css
 */

/* ==========================================================================
   ADDITIONAL SKILL SPECIFIC STYLES - EXECUTIVE STYLE
   ========================================================================== */

.skill-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.skill-experience {
    color: var(--text-medium-gray);
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    background: rgba(44, 62, 80, 0.05);
    border-radius: 12px;
}

.skill-description {
    color: var(--text-medium-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 15px;
}

.skill-projects-count {
    font-size: 13px;
    color: var(--text-medium-gray);
    background: rgba(52, 73, 94, 0.1);
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 500;
}

/* ==========================================================================
   ADDITIONAL PORTFOLIO SPECIFIC STYLES - EXECUTIVE STYLE
   ========================================================================== */

.portfolio-client,
.portfolio-role {
    font-size: 14px;
    color: var(--text-medium-gray);
    margin-bottom: 8px;
    line-height: 1.4;
}

.portfolio-client strong,
.portfolio-role strong {
    color: var(--text-charcoal);
    font-weight: 600;
}

.portfolio-excerpt {
    color: var(--text-medium-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.portfolio-technologies {
    margin-bottom: 25px;
}

.portfolio-technologies strong {
    display: block;
    margin-bottom: 10px;
    color: var(--text-charcoal);
    font-size: 14px;
    font-weight: 600;
}

.portfolio-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
    margin-top: 20px;
}

/* ==========================================================================
   ADDITIONAL TIMELINE SPECIFIC STYLES - EXECUTIVE STYLE
   ========================================================================== */

.timeline-position,
.timeline-duration {
    font-size: 16px;
    color: var(--text-charcoal);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.timeline-position strong,
.timeline-duration strong {
    color: var(--secondary-steel);
    font-weight: 600;
    min-width: 60px;
}

.timeline-excerpt {
    color: var(--text-medium-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.timeline-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid var(--border-light);
    flex-wrap: wrap;
    gap: 20px;
}

.timeline-meta-info {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==========================================================================
   ADDITIONAL FORM SPECIFIC STYLES - EXECUTIVE STYLE
   ========================================================================== */

.meta-section {
    background: rgba(248, 250, 252, 0.9);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.meta-section h4 {
    margin-top: 0;
    color: var(--accent-navy);
    border-bottom: 2px solid var(--accent-navy);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.meta-field {
    margin-bottom: 15px;
}

.meta-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-charcoal);
    font-size: 14px;
}

.meta-field input,
.meta-field textarea,
.meta-field select {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.meta-field input:focus,
.meta-field textarea:focus,
.meta-field select:focus {
    outline: none;
    border-color: var(--accent-navy);
    box-shadow: 0 0 0 2px rgba(52, 73, 94, 0.1);
}

.meta-field textarea {
    min-height: 80px;
    resize: vertical;
}

.help-text {
    font-style: italic;
    color: var(--text-medium-gray);
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.4;
}

/* ==========================================================================
   ADDITIONAL GRID VARIATIONS - EXECUTIVE STYLE
   ========================================================================== */

.featured-projects {
    padding: 2rem 0;
}

.fp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.fp-filters {
    margin: 10px 0 18px;
}

.chip {
    display: inline-block;
    padding: 0.5rem 0.9rem;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    margin: 0.3rem 0.4rem;
    text-decoration: none;
    line-height: 1;
    font-size: 13px;
    color: var(--text-medium-gray);
    transition: all 0.3s ease;
}

.chip:hover,
.chip.is-active {
    background: var(--accent-navy);
    color: #fff;
    border-color: var(--accent-navy);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* ==========================================================================
   ADDITIONAL ADMIN STYLES - EXECUTIVE STYLE
   ========================================================================== */

.form-table th {
    width: 150px;
    padding: 10px 0;
    font-weight: 600;
    color: var(--text-charcoal);
}

.form-table td {
    padding: 10px 0;
}

.widefat {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

.regular-text {
    width: 300px;
}

.small-text {
    width: 80px;
}

.large-text {
    width: 500px;
}

/* ==========================================================================
   EXECUTIVE DARK MODE OVERRIDES FOR COMPONENTS
   ========================================================================== */

[data-theme="dark"] .skill-experience {
    background: rgba(224, 231, 238, 0.1);
}

[data-theme="dark"] .skill-projects-count {
    background: rgba(52, 73, 94, 0.2);
}

[data-theme="dark"] .meta-section {
    background: rgba(224, 231, 238, 0.03);
}

[data-theme="dark"] .chip {
    color: var(--text-light-gray);
    border-color: rgba(224, 231, 238, 0.2);
}

[data-theme="dark"] .chip:hover,
[data-theme="dark"] .chip.is-active {
    background: var(--accent-navy);
    color: white;
    border-color: var(--accent-navy);
}

/* ==========================================================================
   ADDITIONAL RESPONSIVE OVERRIDES - EXECUTIVE STYLE
   ========================================================================== */

@media (max-width: 768px) {
    .meta-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .timeline-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .timeline-meta-info {
        width: 100%;
        justify-content: center;
    }
    
    .portfolio-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .skill-meta {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .meta-section {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .meta-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .chip {
        padding: 0.4rem 0.7rem;
        margin: 0.2rem 0.3rem;
        font-size: 12px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}