/* Role-Based Dashboards Section Styles */

.role-dashboards {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 50px 0;
}

.role-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.role-dashboards .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.role-dashboards .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 20px;
}

.role-dashboards .section-badge i {
    color: #8a2be2;
    font-size: 16px;
}

.role-dashboards .section-badge span {
    color: #8a2be2;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.role-dashboards .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1a2942;
    margin-bottom: 20px;
    line-height: 1.2;
}

.role-dashboards .section-subtitle {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Roles Grid */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Role Card */
.role-card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.role-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* Role Header */
.role-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.role-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #4a9eff, #00d9ff);
}

.role-info {
    flex: 1;
}

.role-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a2942;
    margin: 0 0 6px 0;
    line-height: 1.2;
}

.role-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

/* Role Features List */
.role-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.role-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #4a9eff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .roles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .role-dashboards .section-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .role-dashboards {
        padding: 70px 0;
    }
    
    .role-container {
        padding: 0 20px;
    }
    
    .roles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .role-dashboards .section-title {
        font-size: 36px;
    }
    
    .role-dashboards .section-subtitle {
        font-size: 16px;
    }
    
    .role-card {
        padding: 30px 25px;
    }
    
    .role-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .role-title {
        font-size: 18px;
    }
    
    .role-features li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .role-dashboards .section-title {
        font-size: 28px;
    }
    
    .role-dashboards .section-subtitle {
        font-size: 15px;
    }
    
    .role-card {
        max-width: 400px;
        margin: 0 auto;
    }
}