/* Careerscape EEO Widgets Styles */

/* =================================================================
   EEO STATEMENT WIDGET
   ================================================================= */

.cs-eeo-wrapper {
    width: 100%;
}

.cs-eeo-box {
    width: 100%;
    background: linear-gradient(to right, #f0f7ff, #ffffff);
    border-left: 4px solid #1a365d;
    padding: 32px;
    border-radius: 0 16px 16px 0;
    margin-bottom: 48px;
}

.cs-eeo-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a365d;
    margin: 0 0 16px 0;
}

.cs-eeo-main-statement {
    font-size: 18px;
    line-height: 1.75;
    color: #374151;
    margin: 0;
}

.cs-eeo-secondary-text {
    line-height: 1.75;
    color: #6b7280;
    margin-bottom: 24px;
}

.cs-eeo-secondary-text.cs-eeo-last,
.cs-eeo-secondary-text:last-child {
    margin-bottom: 0;
}


/* =================================================================
   PROTECTED CLASSIFICATIONS WIDGET
   ================================================================= */

.cs-pc-wrapper {
    width: 100%;
}

.cs-pc-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 8px;
    row-gap: 8px;
}

.cs-pc-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 9999px;
    font-weight: 500;
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
    cursor: default;
    transition: all 0.3s ease;
}

.cs-pc-badge:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cs-pc-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #1a365d;
}

.cs-pc-badge span {
    font-weight: 500;
    color: #475569;
}

/* Mobile: Three Column Icons Grid */
@media (max-width: 767px) {
    .cs-pc-badges {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .cs-pc-badge {
        flex-direction: column;
        padding: 12px 8px;
        text-align: center;
        font-size: 11px;
        gap: 4px;
        justify-content: center;
    }
    
    .cs-pc-badge svg {
        width: 16px;
        height: 16px;
    }
}


/* =================================================================
   ACCOMMODATIONS & REPORTING WIDGET
   ================================================================= */

.cs-ar-wrapper {
    width: 100%;
}

.cs-ar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    width: 100%;
}

@media (max-width: 768px) {
    .cs-ar-grid {
        grid-template-columns: 1fr;
    }
}

.cs-ar-card {
    background-color: #243b5e;
    border-radius: 24px;
    padding: 32px 40px;
}

.cs-ar-card.cs-backdrop-blur {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cs-ar-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 24px 0;
}

.cs-ar-card-text {
    line-height: 1.75;
    color: #bfdbfe;
    margin: 0 0 24px 0;
}

.cs-ar-card-text.cs-ar-last,
.cs-ar-card-text:last-child {
    margin-bottom: 0;
}


/* =================================================================
   RESPONSIVE STYLES
   ================================================================= */

@media (max-width: 768px) {
    .cs-eeo-box {
        padding: 24px;
    }
    
    .cs-eeo-title {
        font-size: 24px;
    }
    
    .cs-eeo-main-statement {
        font-size: 16px;
    }
    
    .cs-pc-badge {
        padding: 8px 14px;
    }
    
    .cs-ar-card {
        padding: 24px;
    }
    
    .cs-ar-card-title {
        font-size: 20px;
    }
}
